/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Genel Gövde */
body {
    font-halafamily: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    background-color: #f4f4f4;
    overflow-x: hidden;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Linkler */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #D72638;
}

/* Başlıklar */
h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #000;
}

/* ÜST BİLGİ ÇUBUĞU */
.top-bar-info {
    display: none !important;
}

/* Dil Seçici */
.language-selector {
    position: relative;
    margin: 0;
    order: 3;
}

.language-selector button {
    width: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
    font-size: 0.95rem !important;
    padding: 7px 0 !important;
    margin: 0 !important;
    border: 2px solid #0047ab !important;
    border-radius: 10px !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10) !important;
    transition: background 0.2s, color 0.2s, border 0.2s;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    background: #fff !important;
    color: #0047ab !important;
    position: relative;
    z-index: 1;
    display: block;
}

.language-selector button.active {
    background: linear-gradient(135deg, #d72638 0%, #0047ab 100%) !important;
    color: #fff !important;
}

.language-selector button:not(.active) {
}

.language-selector.active button {
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    flex: 0 0 auto;
    width: 36px !important;
    height: 36px !important;
}

.mobile-menu-btn span {
    display: block;
    width: 26px !important;
    height: 3px !important;
    background: #000;
    margin: 5px 0 !important;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* HEADER */
header {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: min-height 0.7s cubic-bezier(0.4, 0, 0.2, 1), padding 0.7s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 16px 0;
}

header.scrolled {
    min-height: 68px;
    padding: 10px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

header.sticky-header {
    display: flex;
    align-items: center;
}

/* Menü Düzeni */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    width: 100%;
    height: 80px;
    transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1), padding 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .top-bar {
    height: 68px;
    padding: 0 10px;
}

.main-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 1.5em;
    align-items: center;
}

.main-menu ul li a {
    color: #222;
    font-size: 22px;
    padding: 0.5em 0.75em;
    transition: padding 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    position: relative;
}

header.scrolled .main-menu ul li a {
    padding: 0.4em 0.65em;
    transform: scale(0.97);
}

/* Logo */
.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo img {
    height: 72px;
    max-width: 150px;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .logo img {
    height: 56px;
    max-width: 120px;
}

/* Masaüstü görünümünde mobil menü butonunu gizle */
@media (min-width: 901px) {
    .mobile-menu-btn {
        display: none !important;
    }
    .top-bar .logo, .top-bar .language-selector {
        flex: 0 0 auto;
    }
    .top-bar .main-menu {
        flex: 1;
    }
}

/* HERO BANNER */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px !important;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #d72638 0%, #b31f2e 100%);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.35s cubic-bezier(0.4,0,0.2,1), color 0.25s, box-shadow 0.3s, transform 0.3s, letter-spacing 0.3s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #ff7675 100%);
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.12);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 18px rgba(231,76,60,0.18);
    letter-spacing: 1.5px;
}

/* Slider */
.slider {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 2;
}

.slider img.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider img.slide.active {
    opacity: 1;
}

/* Slider Okları */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 30;
    padding: 10px;
    transition: all 0.3s ease;
    pointer-events: auto;
    touch-action: manipulation;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover, .slider-next:hover {
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Noktalı Slider Göstergesi */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* BİZ KİMİZ */
.about-home {
    text-align: center;
    background-color: white;
    padding: 60px 20px;
}

.cine-suntem {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    line-height: 1.8;
}

/* GEÇİŞ ARKA PLANI */
.transition-bg {
    height: 80px;
    background: linear-gradient(90deg, #d72638 0%, #0047ab 100%);
    margin: 0;
    box-shadow: 0 18px 40px 0 rgba(0,0,0,0.25), 0 2px 8px 0 rgba(0,0,0,0.10);
    opacity: 1;
    transition: opacity 0.5s;
}

.transition-bg img {
    display: none;
}

/* SERVICIILE NOASTRE */
.services-home {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.services-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215,38,56,0.1) 0%, rgba(0,71,171,0.1) 100%);
    z-index: 0;
}

.services-home .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
    position: relative;
    overflow: visible !important;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 240px;
    min-height: 240px;
    max-height: 240px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}

