/* ========================================= */
/* --- 1. TEMEL AYARLAR & RESET --- */
/* ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Html ve Body için yatay taşmayı (scroll) kesin olarak kapatıyoruz */
html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    width: 100%; 
}

body { 
    font-family: 'Montserrat', sans-serif; 
    background: #f4f6f7; 
    color: #333; 
    overflow-x: hidden; /* Yatay scroll engelleme */
    width: 100%; 
    position: relative;
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
}

a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }
section { scroll-margin-top: 120px; }

/* ========================================= */
/* --- 2. NAVBAR (MENÜ) --- */
/* ========================================= */
.navbar-home { background: transparent; border: none; padding: 5px 0; position: fixed; width: 100%; top: 0; z-index: 1000; transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease; }
.navbar-home.scrolled { background: #ffffff; padding: 0; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }

/* Logo her zaman container içinde ve sabit */
.navbar-home .container { 
    max-width: 100%; 
    padding: 0 80px; 
    display: flex; 
    justify-content: space-between; /* Logo sola, menü sağa yaslansın */
    align-items: center; 
    height: 105px; 
    position: relative; 
}
.brand-text { display: none !important; }

/* Sabit Logo Ayarları */
.static-logo { display: block; width: 200px; margin-right: auto; }
.static-logo img { width: 100%; height: auto; display: block; }

/* Hamburger Menü (Gizli, Mobilde Çıkacak) */
.hamburger-menu { display: none; cursor: pointer; z-index: 1200; }
.hamburger-line { width: 30px; height: 3px; background: #fff; margin: 5px; transition: 0.4s; border-radius: 2px; }

/* Scrolled olunca menü çizgileri siyah olsun */
.navbar-home.scrolled .hamburger-line { background: #333; }
.navbar-home.sub-page-mode.scrolled .hamburger-line { background: #333; }

.hamburger-menu.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); background: #ce0000 !important; }
.hamburger-menu.toggle .line2 { opacity: 0; }
.hamburger-menu.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); background: #ce0000 !important; }

/* Menü Linkleri */
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links > li { position: relative; padding: 10px 0; }
.nav-links > li > a { color: #fff; font-weight: bold; font-size: 13px; transition: 0.3s; text-transform: uppercase; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); display: inline-block; position: relative; padding-bottom: 5px; }
.nav-links > li > a::after { content: ''; position: absolute; width: 0; height: 3px; bottom: 0; left: 0; background-color: #ce0000; transition: width 0.3s ease-in-out; }
.nav-links > li > a:hover::after { width: 100%; }
.nav-links > li > a:hover { color: #fff !important; transform: translateY(-2px); }

/* MOBİL ÖZEL ÖĞELERİ MASAÜSTÜNDE GİZLE */
.mobile-menu-header { display: none; }
.nav-right-mobile { display: none; }

/* Scrolled Modu */
.navbar-home.scrolled .nav-links > li > a { color: #333; text-shadow: none; }
.navbar-home.scrolled .nav-links > li > a:hover { color: #ce0000 !important; }

/* Dropdown Menü */
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: #fff; min-width: 220px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); border-radius: 8px; padding: 15px 0; opacity: 0; visibility: hidden; transition: all 0.3s ease; list-style: none; z-index: 1200; border-top: 4px solid #ce0000; }
.nav-links > li.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; color: #333 !important; font-size: 13px; text-shadow: none !important; font-weight: 600; transition: 0.2s; white-space: nowrap; }
.dropdown-menu li a:hover { background: #f4f6f7; color: #ce0000 !important; transform: translateX(5px); }

/* Alt Sayfa Modu */
.navbar-home.sub-page-mode .container { justify-content: space-between; }
.navbar-home.sub-page-mode .nav-links > li > a { color: #fff; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }
.navbar-home.sub-page-mode.scrolled .nav-links > li > a { color: #333; text-shadow: none; }

/* REFERANSLAR - MASAÜSTÜ & MOBİL AYARLARI */
.mobile-references-wrapper { display: none; } /* Masaüstünde gizle */
.desktop-only-grid { display: grid; } /* Masaüstünde göster */

/* ========================================= */
/* --- 3. RESPONSIVE / MOBİL UYUMLULUK --- */
/* ========================================= */
@media (max-width: 992px) {
    
    /* Navbar Düzeni */
    .navbar-home .container { 
        padding: 0 20px; 
        height: 70px;
        display: flex;
        justify-content: space-between; 
        align-items: center;
        width: 100%;
    }
    
    /* Sağ Üst Grup (Arama + Hamburger) */
    .nav-right-mobile {
        display: flex;
        align-items: center;
    }

    /* Telefon Butonu Simgesi (BÜYÜTÜLDÜ) */
    .mobile-call-btn {
        display: flex; 
        align-items: center;
        height: 100%;
        color: #fff; 
        font-size: 30px; /* 30px yapıldı */
        margin-right: 15px; 
        transition: color 0.3s;
    }
    
    /* Scrolled olunca siyah olsun */
    .navbar-home.scrolled .mobile-call-btn { color: #333; }

    /* Hamburger Menü */
    .hamburger-menu { 
        display: block; 
        position: relative; 
        right: 0;
        top: 0;
        transform: none;
    }

    /* 1. SLIDER 9:16 */
    .home-hero {
        height: auto !important;
        aspect-ratio: 9 / 16 !important; 
        min-height: auto;
        margin-bottom: 20px;
    }
    
    /* === 2. SAYFA HERO (WEDDING VB.) === */
    .page-hero {
        height: auto !important;
        aspect-ratio: 16 / 10 !important; 
        min-height: auto !important;
        display: flex;
        align-items: flex-end; 
        padding-bottom: 40px; 
    }
    
    .page-hero .hero-text {
        padding-top: 50px !important; 
    }
    
    /* ÖZEL BAŞLIK (22px) - Wedding Hero */
    .page-hero .hero-text h1 {
        font-size: 22px !important;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .slide-content { top: 50%; width: 100%; padding: 0 20px; }
    .home-hero .slide-content h2 { font-size: 28px !important; margin-bottom: 10px !important; margin-top: 0 !important; line-height: 1.3; }
    .home-hero .slide-content h2 span { font-size: 28px !important; color: #ce0000; }

    .slider-btn { display: none !important; }
    .scroll-indicator { display: none; }

    /* --- STRICT FONT BOYUTLARI --- */
    .section-title, .section-title-left, .form-title, .form-section h4, .about-text h3, .contact-info-panel h2, .coming-soon-content h1 { font-size: 22px !important; margin-bottom: 10px !important; line-height: 1.3; }
    
    .home-hero .slide-content p, .page-hero .hero-text p, .feature-text h3, .company-card h3, .stat-item h3, .modal-title { font-size: 20px !important; margin-bottom: 5px !important; line-height: 1.4; }
    
    body, p, a, span, li, .nav-links > li > a, .dropdown-menu li a, .company-card p, .link-text, .about-text p, .info-row div p, .info-row div span, .btn-hero, .btn-action, .btn-submit, .wedding-intro p, .feature-text p, .feature-list li, .reservation-section p, .form-group label, .form-control, input, select, textarea, .price-display, footer p { font-size: 16px !important; line-height: 1.5; }

    /* --- BOŞLUKLARI AZALTMA --- */
    .companies-section, .home-contact-modern { padding: 20px 0 !important; }
    .references-section { padding-top: 60px !important; padding-bottom: 20px !important; }

    /* --- HAKKIMIZDA --- */
    .about-section { padding-top: 50px !important; padding-bottom: 0 !important; margin-bottom: 0 !important; }
    
    .about-row {
        flex-direction: column !important; 
        gap: 0 !important; 
    }
    .about-text { padding: 0 10px !important; }
    .about-img { margin-bottom: 15px !important; }
    .about-img img { display: block; margin-bottom: 0 !important; aspect-ratio: 7 / 5 !important; object-fit: cover; }

    .about-text h3 { margin-top: 0 !important; margin-bottom: 8px !important; padding-left: 0 !important; }
    .about-text p { margin-top: 5px !important; margin-bottom: 5px !important; padding-left: 0 !important; }

    /* --- İLETİŞİM --- */
    .contact-box-modern { flex-direction: column; width: 100% !important; margin: 0 auto !important; }
    .contact-info-panel h2 { margin-top: 20px !important; padding-left: 15px !important; }
    .contact-info-panel { padding: 10px !important; padding-bottom: 40px !important; }
    .contact-actions { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 10px !important; width: 100%; margin-top: 20px; }
    .btn-action { width: 100% !important; padding: 12px 2px !important; font-size: 13px !important; white-space: nowrap; display: flex; justify-content: center; align-items: center; border-radius: 30px; overflow: hidden; text-overflow: ellipsis; }
    .btn-maps { background: #1a73e8 !important; }
    
    .info-row div span { font-size: 14px !important; }
    .info-row div p { font-size: 14px !important; }
    
    .info-row { margin-bottom: 15px; }
    .contact-map-panel { height: 200px; }
    .info-row { display: flex; align-items: center; width: 100%; }
    .info-row i { flex-shrink: 0; width: 30px; text-align: center; font-size: 16px; }
    footer p { font-size: 10px !important; white-space: nowrap; margin: 0; }

    /* --- MENÜ YAPISI --- */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        height: 100vh; 
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center; 
        transition: right 0.5s ease-in-out; 
        box-shadow: none;
        z-index: 1100; 
        padding-top: 40px; 
        overflow-y: auto;
    }
    
    .nav-links.active { right: 0; }
    .hamburger-menu { z-index: 1200; }

    /* MOBİL MENÜ BAŞLIĞI */
    .mobile-menu-header {
        display: block; 
        font-size: 24px !important;
        font-weight: 900;
        color: #ce0000;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }

    .nav-links li { 
        width: 70%; 
        text-align: center; 
        padding: 15px 0; 
        border-bottom: none; 
        position: relative; 
        opacity: 0; 
        animation: navLinkFade 0.5s ease forwards 0.3s; 
    }

    /* MENÜ ÇİZGİLERİ (SAÇ ÇİZGİ ANİMASYONU) */
    .nav-links li::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0; 
        height: 1px; 
        background: #ddd;
        transition: width 0.6s ease-out 0.5s; 
    }

    .nav-links.active li::after { width: 100%; }
    .mobile-menu-header::after { display: none; }

    .nav-links > li > a { 
        color: #333 !important; 
        text-shadow: none !important; 
        font-weight: 600;
    }
    
    /* --- DROPDOWN MENÜ --- */
    .dropdown-menu { 
        position: relative !important; 
        left: 0 !important; 
        top: 0 !important;
        transform: none !important; 
        box-shadow: none; 
        background: #f4f6f7; 
        width: 100% !important; 
        display: none; 
        opacity: 1 !important; 
        visibility: visible !important; 
        border-top: none; 
        padding: 0;
        margin: 0; 
        text-align: center;
        transition: none !important; 
    }
    
    .nav-links > li.has-dropdown:hover .dropdown-menu {
        transform: none !important;
        left: 0 !important;
        width: 100% !important;
    }

    .has-dropdown.active .dropdown-menu { display: block; }
    
    .dropdown-menu li { width: 100%; padding: 0; }
    .dropdown-menu li::after { width: 0; }
    .nav-links.active .dropdown-menu li::after { width: 50%; background: #eee; }

    .dropdown-menu li a { 
        padding: 12px 0; 
        color: #555 !important; 
        font-size: 16px !important;
        display: block;
        width: 100%;
    }

    /* --- REFERANSLAR --- */
    .cards-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
    .company-card { min-width: 0; flex: none; width: auto; }
    .company-card .card-img { height: 100px; }
    .company-card .card-info { padding: 8px; }
    .desktop-only-grid { display: none !important; }
    .mobile-references-wrapper { display: flex; flex-direction: column; gap: 8px; width: 100%; overflow: hidden; }
    .scroll-row { width: 100%; overflow: hidden; position: relative; }
    .scroll-track { display: flex; gap: 10px; width: max-content; }
    
    .ref-mobile-item { 
        width: 110px; 
        height: 80px; 
        background: #fff; 
        border-radius: 12px; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
        border: 1px solid #f0f0f0;
        display: flex; 
        align-items: center; 
        justify-content: center; 
        flex-shrink: 0; 
        padding: 5px; 
    }
    .rm-img { width: 100%; height: 100%; background-size: contain; background-position: center; background-repeat: no-repeat; }
    .scroll-left { animation: scrollLeft 20s linear infinite; }
    .scroll-right { animation: scrollRight 20s linear infinite; }
    @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
    
    /* --- WEDDING FOTO & VIDEO SIĞDIRMA --- */
    .feature-row, .feature-row.reverse { flex-direction: column; }
    
    video.feature-img { 
        width: 100% !important; 
        height: auto !important; 
        object-fit: contain; 
    }
    
    div.feature-img, img.feature-img { 
        width: 100% !important; 
        height: auto !important; 
        aspect-ratio: 4 / 3 !important; 
        background-size: cover; 
        max-width: 100%; 
    }
    
    .page-content img { max-width: 100%; height: auto; }

    /* --- İSTATİSTİKLER --- */
    .stats-grid { 
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important; 
        gap: 5px !important; 
    }
    .stat-item i { font-size: 1.5rem !important; margin-bottom: 5px; }
    .stat-item h3 { font-size: 14px !important; margin-bottom: 2px; }
    .stat-item p { font-size: 10px !important; }

    .film-frame { width: 200px; height: 140px; }
    .film-track { width: calc(220px * 12); }
    @keyframes scrollFilm { 100% { transform: translateX(calc(-220px * 6)); } }
}
@keyframes navLinkFade { from{ opacity: 0; transform: translateY(50px); } to{ opacity: 1; transform: translateY(0); } }

/* ========================================= */
/* --- DİĞER CSS KODLARI --- */
/* ========================================= */
.home-hero { position: relative; height: 100vh; width: 100%; overflow: hidden; color: #fff; margin-bottom: 50px; }
.slider-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; z-index: 1; transition: opacity 1s ease-in-out; }
.slide.active { opacity: 1; z-index: 2; }
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1; }
.slide-content { position: relative; top: 65%; transform: translateY(-50%); z-index: 10; text-align: center; opacity: 0; transition: all 0.8s ease-out; max-width: 800px; margin: auto; }
.slide.active .slide-content { opacity: 1; transform: translateY(-50%); }
.slide-content h2 { font-size: 3rem; margin-bottom: 15px; text-transform: uppercase; font-weight: 900; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.slide-content h2 span { color: #ce0000; } 
.slide-content p { font-size: 1.3rem; margin-bottom: 25px; color: #fff; font-weight: 700; text-shadow: 0 1px 5px rgba(0,0,0,0.5); }
.btn-hero { display: inline-block; background: #ce0000; color: #fff; padding: 12px 35px; border-radius: 50px; font-weight: bold; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.3); border: none; }
.btn-hero:hover { background: #a50000; transform: translateY(-3px) scale(1.05); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; color: rgba(255, 255, 255, 0.3); border: none; font-size: 50px; cursor: pointer; z-index: 20; padding: 20px; transition: all 0.3s ease; }
.slider-btn:hover { color: rgba(206, 0, 0, 0.8); transform: translateY(-50%) scale(1.1); }
.prev-btn { left: 20px; } .next-btn { right: 20px; }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 20; text-align: center; color: rgba(255, 255, 255, 0.3); display: flex; flex-direction: column; align-items: center; animation: bounce 2s infinite; font-weight: 900; cursor: pointer; text-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: color 0.3s ease; }
.scroll-indicator:hover { color: rgba(206, 0, 0, 0.8); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }
.page-hero { height: 500px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; }
.page-hero .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1; }
.hero-text { position: relative; z-index: 2; max-width: 800px; padding: 20px; }
.hero-text h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 15px; text-shadow: 2px 2px 10px rgba(0,0,0,0.6); }
.hero-text p { font-size: 1.3rem; text-shadow: 1px 1px 5px rgba(0,0,0,0.6); }
.page-content { background: #fff; margin-top: -30px; position: relative; border-radius: 10px; padding: 40px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 50px; z-index: 10; }
.gallery { display: flex; gap: 20px; margin: 30px 0; overflow-x: auto; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; color: #003366; font-weight: 800; }
.section-title-left { font-size: 2rem; color: #003366; margin-bottom: 20px; font-weight: 800; text-transform: uppercase; }
.companies-section { padding: 50px 0; }
.cards-wrapper { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.company-card { background: #fff; flex: 0 1 30%; min-width: 360px; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.company-card.visible { opacity: 1; transform: translateY(0); }
.company-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.card-img { height: 220px; background-size: cover; background-position: center; transition: 0.4s; }
.company-card:hover .card-img { transform: scale(1.1); }
.card-info { padding: 25px; text-align: center; background: #fff; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.card-info h3 { margin-bottom: 10px; color: #ce0000; font-size: 1.3rem; }
.link-text { font-weight: bold; color: #003366; margin-top: auto; }
.references-section { padding: 50px 0; background: #fff; }
.reference-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; justify-items: center; }
.ref-link { display: block; width: 100%; text-decoration: none; }
.ref-item { width: 100%; text-align: center; background: #f9f9f9; padding: 10px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; height: 100%; opacity: 0; transform: translateY(30px); transition: all 0.5s ease-out; }
.ref-item.visible { opacity: 1; transform: translateY(0); }
.ref-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.ref-img { width: 100%; aspect-ratio: 1 / 1; background-size: contain; background-repeat: no-repeat; background-position: center; border-radius: 5px; margin-bottom: 10px; background-color: #fff; }
.ref-item h4 { font-size: 0.95rem; color: #333; font-weight: 700; }
.about-section { padding: 80px 0; background: #f4f6f7; }
.about-row { display: flex; align-items: center; gap: 80px; margin-bottom: 60px; }
.about-row.reverse { flex-direction: row-reverse; }
.about-img { flex: 1; }
.about-img img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: block; }
.about-text { flex: 1; }
.about-text h3 { font-size: 1.8rem; color: #003366; margin-bottom: 20px; }
.about-text p { font-size: 1.15rem; color: #555; line-height: 1.8; margin-bottom: 20px; padding: 0 15px; }
.home-contact-modern { padding: 80px 0; background: #f4f6f7; display: flex; justify-content: center; }
.contact-box-modern { background: #222; color: #fff; width: 100%; max-width: 1100px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.2); display: flex; min-height: 400px; }
.contact-info-panel { flex: 1; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.contact-info-panel h2 { font-size: 2rem; margin-bottom: 10px; color: #ce0000; }
.info-row { display: flex; align-items: center; margin-bottom: 25px; }
.info-row i { width: 50px; height: 50px; background: rgba(206, 0, 0, 0.2); color: #ce0000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-right: 20px; }
.info-row div span { display: block; font-size: 0.8rem; color: #888; text-transform: uppercase; font-weight: bold; }
.info-row div p { margin: 0; font-size: 1.1rem; color: #fff; font-weight: 500; }
.contact-map-panel { flex: 1; position: relative; }
.contact-map-panel iframe { width: 100%; height: 100%; display: block; }
footer { text-align: center; padding: 20px; background: #111; color: #777; font-size: 0.8rem; margin-top: auto; }

/* YENİ BUTON DÜZENİ (MASAÜSTÜ GRID - HİZALAMA İÇİN) */
.contact-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütun */
    gap: 15px;
    margin-top: 30px;
    max-width: 600px; /* Genişlik Sınırı */
    margin-left: auto;
    margin-right: auto;
}
.btn-action { 
    display: flex; /* Flex ile ortalama */
    justify-content: center; 
    align-items: center; 
    gap: 10px; 
    padding: 15px 30px; 
    border-radius: 50px; 
    font-weight: bold; 
    transition: 0.3s; 
    color: #fff; 
}
.btn-action:hover { transform: scale(1.1); }
.btn-phone { background: #ce0000; }
.btn-whatsapp { background: #25D366; }
.btn-instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
/* Harita Butonu Rengi (Masaüstü için de geçerli) */
.btn-maps { background: #1a73e8; }

.wedding-feature-section { padding: 90px 0 0 0; background: #fff; } 
.wedding-feature-section.bg-light { background: #f9f9f9; }
.feature-row { display: flex; align-items: center; gap: 50px; margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; padding: 0; }
.feature-text h3 { font-size: 1.8rem; color: #003366; margin-bottom: 20px; font-weight: 800; }
.feature-text p { font-size: 1.15rem; line-height: 1.6; color: #555; margin-bottom: 30px; }
.feature-img { width: auto; height: 400px; aspect-ratio: 16 / 10; flex-shrink: 0; background-size: cover; background-position: center; border-radius: 50px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); transition: transform 0.1s ease-out; object-fit: cover; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { margin-bottom: 12px; font-size: 1.1rem; color: #555; display: flex; align-items: center; }
.feature-list li:last-child { margin-bottom: 0; }
.feature-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stats-banner.parallax-bg { background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/stats-bg.jpg'); background-attachment: fixed; background-size: cover; padding: 40px 0; width: 100%; color: #fff; margin-top: 90px; margin-bottom: 0; }
.stats-grid { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 30px; }
.stats-grid.two-items { justify-content: center; gap: 100px; }
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-item i { font-size: 2.5rem; margin-bottom: 15px; color: #ce0000; }
.stat-item h3 { font-size: 2rem; font-weight: 800; margin-bottom: 5px; color: #fff; }
.stat-item p { font-size: 1rem; color: #ccc; text-transform: uppercase; letter-spacing: 1px; }
.reservation-section { background: #fff; padding: 90px 0 90px 0; text-align: center; margin-top: 0; margin-bottom: 0; border-bottom: 0px solid #eee; }
.film-section { margin-bottom: 30px; background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/stats-bg.jpg'); background-attachment: fixed; background-size: cover; background-position: center; padding: 10px 0; overflow: hidden; border-top: 1px solid #444; border-bottom: 1px solid #444; }
.film-strip-container { width: 100%; overflow: hidden; background: transparent; padding: 10px 0; position: relative; box-shadow: none; }
.film-track { display: flex; gap: 0; width: calc(460px * 12); animation: scrollFilm 35s linear infinite; }
.film-frame { width: 440px; height: 308px; flex-shrink: 0; position: relative; border-top: 10px solid #111; border-bottom: 10px solid #111; background: #000; margin: 0 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.8); overflow: hidden; border-radius: 2px; }
.film-frame::before, .film-frame::after { content: ''; position: absolute; left: 0; width: 100%; height: 8px; background-image: radial-gradient(#444 30%, transparent 31%); background-size: 20px 8px; z-index: 10; opacity: 0.9; }
.film-frame::before { top: 1px; }
.film-frame::after { bottom: 1px; }
.film-content { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.2) contrast(1.1) brightness(0.9); transition: all 0.4s ease; }
.film-frame:hover .film-content { filter: sepia(0) contrast(1) brightness(1.1); transform: scale(1.05); }
@keyframes scrollFilm { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-460px * 6)); } }
.reservation-modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); justify-content: center; align-items: center; }
.modal-content { background-color: #fefefe; padding: 30px; border-radius: 15px; width: 90%; max-width: 500px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); position: relative; animation: modalFadeIn 0.3s; }
@keyframes modalFadeIn { from {opacity: 0; transform: translateY(-50px);} to {opacity: 1; transform: translateY(0);} }
.close-modal { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
.close-modal:hover { color: #ce0000; }
.modal-title { text-align: center; color: #003366; margin-bottom: 20px; font-size: 1.5rem; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #555; }
.form-group select, .form-group input, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
.form-group textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.form-group .input-short { width: 150px !important; display: block; }
.phone-group { display: flex; gap: 10px; }
.phone-group select { width: 90px; flex-shrink: 0; }
.phone-group input { flex-grow: 1; }
.required-star { color: #ce0000; margin-left: 3px; font-size: 1.1rem; }
.price-display { margin-top: 20px; padding: 15px; background: #f4f6f7; border-radius: 5px; text-align: center; font-weight: bold; color: #ce0000; font-size: 1.2rem; }
.btn-submit { width: 100%; padding: 12px; background: #003366; color: #fff; border: none; border-radius: 5px; font-size: 1.1rem; font-weight: bold; cursor: pointer; margin-top: 15px; transition: 0.3s; }
.btn-submit:hover { background: #ce0000; }
.custom-alert-overlay { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); justify-content: center; align-items: center; }
.custom-alert-box { background: #fff; padding: 30px; border-radius: 15px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.4); max-width: 400px; width: 90%; animation: alertPop 0.3s ease-out; }
@keyframes alertPop { from{transform: scale(0.8); opacity: 0;} to{transform: scale(1); opacity: 1;} }
.alert-icon { font-size: 50px; margin-bottom: 20px; display: block; }
.alert-icon.success { color: #28a745; }
.alert-icon.error { color: #dc3545; }
.alert-title { font-size: 1.5rem; margin-bottom: 10px; color: #333; }
.alert-message { color: #666; margin-bottom: 20px; line-height: 1.5; }
.alert-btn { background: #333; color: #fff; border: none; padding: 10px 30px; border-radius: 5px; cursor: pointer; font-size: 1rem; transition: 0.3s; }
.alert-btn:hover { background: #ce0000; }
.coming-soon-section { height: 100vh; display: flex; justify-content: center; align-items: center; background-size: cover; background-position: center; color: #fff; text-align: center; padding: 20px; margin-top: 0; position: absolute; top: 0; left: 0; width: 100%; z-index: 1; }
.coming-soon-content h1 { font-size: 3rem; margin-bottom: 20px; color: #ce0000; text-shadow: 0 0 10px rgba(0,0,0,0.8); }
.coming-soon-content p { font-size: 1.5rem; font-weight: 600; text-shadow: 0 0 10px rgba(0,0,0,0.8); }