
        :root {
            --dark: #0c0c0c;
            --card-bg: #161616;
            --text-light: #f5f5f5;
            --text-muted: #a0a0a0;
            --gold: #d4af37;
            --blue: #007bff;
        }
        
        * { box-sizing: border-box; margin: 0; padding: 0; }
        
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--dark);
            color: var(--text-light);
            scroll-behavior: smooth;
            line-height: 1.6;
        }

        /* Top Navigation Menu Bar */
        .top-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: rgba(12, 12, 12, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #222;
        }
        .brand { font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; }
        .lang-switch button {
            background: none;
            border: 1px solid #444;
            color: var(--text-light);
            padding: 6px 12px;
            cursor: pointer;
            font-weight: 600;
            border-radius: 4px;
            margin-left: 5px;
            transition: 0.2s;
        }
        .lang-switch button.active {
            background: var(--text-light);
            color: var(--dark);
            border-color: var(--text-light);
        }

        /* Entry Splitting Hero Banner Layout */
        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://unsplash.com') center/cover no-repeat;
        }
        .hero-content h1 { font-size: 4rem; font-weight: 700; letter-spacing: 3px; margin-bottom: 10px; }
        .hero-content p { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 35px; }
        .cta-container { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        
        .btn {
            padding: 16px 36px;
            font-size: 1rem;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-wedding { background-color: var(--gold); color: #000; }
        .btn-corporate { background-color: #fff; color: #000; }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255,255,255,0.1); }

        /* Multi-Audience Section Container Controls */
        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            display: none;
        }
        .content-section.active {
            display: block;
            animation: fadeIn 0.6s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
        .price-badge { display: inline-block; padding: 6px 16px; background: #222; border-radius: 50px; font-weight: bold; margin-top: 10px; }

        /* Widescreen Video Wrapping Mechanics */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* Fixed 16:9 Aspect Ratio Container */
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            background: #000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 40px;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Option B Letterbox Layout Styles - FIXED PRE-HOVER VALUES */
        .gallery-title { font-size: 1.8rem; margin: 40px 0 20px; text-align: left; border-left: 4px solid #fff; padding-left: 15px; }
        #wedding-zone .gallery-title { border-left-color: var(--gold); }
        #corporate-zone .gallery-title { border-left-color: var(--blue); }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
            align-items: center; 
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            background: #111; /* Dark background to frame vertical photos */
            width: 100%;
            height: 280px; /* Uniform height boundary box for all mixed rows */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gallery-item img {
            max-width: 100%;
            max-height: 100%;
            width: auto;   /* Enforces correct image aspect ratios instantly on page load */
            height: auto;  /* Enforces correct image aspect ratios instantly on page load */
            display: block;
            object-fit: contain; /* Shrinks portrait images perfectly into view with zero cropping */
            transition: transform 0.4s ease;
        }
        .gallery-item:hover img { transform: scale(1.03); }

        /* Action-Focused Lead Capture Containers */
        .contact-section {
            background: var(--card-bg);
            padding: 60px 40px;
            border-radius: 12px;
            margin-top: 40px;
            border: 1px solid #222;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: left;
        }
        .contact-col h3 { margin-bottom: 15px; font-size: 1.4rem; color: #fff; }
        .contact-links a {
            display: flex;
            align-items: center;
            color: var(--text-muted);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 1.1rem;
            transition: color 0.2s;
        }
        .contact-links a:hover { color: #fff; }
        .contact-links span { margin-right: 10px; font-size: 1.3rem; }

        .other-pricing {
            margin-top: 30px;
            padding: 20px;
            background: rgba(255,255,255,0.03);
            border-radius: 6px;
            font-size: 0.95rem;
            color: var(--text-muted);
            border-left: 3px solid #444;
        }

        /* Thumb-Friendly Fixed Actions Floating Widget */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            box-shadow: 0 6px 16px rgba(0,0,0,0.4);
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }
        .whatsapp-float:hover { transform: scale(1.05); }

        /* Devices Scaling Framework */
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.6rem; }
            .top-nav { padding: 15px 20px; }
            .gallery-item { height: 230px; } /* Slightly shorter height targets on phones */
        }
                      /* Corporate Client Logos Footer Block */
        .site-footer {
            background-color: #060606;
            padding: 60px 20px;
            text-align: center;
            border-top: 1px solid #1a1a1a;
            margin-top: 80px;
            width: 100%;
        }
        .footer-container {
            /* FIXED: Matches the exact width structure of your main website grids */
            max-width: 1200px; 
            margin: 0 auto;
            width: 100%;
        }
        .footer-container h4 {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            margin-bottom: 30px;
            text-align: left; /* Aligns with portfolio titles */
            border-left: 4px solid var(--text-muted);
            padding-left: 15px;
        }
        .client-logos-img {
            width: 100%; /* Spreads across the full grid area container width */
            height: auto;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            filter: grayscale(100%) opacity(70%);
            transition: filter 0.3s ease;
        }
        .client-logos-img:hover {
            filter: grayscale(0%) opacity(100%);
        }
        .copyright-text {
            font-size: 0.85rem;
            color: #444;
            margin-top: 40px;
            letter-spacing: 1px;
            text-align: center;
        }