.service-card h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-card .btn {
    display: inline-block;
    margin: 0 1rem 1rem;
    padding: 0.5rem 1rem;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.service-card .btn:hover {
    background: #0056b3;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    font-size: 0.95em;
    margin-bottom: 0.5em;
    color: #555;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #d72638;
    margin-right: 0.5em;
    font-size: 0.9em;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.service-cta {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #d72638 0%, #0047ab 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    margin-top: auto;
    margin-bottom: 0;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #0047ab 0%, #d72638 100%);
}

.service-card .service-content {
    padding: 1.5em;
    padding-bottom: 2.5em;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    position: relative;
}

/* FOOTER */
footer {
    background: linear-gradient(90deg, #d72638 0%, #0047ab 100%);
    color: #222;
    padding: 60px 0 40px 0;
    margin-top: 0;
    box-shadow: none;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-info, .footer-links, .footer-map {
    background: linear-gradient(120deg, rgba(215,38,56,0.65) 0%, rgba(0,71,171,0.65) 100%) !important;
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.45), 0 2px 16px 0 rgba(0,0,0,0.20);
    padding: 15px;
    min-width: 350px;
    max-width: 100%;
    flex: 1 1 350px;
}

.footer-info h4, .footer-links h4 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
    text-align: left;
}

.footer-info h4::after, .footer-links h4::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #D72638;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.footer-info p, .footer-links ul li a {
    color: #fff;
    margin: 10px 0;
}

.footer-map {
    background: transparent !important;
    box-shadow: none;
    border-radius: 16px;
    padding: 0;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-links {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.footer-links ul {
    list-style: none;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin: 10px 0;
}

.footer-links ul li a {
    color: #eee;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #D72638;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: all 0.3s;
    border: 1px solid #fff;
}

.social-icon i {
    font-size: 22px;
    color: #fff;
}

.social-icon:hover {
    background: #D72638;
    color: #fff;
    border-color: #D72638;
}

/* Copyright barı siyah */
.bottom-bar {
    background: transparent;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none;
    text-align: center;
    width: 100%;
}

.bottom-bar p {
    margin: 0;
    padding: 32px 0 0 0;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        order: 1;
        width: 40px !important;
        height: 40px !important;
        margin-top: -5px;
    }

    .main-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background: white;
        transition: all 0.3s ease;
        overflow-y: auto;
        padding: 0;
        z-index: 998;
        margin-top: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
    }

    .main-menu.active {
        height: calc(100vh - 80px);
        padding: 0;
        opacity: 1;
        visibility: visible;
    }

    header.scrolled .main-menu {
        top: 64px;
        height: 0;
    }

    header.scrolled .main-menu.active {
        height: calc(100vh - 64px);
        padding: 0;
    }

    .language-selector {
        position: relative;
        margin: 0;
        order: 3;
    }

    .language-selector button {
        display: block;
        padding: 8px 12px;
        font-size: 14px;
        width: 100%;
        text-align: left;
        background: white;
        border: 1px solid #ddd;
        margin: 0;
    }

    .language-selector button.active {
        position: relative;
        padding-right: 0;
        background: linear-gradient(135deg, #d72638 0%, #0047ab 100%);
        color: white;
        border: none;
        text-align: center;
    }

    .language-selector button.active::after {
        content: none !important;
        display: none !important;
    }

    .language-selector.active {
        position: relative;
        right: auto;
        top: auto;
        width: auto;
        background: none;
        border-radius: 0;
        box-shadow: none;
        z-index: auto;
    }

    .language-selector.active button {
        margin: 0;
        border-radius: 0;
    }
    
    .language-selector button:not(.active) {
    }

    .language-selector.active button:first-child {
        border-radius: 0;
    }

    .language-selector.active button:last-child {
        border-radius: 0;
    }

    .language-selector.active button.active {
        border-radius: 0;
    }

    .logo {
        flex-shrink: 0;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 70px;
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    header.scrolled .logo img {
        height: 50px;
    }

    .main-menu ul {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 40vh;
        padding-top: 32px;
    }

    .main-menu ul li {
        margin: 0.5em 0;
        width: 100%;
        text-align: center;
    }

    .main-menu ul li a {
        font-size: 1.7rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        padding: 1.1em 1em;
    }

    .hero-banner {
        margin-top: 80px;
    }

    header.scrolled + .hero-banner {
        margin-top: 64px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-info, .footer-links, .footer-map {
        padding: 15px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-float img {
        width: 36px;
        height: 36px;
    }

    /* Despre Noi sayfasına özel mobil hero stilleri */
    .despre-noi-hero {
        margin-top: 64px;
        padding: 60px 0 40px 0;
    }

    .despre-noi-hero .logo-img {
        width: 50px;
        margin-bottom: 8px;
    }
    
    .despre-noi-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        box-sizing: border-box;
        padding: 20px;
        z-index: 20;
    }
    .slider-prev, .slider-next {
        z-index: 10;
    }
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-info, .footer-links {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 500px;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

@media (max-width: 600px) {
    .footer-info, .footer-links {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100%;
        margin: 0 auto 16px auto;
    }
}

/* Animasyonlar */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-in"] {
    transform: none;
}

/* Loading Animasyonu */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #D72638;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-info {
    background: linear-gradient(120deg, rgba(215,38,56,0.65) 0%, rgba(0,71,171,0.65) 100%) !important;
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.45), 0 2px 16px 0 rgba(0,0,0,0.20);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 2rem;
    color: #D72638;
    margin-bottom: 15px;
}

.info-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #D72638;
    outline: none;
}

.submit-btn {
    background: linear-gradient(135deg, #D72638 0%, #0047ab 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-section {
    padding: 40px 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Product Page Styles */
.product-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.product-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-info {
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-info h2 {
    margin-bottom: 20px;
    color: #333;
}

.product-info ul {
    list-style: none;
    margin-top: 20px;
}

.product-info ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.product-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-gallery img:hover {
    transform: scale(1.03);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-hero h1 {
        font-size: 2.5rem;
    }
}

.about-hero .logo-img {
    width: 80px;
    margin-bottom: 10px;
}

/* About Contact */
.about-contact {
    margin: 50px auto 80px auto;
    max-width: 1000px;
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    padding: 35px 35px 25px 35px;
    text-align: center;
}

.about-contact h4 {
    color: #d72638;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.about-contact p {
    margin: 10px 0;
    color: #333;
    font-size: 1.15rem;
    line-height: 1.5;
}

.about-contact i {
    margin-right: 10px;
    color: #0047ab;
    font-size: 1.2rem;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Contact Hero Background */
.contact-section .product-hero {
    margin-top: 0;
}

.product-hero h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.product-info ul li i {
    color: #d72638; /* Tik işareti rengi */
    margin-right: 10px;
}

/* Despre Noi sayfasına özel hero stilleri */
.despre-noi-hero {
    background: linear-gradient(120deg, #f4f4f4 60%, #e3eafc 100%);
    padding: 100px 0 80px 0;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.despre-noi-hero .logo-img {
    width: 90px;
    height: auto;
    margin-bottom: 20px;
}

.despre-noi-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #222;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(120deg, #f4f4f4 60%, #e3eafc 100%);
    padding: 60px 0 40px 0;
    text-align: center;
    position: relative;
}
.about-hero .logo-img {
    width: 80px; /* Bu kuralı sadece .about-hero için tutuyoruz */
    margin-bottom: 10px;
}
.about-hero .flags {
    display: none;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }

    /* Despre Noi sayfasına özel mobil hero stilleri */
    .despre-noi-hero {
        margin-top: 64px; /* Kaydırılınca header yüksekliği kadar boşluk */
        padding: 80px 0 60px 0; /* Mobil paddingi */
    }

    .despre-noi-hero .logo-img {
        width: 70px; /* Mobil boyutu artırdık */
        margin-bottom: 15px;
    }
    
    .despre-noi-hero h1 {
        font-size: 1.8rem; /* Mobil boyutu artırdık */
        margin-bottom: 20px;
    }
}

/* About Contact */
.about-contact {
    margin: 50px auto 80px auto;
    max-width: 1000px;
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    padding: 35px 35px 25px 35px;
    text-align: center;
}

.about-contact h4 {
    color: #d72638;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.about-contact p {
    margin: 10px 0;
    color: #333;
    font-size: 1.15rem;
    line-height: 1.5;
}

.about-contact i {
    margin-right: 10px;
    color: #0047ab;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-contact {
        margin: 35px auto 60px auto;
        padding: 25px 25px 20px 25px;
    }

    .about-contact h4 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .about-contact p {
        font-size: 1rem;
        margin: 8px 0;
    }

    .about-contact i {
        font-size: 1.1rem;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .about-contact {
        margin: 25px auto 40px auto;
        padding: 20px 15px 15px 15px;
    }

    .about-contact h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .about-contact p {
        font-size: 0.95rem;
        margin: 6px 0;
    }

    .about-contact i {
        font-size: 1rem;
        margin-right: 6px;
    }
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content h2 {
    color: #0047ab;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.about-panel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px;
    margin-bottom: 40px;
}

.about-panel p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-panel p:last-child {
    margin-bottom: 0;
}

/* Despre Noi Hero */
.despre-noi-hero {
    background: linear-gradient(120deg, #f4f4f4 60%, #e3eafc 100%);
    padding: 100px 0 80px 0;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.despre-noi-hero .logo-img {
    width: 90px;
    height: auto;
    margin-bottom: 20px;
}

.despre-noi-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #222;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .despre-noi-hero {
        margin-top: 64px;
        padding: 80px 0 60px 0;
    }

    .despre-noi-hero .logo-img {
        width: 70px;
        margin-bottom: 15px;
    }
    
    .despre-noi-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-panel {
        padding: 30px 20px;
    }

    .about-panel p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .despre-noi-hero {
        padding: 60px 0 40px 0;
    }

    .despre-noi-hero .logo-img {
        width: 60px;
        margin-bottom: 12px;
    }
    
    .despre-noi-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-panel {
        padding: 25px 15px;
    }
}

/* Form Alert Styles */
.form-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
}

.form-alert:contains("succes") {
    background: #28a745;
}

.form-alert:contains("eroare") {
    background: #dc3545;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ÇEREZ BANNER */
.cookie-banner, #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    color: #222;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-banner.show, #cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn.accept {
    background: #0047ab;
    color: #fff;
    border: none;
}

.cookie-btn.accept:hover {
    background: #003366;
}

.cookie-btn.reject {
    background: #fff;
    color: #0047ab;
    border: 2px solid #0047ab;
}

.cookie-btn.reject:hover {
    background: #e6eaf3;
}

.cookie-privacy-link {
    color: #0047ab;
    text-decoration: underline;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* Privacy Policy Main Content */
main.privacy-main {
    max-width: 900px;
    margin: 56px auto 32px auto;
    padding: 40px 28px 32px 28px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.08);
    position: relative;
    min-height: 70vh;
}
main.privacy-main h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a2340;
    letter-spacing: -1px;
}
main.privacy-main h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 10px;
    color: #2a3a5a;
}
main.privacy-main p, main.privacy-main ul {
    font-size: 1.08rem;
    color: #222;
    line-height: 1.7;
}
main.privacy-main ul { margin-left: 18px; }
main.privacy-main li { margin-bottom: 6px; }
@media (max-width: 700px) {
    main.privacy-main {
        padding: 18px 4vw 18px 4vw;
        border-radius: 10px;
    }
    main.privacy-main h1 { font-size: 1.5rem; }
    main.privacy-main h2 { font-size: 1.08rem; }
}

@media (max-width: 600px) {
    #cookie-banner, .cookie-banner {
        min-width: unset;
        max-width: 100vw;
        width: 100vw;
        left: 0;
        right: 0;
        margin: 0;
        padding: 8px 2vw 8px 2vw;
        font-size: 0.92rem;
        border-radius: 12px 12px 0 0;
        box-sizing: border-box;
    }
    .cookie-btn {
        width: 100%;
        min-width: 0;
        font-size: 0.98rem;
        padding: 8px 0;
    }
}