/* ==========================================================================
   FILMYGUY FILMS - MASTER CLEANED STYLESHEET
   Color Theme: Deep Emerald Green (#012b28), Luxury Gold (#ebb42c), Cream (#F5F1E8)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Manrope:wght@300;400;500;600&family=Pinyon+Script&display=swap');

:root {
    --bg-dark-green: #012b28;
    --bg-card: #012220;
    --accent-gold: #ebb42c;
    --accent-gold-soft: rgba(235, 180, 44, 0.2);
    --text-primary: #F5F1E8;
    --text-secondary: #CFC7B6;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Manrope', -apple-system, sans-serif;
    --font-script: 'Pinyon Script', cursive;
    --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   1. RESET & BASE SETTINGS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark-green);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark-green);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Custom Cursor Ring */
.custom-cursor {
    width: 24px;
    height: 24px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, opacity 0.3s ease;
}

/* Subtle Film Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 998;
}

/* ==========================================================================
   2. TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4, .serif-text {
    font-family: var(--font-serif);
    font-weight: 300;
    letter-spacing: 0.02em;
}

p {
    color: var(--text-secondary);
    font-weight: 300;
}

.gold-text {
    color: var(--accent-gold);
}

.section-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.section-label.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.heading-lg {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-padding {
    padding: 7rem 8%;
}

.section-dark {
    background-color: #01211e;
}

/* Animated Glowing Yellow Dot */
.glowing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.8rem;
    position: relative;
    top: -1px;
    box-shadow: 0 0 10px rgba(235, 180, 44, 0.7);
    animation: goldDotPulse 2s infinite ease-out;
}

@keyframes goldDotPulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 16px rgba(235, 180, 44, 1); }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* ==========================================================================
   3. BUTTONS & CTA
   ========================================================================== */
.btn-gold {
    display: inline-block;
    padding: 1rem 2.2rem;
    border: 1px solid var(--accent-gold);
    border-radius: 6px;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    position: relative;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6), 
                color 0.3s ease, 
                box-shadow 0.3s ease;
}

.btn-gold::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--accent-gold);
    transition: height 0.3s ease-in-out;
    z-index: -2;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.7) 50%, 
        transparent 100%
    );
    transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-gold:hover {
    color: var(--bg-dark-green);
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 10px 25px rgba(235, 180, 44, 0.3);
}

.btn-gold:hover::before {
    height: 100%;
}

.btn-gold:hover::after {
    left: 150%;
}

.btn-gold:active {
    transform: scale(0.96) translateY(0);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    border: 1px solid rgba(245, 241, 232, 0.25);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.nav-cta {
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
}

/* ==========================================================================
   4. NAVIGATION BAR (SINGLE-LINE FORCE FIX)
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 1.8rem 5%; /* Height increase karne ke liye vertical padding 1.2rem se 1.8rem kar di hai */
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    z-index: 1000 !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: var(--bg-dark-green);
}

/* Page scroll hone par navbar slightly compact ho jayega */
.navbar.scrolled {
    background-color: rgba(1, 43, 40, 0.98);
    padding: 1.2rem 5%; /* Scrolled height slightly compact for smooth feel */
    border-bottom: 1px solid var(--accent-gold-soft);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* 1. BRAND LOGO WRAPPER */
.brand-logo-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none;
    gap: 10px;
    flex-shrink: 0 !important; /* Logo shrink nahi hoga */
    transition: transform 0.3s ease;
}

.brand-monogram-img {
    height: 44px;
    width: auto;
    filter: brightness(1.1) drop-shadow(0 0 5px rgba(235, 180, 44, 0.3));
    transition: transform 0.4s ease;
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap !important;
}

.brand-logo span {
    color: var(--accent-gold);
}

.brand-logo-wrapper:hover {
    transform: translateY(-2px);
}

.brand-logo-wrapper:hover .brand-monogram-img {
    transform: scale(1.05);
}

/* 2. MIDDLE NAVIGATION LINKS */
.nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 1.8rem; /* Optimized spacing so it never breaks */
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* 3. RIGHT SIDE CTA BUTTON */
.nav-cta {
    font-family: var(--font-sans, 'Manrope', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-gold, #ebb42c);
    border: 1px solid var(--accent-gold, #ebb42c);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.nav-cta:hover {
    background: var(--accent-gold, #ebb42c);
    color: var(--bg-dark-green, #011412);
    box-shadow: 0 0 15px rgba(235, 180, 44, 0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* 4. RESPONSIVE BREAKPOINTS */
@media (max-width: 1100px) {
    .nav-links {
        gap: 1.2rem;
    }
    .brand-logo {
        font-size: 1.15rem;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none !important; /* Mobile menu toggle handle karega */
    }
    .mobile-toggle {
        display: block !important;
    }
}

/* ==========================================================================
   5. PAGE HERO HEADERS
   ========================================================================== */
.page-hero-wrapper {
    /* Top: 8.5rem (Taller space at top)
       Bottom: 3.5rem (Reduced space at bottom) */
    padding: 8.5rem 2rem 3.5rem 2rem !important;
    text-align: center;
    position: relative;
    background: transparent;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

/* Category Label / Subheading */
.page-hero-wrapper .section-label,
.page-hero-wrapper .gold-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3.5px;
    color: #ebb42c;
    text-transform: uppercase;
    margin-bottom: 1.2rem !important;
    display: block;
}

/* Main Hero Title ("Who We Are") */
.page-hero-wrapper .hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.4rem;
    color: #ffffff;
    margin-bottom: 1.2rem !important;
    line-height: 1.15;
}

.page-hero-wrapper .hero-title i,
.page-hero-wrapper .hero-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #ebb42c;
}

/* Subtitle Paragraph */
.page-hero-wrapper .hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: rgba(245, 240, 230, 0.8);
    margin: 0 auto;
    max-width: 650px;
    line-height: 1.6;
}

/* ==========================================================================
   6. HOME HERO SECTION (Vertical Scrolling Gallery)
   ========================================================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 0;
    overflow: hidden;
    background-color: var(--bg-dark-green);
}

.hero-vertical-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 3%;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    will-change: transform;
}

.column-up {
    animation: scrollUp 35s linear infinite;
}

.column-down {
    animation: scrollDown 40s linear infinite;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.gallery-column img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(0.85) contrast(1.1);
    mix-blend-mode: luminosity;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(1, 43, 40, 0.6) 0%, rgba(1, 43, 40, 0.92) 85%);
    z-index: 2;
}

.hero .fade-up {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   7. UNFILTERED NARRATIVE STACKED CARD (ABOUT PAGE)
   ========================================================================== */
.about-stabilized-card {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(1, 34, 32, 0.75);
    border: 1px solid var(--accent-gold-soft);
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.about-stabilized-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Top Title Header */
.about-card-header {
    padding: 3.8rem 2.5rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* --- UNFILTERED NARRATIVE GOLD BADGE BOX --- */
.narrative-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.1rem;
    border: 1px solid var(--accent-gold-soft); /* Thin Gold Border */
    border-radius: 20px;                       /* Curved Rounded Box */
    background: rgba(235, 180, 44, 0.05);      /* Soft Golden Glow Tint */
    backdrop-filter: blur(4px);
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.narrative-badge:hover {
    border-color: var(--accent-gold);          /* Highlight border on hover */
    box-shadow: 0 0 12px rgba(235, 180, 44, 0.2);
}

.narrative-badge .badge-text {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 500;
}

/* Glowing Dot Alignment inside Badge */
.glowing-dot {
    width: 7px;
    height: 7px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(235, 180, 44, 0.8);
    animation: goldDotPulse 2s infinite ease-out;
}

@keyframes goldDotPulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 14px rgba(235, 180, 44, 1); }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.about-card-title {
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    line-height: 1.25;
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-primary);
}

/* Middle Wide Image Frame */
.about-card-media {
    position: relative;
    width: 100%;
    height: 480px;
    border-top: 1px solid var(--accent-gold-soft);
    border-bottom: 1px solid var(--accent-gold-soft);
    z-index: 2;
    overflow: hidden !important; /* Fixes hover shrink bug */
}

.about-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) contrast(110%);
    transition: transform 0.6s linear, filter 0.6s linear;
}

.about-card-media:hover img {
    transform: scale(1.02);
    filter: brightness(0.7) contrast(110%);
}

.visual-aura-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(1, 34, 32, 0) 0%, rgba(1, 26, 24, 0.98) 100%);
    pointer-events: none;
    z-index: 3;
}

/* Discover Story Button Overlay */
.about-discover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: rgba(1, 34, 32, 0.88);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    z-index: 5;
    transition: all 0.4s ease;
}

.about-discover-btn .play-icon {
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.about-discover-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark-green);
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 0 25px rgba(235, 180, 44, 0.6);
}

.about-discover-btn:hover .play-icon {
    color: var(--bg-dark-green);
    transform: scale(1.2);
}

/* --- Bottom Description Body --- */
.about-card-body {
    padding: 3.5rem 6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* NAYA CODE: Thin Gold Border Box for Text */
.about-text-box {
    border: 1px solid var(--accent-gold-soft);
    border-radius: 8px;
    padding: 2.2rem 2.8rem;
    margin-bottom: 2.5rem;
    background: rgba(1, 43, 40, 0.25);
    max-width: 760px;
    width: 100%;
    backdrop-filter: blur(4px);
    transition: border-color 0.3s ease;
}

.about-text-box:hover {
    border-color: rgba(235, 180, 44, 0.4);
}

.about-text-lead {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.about-text-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0; /* Margin ab box handle karega */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-card-body {
        padding: 2.5rem 1.5rem;
    }
    .about-text-box {
        padding: 1.5rem 1.2rem;
    }
}

/* ==========================================================================
   8. FOUNDER MESSAGE SECTION & EDITORIAL LETTER
   ========================================================================== */
.founder-grid-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
}

.founder-portrait-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.portrait-frame {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--accent-gold-soft);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(110%) brightness(0.9);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.portrait-frame:hover img {
    filter: grayscale(0%) contrast(105%) brightness(1);
    transform: scale(1.03);
}

.portrait-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(1, 34, 32, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent-gold-soft);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    z-index: 2;
}

.portrait-tag span {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 500;
}

.founder-letter-content {
    padding-left: 0.5rem;
}

.founder-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.letter-body p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.letter-body p.lead-para {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.editorial-quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.35;
    color: var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
    padding: 0.8rem 0 0.8rem 1.5rem;
    margin: 1.8rem 0;
    font-style: italic;
    background: linear-gradient(90deg, rgba(235, 180, 44, 0.06) 0%, transparent 100%);
}

/* Founder Signature Block Right Aligned */
.founder-signature-block {
    text-align: right;
    margin-top: -1.2rem !important; /* 🌟 Pulls the whole signature block UP towards text */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Signature PNG Image Adjustment */
.signature-img {
    width: 170px; /* Elegant scale */
    height: auto;
    margin-bottom: -10px !important; /* 🌟 Perfect pull: brings name close without touching/overlapping */
    filter: drop-shadow(0 2px 6px rgba(235, 180, 44, 0.25));
    display: block;
}

/* Printed Name ('Jiban Dey') */
.printed-name {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 1.15rem;
    color: var(--accent-gold, #ebb42c);
    letter-spacing: 0.04em;
    font-weight: 400;
    margin: 0 !important;
    line-height: 1.2 !important; /* Clean tight box */
}

/* Title ('FOUNDER & CREATIVE DIRECTOR') */
.signature-title {
    font-family: var(--font-sans, 'Manrope', sans-serif);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-secondary, rgba(245, 240, 230, 0.6));
    text-transform: uppercase;
    margin: 0 !important;
    margin-top: 4px !important; /* Balanced gap between Name and Title */
    line-height: 1.2 !important;
}

/* ==========================================================================
   9. TIMELINE / PROCESS TRACKING SECTION
   ========================================================================== */
.order-timeline-section {
    padding: 6rem 8%;
    background-color: #01211e;
    border-top: 1px solid var(--accent-gold-soft);
    border-bottom: 1px solid var(--accent-gold-soft);
}

.tracking-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.tracking-progress-bar {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(235, 180, 44, 0.15);
    z-index: 1;
}

.tracking-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold) 0%, #ffffff 100%);
    box-shadow: 0 0 15px var(--accent-gold);
    transition: width 8s linear;
}

.tracking-node {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.node-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--bg-dark-green);
    border: 2px solid rgba(235, 180, 44, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.node-circle span {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.tracking-node.completed .node-circle {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(235, 180, 44, 0.9);
    transform: scale(1.12);
}

.tracking-node.completed .node-circle span {
    opacity: 0;
    transform: translateY(-8px);
}

.node-circle::after {
    content: '✓';
    position: absolute;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-dark-green);
    opacity: 0;
    transform: scale(0.4) rotate(-30deg);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tracking-node.completed .node-circle::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.node-content h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.node-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.footer {
    background-color: #011f1d;
    padding: 5rem 8% 2rem;
    border-top: 1px solid var(--accent-gold-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .brand-logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-links h4, .footer-contact h4 {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, 0.05);
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   11. ANIMATIONS & RESPONSIVE MEDIA QUERIES
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .founder-grid-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .portrait-frame {
        height: 420px;
    }
    .about-stabilized-card {
        margin: 0 1.5rem;
    }
    .about-card-media {
        height: 380px;
    }
    .about-card-body {
        padding: 3rem 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-vertical-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-card-media {
        height: 280px;
    }
    .about-card-title {
        font-size: 1.8rem;
    }
    .about-discover-btn {
        font-size: 0.65rem;
        padding: 0.6rem 1.2rem;
    }
    .tracking-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    .tracking-progress-bar {
        top: 25px;
        bottom: 25px;
        left: 25px;
        width: 3px;
        height: auto;
        right: auto;
    }
    .tracking-progress-fill {
        width: 100%;
        height: 0%;
        transition: height 8s linear;
    }
    .tracking-node {
        display: flex;
        gap: 1.5rem;
        text-align: left;
    }
    .node-circle {
        margin: 0;
        flex-shrink: 0;
    }
}

/* ==========================================================================
   HOME PAGE: WHY CHOOSE US (Photo Left | Text Right Grid)
   ========================================================================== */

/* Outer Section Layout Wrapper */
.about-teaser, 
.why-choose-us-section,
.teaser-container {
    display: grid !important;
    grid-template-columns: 1fr 1.1fr !important; /* Left 1fr (Image), Right 1.1fr (Text) */
    gap: 4rem !important;
    align-items: center !important;
    max-width: 1150px !important;
    margin: 0 auto !important;
    background: rgba(1, 34, 32, 0.75);
    border: 1px solid var(--accent-gold-soft);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

/* Left Image Container */
.about-teaser img,
.about-image-wrapper img,
.why-choose-us-section img {
    width: 100% !important;
    height: 480px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    border: 1px solid var(--accent-gold-soft) !important;
    display: block !important;
}

/* Right Content Box */
.about-teaser .about-text-content,
.about-text-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

/* Gold Pill Badge for Label */
.about-text-content .section-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.4rem 1.1rem !important;
    border: 1px solid var(--accent-gold-soft) !important;
    border-radius: 20px !important;
    background: rgba(235, 180, 44, 0.05) !important;
    margin-bottom: 1.2rem !important;
    font-size: 0.72rem !important;
}

/* Responsive (Mobile/Tablet View) */
@media (max-width: 992px) {
    .about-teaser, 
    .why-choose-us-section,
    .teaser-container {
        grid-template-columns: 1fr !important;
        padding: 2rem !important;
        gap: 2rem !important;
    }
    
    .about-teaser img,
    .about-image-wrapper img,
    .why-choose-us-section img {
        height: 320px !important;
    }
}

/* ==========================================================================
   ABOUT PAGE: HIGH-CONVERTING CURIOSITY STORY SECTION
   ========================================================================== */

/* 1. Golden Glassmorphism Narrative Box */
.narrative-focus-box {
    position: relative;
    border: 1px solid rgba(235, 180, 44, 0.35) !important;
    border-radius: 12px;
    padding: 2.2rem 2.8rem;
    margin-bottom: 2.5rem;
    background: radial-gradient(circle at center, rgba(1, 43, 40, 0.6) 0%, rgba(1, 26, 24, 0.85) 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(235, 180, 44, 0.05);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    max-width: 780px;
    width: 100%;
}

.narrative-focus-box:hover {
    border-color: rgba(235, 180, 44, 0.7) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), inset 0 0 25px rgba(235, 180, 44, 0.1);
}

.gold-highlight {
    color: var(--accent-gold);
    font-weight: 500;
}

/* 2. Magnetic Glowing CTA Button */
.magnetic-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.4rem;
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    color: #012b28 !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(235, 180, 44, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    animation: buttonPulse 3s infinite ease-in-out;
}

.magnetic-cta .btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.magnetic-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(235, 180, 44, 0.6), 0 0 50px rgba(235, 180, 44, 0.3);
    background: linear-gradient(135deg, #fcd05b 0%, #ebb42c 100%);
}

.magnetic-cta:hover .btn-arrow {
    transform: translateX(6px);
}

/* Continuous Pulse Effect to draw user attention */
@keyframes buttonPulse {
    0% { box-shadow: 0 0 15px rgba(235, 180, 44, 0.3); }
    50% { box-shadow: 0 0 30px rgba(235, 180, 44, 0.6); }
    100% { box-shadow: 0 0 15px rgba(235, 180, 44, 0.3); }
}

@media (max-width: 768px) {
    .narrative-focus-box { padding: 1.5rem 1.2rem; }
    .magnetic-cta { padding: 0.9rem 1.8rem; font-size: 0.78rem; }
}

/* ==========================================================================
   ULTRA-EMOTIONAL 2-COLUMN STORY CARD (FINAL POLISHED)
   ========================================================================== */

/* 1. Main Grid Card Frame */
.about-grid-card {
    max-width: 1150px;
    margin: 0 auto;
    background: rgba(1, 34, 32, 0.75);
    border: 1px solid var(--accent-gold-soft);
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr; /* Left: Photo, Right: Content */
    align-items: center;
    position: relative;
    z-index: 10;
}

/* 2. Photo Layer: Brighter for Emotional Connection */
.about-card-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-right: 1px solid var(--accent-gold-soft);
    overflow: hidden !important;
}

.about-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Soft filter so emotion/couple details stay clearly visible */
    filter: brightness(0.85) contrast(105%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
}

.about-card-media:hover img {
    transform: scale(1.04);
    filter: brightness(0.92) contrast(108%);
}

.visual-aura-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(1, 26, 24, 0.75) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Subtle Photo Tag (Replaces duplicate CTA button) */
.photo-story-tag {
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(1, 34, 32, 0.85);
    border: 1px solid var(--accent-gold-soft);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    color: var(--accent-gold);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    z-index: 4;
}

/* 3. Right Side Content Body */
.about-card-body {
    padding: 3.5rem 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
}

.about-card-title {
    font-size: clamp(2rem, 2.8vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-card-title i {
    font-family: var(--font-serif);
    color: var(--accent-gold);
    font-style: italic;
}

/* 4. Glassmorphism Narrative Box */
.narrative-focus-box {
    border: 1px solid rgba(235, 180, 44, 0.25) !important;
    border-radius: 10px;
    padding: 1.8rem 2rem;
    margin-bottom: 2.2rem;
    background: rgba(1, 43, 40, 0.4);
    width: 100%;
    backdrop-filter: blur(8px);
}

.gold-highlight {
    color: var(--accent-gold);
    font-weight: 500;
}

.about-text-lead {
    font-size: 1.02rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.about-text-sub {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* 5. Single High-Converting Magnetic CTA Button */
.magnetic-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.4rem;
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    color: #012b28 !important;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(235, 180, 44, 0.35);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    animation: buttonPulse 3s infinite ease-in-out;
}

.magnetic-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(235, 180, 44, 0.6), 0 0 40px rgba(235, 180, 44, 0.3);
}

.magnetic-cta .btn-arrow {
    transition: transform 0.3s ease;
}

.magnetic-cta:hover .btn-arrow {
    transform: translateX(6px);
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 15px rgba(235, 180, 44, 0.3); }
    50% { box-shadow: 0 0 32px rgba(235, 180, 44, 0.65); }
    100% { box-shadow: 0 0 15px rgba(235, 180, 44, 0.3); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-grid-card { 
        grid-template-columns: 1fr; 
    }
    .about-card-media { 
        height: 360px; 
        min-height: auto; 
        border-right: none; 
        border-bottom: 1px solid var(--accent-gold-soft); 
    }
    .about-card-body { 
        padding: 2.5rem 2rem; 
    }
}

/* ==========================================================================
   ULTRA-LUXURY OLD MONEY PACKAGES SECTION (SERVICES PAGE)
   ========================================================================== */

/* Font Definitions */
.text-center-block {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.5rem;
}

.section-lead-p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.8rem;
}

.luxury-packages-section {
    position: relative;
    background: radial-gradient(circle at top center, rgba(1, 43, 40, 0.6) 0%, rgba(1, 22, 20, 0.98) 100%);
    padding-top: 2rem;
}

.packages-container {
    max-width: 1250px;
    margin: 0 auto;
}

/* Grid Layout */
.luxury-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    align-items: stretch;
}

/* Luxury Card Frame */
.luxury-card {
    position: relative;
    background: rgba(1, 34, 32, 0.55);
    border: 1px solid rgba(235, 180, 44, 0.22);
    border-radius: 14px;
    padding: 2.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-card:hover {
    transform: translateY(-8px);
    border-color: rgba(235, 180, 44, 0.55);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), 0 0 25px rgba(235, 180, 44, 0.12);
}

/* Featured Card (Flagship) */
.featured-luxury-card {
    background: linear-gradient(165deg, rgba(1, 43, 40, 0.92) 0%, rgba(1, 20, 18, 0.98) 100%);
    border: 1px solid var(--accent-gold) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 30px rgba(235, 180, 44, 0.22);
}

.crown-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    color: #012b28;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 0.35rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(235, 180, 44, 0.4);
    white-space: nowrap;
}

/* Card Titles */
.card-pre-title {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.gold-accent-text {
    color: var(--accent-gold);
    font-weight: 600;
}

.card-heading {
    font-size: 1.55rem;
    color: var(--text-primary);
    font-family: var(--font-serif);
    margin-bottom: 0.6rem;
    font-weight: 300;
}

.card-subtext {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.6rem;
    min-height: 40px;
}

/* 🎯 ALIGNED NUMERICAL PRICING (CINZEL FONT) */
.price-amount {
    font-family: 'Cinzel', serif !important;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums; /* Strict vertical digit alignment */
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.price-amount .sym {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Pre-Wedding Rows */
.pricing-list {
    border-top: 1px solid rgba(235, 180, 44, 0.15);
    border-bottom: 1px solid rgba(235, 180, 44, 0.15);
    padding: 0.8rem 0;
    margin-bottom: 1.2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
}

.price-row .price-amount {
    font-size: 1.18rem;
}

.row-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.highlight-row .row-label {
    color: var(--text-primary);
    font-weight: 500;
}

/* Split Tiers (One Side vs Both Side) */
.pricing-split-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(235, 180, 44, 0.2);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    margin-bottom: 0.5rem;
}

.featured-split {
    border-color: rgba(235, 180, 44, 0.4);
    background: rgba(0, 0, 0, 0.5);
}

.split-col {
    display: flex;
    flex-direction: column;
}

.split-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.split-line {
    width: 1px;
    height: 32px;
    background: rgba(235, 180, 44, 0.2);
}

.gold-line {
    background: rgba(235, 180, 44, 0.4);
}

.pricing-single-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(235, 180, 44, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.pricing-single-box .split-label {
    display: block;
    margin-bottom: 0.3rem;
}

.addon-text {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.4rem;
}

.gold-addon {
    color: var(--accent-gold);
    opacity: 0.9;
}

/* Deliverables List */
.card-deliverables {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-deliverables li {
    font-size: 0.82rem;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.45;
}

.gold-icon {
    color: var(--accent-gold);
    font-size: 0.75rem;
    position: relative;
    top: 2px;
}

/* Card Buttons */
.btn-card-secondary {
    display: block;
    text-align: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--accent-gold-soft);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-card-secondary:hover {
    border-color: var(--accent-gold);
    background: rgba(235, 180, 44, 0.12);
    transform: translateY(-2px);
}

.btn-card-primary {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem !important;
    font-size: 0.75rem !important;
}

/* Timeline Process Section Styles */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline-step {
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
    background: rgba(1, 34, 32, 0.4);
    border: 1px solid var(--accent-gold-soft);
    border-radius: 10px;
    padding: 1.5rem 1.8rem;
}

.timeline-node {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    flex-shrink: 0;
    background: rgba(235, 180, 44, 0.08);
}

.timeline-title {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-family: var(--font-serif);
    margin-bottom: 0.3rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .luxury-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 650px) {
    .luxury-packages-grid {
        grid-template-columns: 1fr;
    }
    .luxury-card {
        padding: 2rem 1.4rem;
    }
    .timeline-step {
        padding: 1.2rem;
    }
}

/* ==========================================================================
   BUTTERY SMOOTH ULTRA-LUXURY TAB SYSTEM & CAROUSEL
   ========================================================================== */

.tab-switcher-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.tab-pill-container {
    position: relative;
    display: inline-flex;
    background: rgba(1, 20, 18, 0.85);
    border: 1px solid rgba(235, 180, 44, 0.3);
    padding: 6px;
    border-radius: 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tab-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    cursor: pointer;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
}

.tab-btn.active {
    color: #012b28; /* Dark emerald contrast on gold pill */
    font-weight: 700;
}

/* Sliding Gold Pill Background */
.tab-slider {
    position: absolute;
    top: 6px;
    bottom: 6px;
    z-index: 1;
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    border-radius: 30px;
    box-shadow: 0 4px 18px rgba(235, 180, 44, 0.4);
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1); /* Buttery smooth physics */
}

/* Tab Viewport & Sliding Track */
.tabs-viewport {
    width: 100%;
    overflow: hidden; /* Clips non-active tab content smoothly */
}

.tabs-slider-track {
    display: flex;
    width: 200%; /* Two panels side-by-side */
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1); /* Ultra smooth slide animation */
    will-change: transform;
}

.tab-panel {
    width: 50%;
    flex-shrink: 0;
}

.commercial-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1050px;
    margin: 0 auto;
}

/* Responsive adjust for PR Commercials Grid */
@media (max-width: 1024px) {
    .commercial-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
    }
}

/* ==========================================================================
   OLD MONEY HERITAGE PACKAGES & INVESTMENT SECTION
   ========================================================================== */

/* Page Background Vignette */
body.old-money-theme {
    background-color: #011a18;
    background-image: radial-gradient(circle at 50% 20%, rgba(2, 43, 38, 0.7) 0%, rgba(1, 20, 18, 0.98) 80%);
}

.om-hero-wrapper {
    text-align: center;
    padding: 6rem 1.5rem 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.om-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(235, 180, 44, 0.3);
    padding-bottom: 0.3rem;
}

.om-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.om-hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 🌟 OLD MONEY MINIMALIST TAB SWITCHER */
.om-tab-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.om-tab-pill {
    position: relative;
    display: inline-flex;
    background: rgba(1, 26, 24, 0.8);
    border: 1px solid rgba(235, 180, 44, 0.25);
    padding: 5px;
    border-radius: 40px;
    backdrop-filter: blur(15px);
}

.om-tab-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.8rem 2.2rem;
    cursor: pointer;
    transition: color 0.4s ease;
}

.om-tab-btn.active {
    color: #011a18; /* Elegant contrast on gold indicator */
    font-weight: 600;
}

.om-tab-indicator {
    position: absolute;
    top: 5px;
    bottom: 5px;
    z-index: 1;
    background: #ebb42c;
    border-radius: 30px;
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 🌟 SLIDING TRACK VIEWPORT */
.om-viewport {
    width: 100%;
    overflow: hidden;
}

.om-slider-track {
    display: flex;
    width: 200%;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.om-tab-panel {
    width: 50%;
    flex-shrink: 0;
}

.om-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.om-grid {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}

.grid-4-col {
    grid-template-columns: repeat(4, 1fr);
}

.grid-3-col {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1050px;
    margin: 0 auto;
}

/* 🏰 OLD MONEY HERITAGE CARD STYLING */
.om-card {
    position: relative;
    background: rgba(1, 28, 26, 0.45);
    border: 1px solid rgba(235, 180, 44, 0.18);
    border-radius: 4px; /* Slightly sharp corners for vintage classic frame look */
    padding: 2.8rem 1.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.om-card:hover {
    border-color: rgba(235, 180, 44, 0.45);
    background: rgba(1, 32, 30, 0.65);
    transform: translateY(-6px);
}

/* Royal Flagship Card Accent */
.flagship-card {
    background: rgba(1, 35, 32, 0.7);
    border: 1px solid rgba(235, 180, 44, 0.55);
    box-shadow: inset 0 0 30px rgba(235, 180, 44, 0.05);
}

.om-crest {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ebb42c;
    color: #011a18;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* Header Text */
.om-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.om-tag.gold {
    color: var(--accent-gold);
}

.om-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    line-height: 1.15;
}

.om-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 2rem;
    min-height: 40px;
}

/* 🎯 CINZEL NUMERICAL PRICING (Symmetrical Alignment) */
.om-price-num {
    font-family: 'Cinzel', serif !important;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
}

.om-price-num.lg {
    font-size: 1.45rem;
}

.om-price-num.xl {
    font-size: 1.55rem;
}

.om-price-num.gold {
    color: var(--accent-gold);
}

/* Pre-Wedding Clean Dividers */
.om-pricing-block {
    border-top: 1px solid rgba(235, 180, 44, 0.15);
    border-bottom: 1px solid rgba(235, 180, 44, 0.15);
    padding: 0.8rem 0;
    margin-bottom: 1.5rem;
}

.om-price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
}

.om-line-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.om-price-line.highlight .om-line-title {
    color: var(--text-primary);
    font-weight: 400;
}

/* Tiered One Side vs Both Side */
.om-tier-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(235, 180, 44, 0.15);
    border-bottom: 1px solid rgba(235, 180, 44, 0.15);
    margin-bottom: 0.4rem;
}

.om-tier-box.featured {
    border-color: rgba(235, 180, 44, 0.35);
}

.om-tier-col {
    display: flex;
    flex-direction: column;
}

.om-tier-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.om-tier-label.gold {
    color: var(--accent-gold);
}

.om-tier-line {
    width: 1px;
    height: 30px;
    background: rgba(235, 180, 44, 0.15);
}

.om-tier-line.gold {
    background: rgba(235, 180, 44, 0.35);
}

.om-single-price {
    border-top: 1px solid rgba(235, 180, 44, 0.15);
    border-bottom: 1px solid rgba(235, 180, 44, 0.15);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.om-single-price .om-tier-label {
    display: block;
    margin-bottom: 0.3rem;
}

.om-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.om-note.gold {
    color: var(--accent-gold);
    opacity: 0.85;
}

/* Features Bullet Points */
.om-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.om-feature-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.45;
}

.om-bullet {
    color: rgba(235, 180, 44, 0.6);
    font-size: 0.6rem;
    position: relative;
    top: 3px;
}

.om-bullet.gold {
    color: var(--accent-gold);
}

/* Minimalist Understated Luxury Buttons */
.om-cta-btn {
    display: block;
    text-align: center;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(235, 180, 44, 0.3);
    color: var(--accent-gold);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.om-cta-btn:hover {
    background: rgba(235, 180, 44, 0.1);
    border-color: var(--accent-gold);
}

.om-cta-btn.primary {
    background: var(--accent-gold);
    color: #011a18;
    font-weight: 600;
    border: 1px solid var(--accent-gold);
}

.om-cta-btn.primary:hover {
    background: #fcd05b;
}

/* Timeline Process Section */
.om-timeline {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.om-timeline-step {
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
    padding: 1.5rem 1.8rem;
    border-bottom: 1px solid rgba(235, 180, 44, 0.15);
}

.om-step-num {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--accent-gold);
    opacity: 0.8;
}

.om-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

/* Responsive Scaling */
@media (max-width: 1100px) {
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .grid-4-col, .grid-3-col {
        grid-template-columns: 1fr;
    }
    .om-card {
        padding: 2.2rem 1.4rem;
    }
    .om-tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.68rem;
    }
}

/* ==========================================================================
   COMPACT & ULTRA-SLEEK OLD MONEY CARD STYLES
   ========================================================================== */

/* Reduced Card Outer Spacing */
.om-card.compact-card {
    padding: 1.8rem 1.3rem 1.4rem !important;
    border-radius: 6px;
    background: rgba(1, 26, 24, 0.55);
}

.om-card.compact-card:hover {
    transform: translateY(-4px);
}

/* Tight Card Header */
.om-card.compact-card .om-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.3rem !important;
}

.om-card.compact-card .om-desc {
    font-size: 0.74rem !important;
    margin-bottom: 1rem !important;
    min-height: auto !important;
    line-height: 1.4 !important;
}

/* Compact Price Box */
.om-pricing-block {
    padding: 0.4rem 0 !important;
    margin-bottom: 0.8rem !important;
}

.om-price-line {
    padding: 0.2rem 0 !important;
}

.om-price-line .om-line-title {
    font-size: 0.72rem !important;
}

.om-price-line .om-price-num {
    font-size: 1.05rem !important;
}

/* Compact Tiered Boxes */
.om-tier-box {
    padding: 0.5rem 0 !important;
    margin-bottom: 0.2rem !important;
}

.om-single-price {
    padding: 0.6rem 0 !important;
    margin-bottom: 0.8rem !important;
}

.om-price-num.lg {
    font-size: 1.22rem !important;
}

.om-price-num.xl {
    font-size: 1.3rem !important;
}

.om-note {
    font-size: 0.64rem !important;
    margin-bottom: 0.9rem !important;
}

/* 🎯 COMPACT INLINE FEATURE LIST */
.om-feature-list.compact-list {
    margin: 0 0 1.2rem 0 !important;
    gap: 0.45rem !important;
}

.om-feature-list.compact-list li {
    font-size: 0.73rem !important;
    line-height: 1.35 !important;
    gap: 0.45rem !important;
}

.om-bullet {
    font-size: 0.5rem !important;
    top: 2px !important;
}

/* Compact CTA Button */
.om-card.compact-card .om-cta-btn {
    padding: 0.65rem 0.8rem !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.18em !important;
}

/* ==========================================================================
   BALANCED & HIGH-CONVERTING LUXURY CARD STYLES
   ========================================================================== */

/* Outer Container Spacing */
.om-card.balanced-card {
    padding: 2.2rem 1.6rem 1.8rem !important;
    border-radius: 8px;
    background: rgba(1, 28, 26, 0.6);
    border: 1px solid rgba(235, 180, 44, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease-in-out;
}

.om-card.balanced-card:hover {
    transform: translateY(-5px);
    border-color: rgba(235, 180, 44, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Card Titles & Header */
.om-card.balanced-card .om-title {
    font-size: 1.65rem !important;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    margin-bottom: 0.4rem !important;
    color: var(--text-primary);
}

.om-card.balanced-card .om-desc {
    font-size: 0.8rem !important;
    color: var(--text-secondary);
    margin-bottom: 1.4rem !important;
    line-height: 1.5 !important;
    min-height: 38px;
}

/* Pricing Blocks */
.om-pricing-block {
    border-top: 1px solid rgba(235, 180, 44, 0.18);
    border-bottom: 1px solid rgba(235, 180, 44, 0.18);
    padding: 0.6rem 0 !important;
    margin-bottom: 1.2rem !important;
}

.om-price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0 !important;
}

.om-price-line .om-line-title {
    font-size: 0.78rem !important;
    color: var(--text-secondary);
}

.om-price-line.highlight .om-line-title {
    color: var(--text-primary);
    font-weight: 500;
}

.om-price-line .om-price-num {
    font-family: 'Cinzel', serif !important;
    font-size: 1.15rem !important;
    color: var(--accent-gold);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* One Side vs Both Side Tiers */
.om-tier-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.5rem !important;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    border: 1px solid rgba(235, 180, 44, 0.15);
    margin-bottom: 0.3rem !important;
}

.om-single-price {
    padding: 0.8rem 0.5rem !important;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    border: 1px solid rgba(235, 180, 44, 0.15);
    margin-bottom: 1.2rem !important;
    text-align: center;
}

.om-tier-col {
    display: flex;
    flex-direction: column;
}

.om-tier-label {
    font-size: 0.65rem !important;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.om-tier-line {
    width: 1px;
    height: 32px;
    background: rgba(235, 180, 44, 0.2);
}

.om-price-num.lg {
    font-size: 1.35rem !important;
    font-family: 'Cinzel', serif !important;
    color: var(--accent-gold);
}

.om-price-num.xl {
    font-size: 1.45rem !important;
    font-family: 'Cinzel', serif !important;
    color: var(--accent-gold);
}

.om-note {
    font-size: 0.68rem !important;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.2rem !important;
}

/* Feature Bullets (Clean & Legible) */
.om-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.65rem !important;
}

.om-feature-list li {
    font-size: 0.8rem !important;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem !important;
    line-height: 1.4 !important;
}

.om-bullet {
    color: var(--accent-gold);
    font-size: 0.65rem !important;
    position: relative;
    top: 2px;
}

/* Balanced CTA Buttons */
.om-card.balanced-card .om-cta-btn {
    display: block;
    text-align: center;
    padding: 0.8rem 1rem !important;
    border: 1px solid rgba(235, 180, 44, 0.35);
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.om-card.balanced-card .om-cta-btn:hover {
    background: rgba(235, 180, 44, 0.12);
    border-color: var(--accent-gold);
}

.om-card.balanced-card .om-cta-btn.primary {
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    color: #011a18;
    font-weight: 600;
    border: none;
}

.om-card.balanced-card .om-cta-btn.primary:hover {
    background: linear-gradient(135deg, #fcd05b 0%, #ebb42c 100%);
    box-shadow: 0 4px 20px rgba(235, 180, 44, 0.3);
}

/* ==========================================================================
   ULTRA-LUXURY EDITORIAL PACKAGES (COMPACT, UN-CROPPED & HIGH-ELEGANCE)
   ========================================================================== */

/* Outer Section Spacing & Overflow Fix */
.luxury-packages-section {
    padding-top: 3rem !important;
    overflow: visible !important; /* Prevents badge clipping */
}

.om-viewport {
    padding-top: 1.5rem !important; /* Space for badges on top */
    overflow: hidden;
}

.om-grid {
    display: grid;
    gap: 1.8rem;
    align-items: stretch;
}

.grid-4-col {
    grid-template-columns: repeat(4, 1fr);
}

/* 👑 ELEGANT CARD FRAME */
.om-luxury-card {
    position: relative;
    background: rgba(1, 28, 26, 0.7);
    border: 1px solid rgba(235, 180, 44, 0.2);
    border-radius: 8px;
    padding: 2.2rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.om-luxury-card:hover {
    border-color: rgba(235, 180, 44, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* 🏆 FLAGSHIP CARD (Fixed Badge Clipping & Glowing Accent) */
.om-luxury-card.flagship {
    background: linear-gradient(165deg, rgba(1, 38, 35, 0.9) 0%, rgba(1, 20, 18, 0.95) 100%);
    border: 1px solid var(--accent-gold) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(235, 180, 44, 0.08);
}

.om-flagship-pill {
    align-self: center;
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    color: #011a18;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 0.35rem 1.1rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(235, 180, 44, 0.3);
    text-align: center;
}

/* Card Header */
.om-card-header {
    margin-bottom: 1.2rem;
}

.om-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.om-tag.gold {
    color: var(--accent-gold);
}

.om-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 0.3rem;
}

.om-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.45;
    min-height: 34px;
}

/* 🎯 ALIGNED CINZEL PRICING */
.om-num {
    font-family: 'Cinzel', serif !important;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-gold);
    font-variant-numeric: tabular-nums;
}

.om-num.lg {
    font-size: 1.35rem;
}

.om-num.xl {
    font-size: 1.45rem;
}

.om-num.gold {
    color: var(--accent-gold);
}

/* Pricing Layouts (Pre-Wedding Rows) */
.om-price-stack {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.8rem;
}

.om-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem;
    color: var(--text-secondary);
}

.om-price-row.highlight span:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Split Tiers (One Side vs Both Side) */
.om-split-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(235, 180, 44, 0.15);
    border-radius: 6px;
    padding: 0.75rem 0.8rem;
    margin-bottom: 0.4rem;
}

.om-split-price.gold-bg {
    border-color: rgba(235, 180, 44, 0.35);
    background: rgba(0, 0, 0, 0.35);
}

.om-split-col {
    display: flex;
    flex-direction: column;
}

.om-split-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.om-split-title.gold {
    color: var(--accent-gold);
}

.om-v-line {
    width: 1px;
    height: 30px;
    background: rgba(235, 180, 44, 0.2);
}

.om-v-line.gold {
    background: rgba(235, 180, 44, 0.4);
}

.om-single-price {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(235, 180, 44, 0.15);
    border-radius: 6px;
    padding: 0.85rem 0.8rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.om-single-price .om-split-title {
    display: block;
    margin-bottom: 0.3rem;
}

.om-footnote {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.om-footnote.gold {
    color: var(--accent-gold);
    opacity: 0.9;
}

/* Thin Elegant Line Separator */
.om-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(235, 180, 44, 0.25) 0%, rgba(235, 180, 44, 0.05) 100%);
    margin: 0.6rem 0 1.2rem;
}

.om-divider.gold {
    background: linear-gradient(90deg, rgba(235, 180, 44, 0.5) 0%, rgba(235, 180, 44, 0.1) 100%);
}

/* Feature List Bullets */
.om-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.om-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1.4;
}

.om-bullet {
    color: var(--accent-gold);
    font-size: 0.6rem;
    position: relative;
    top: 2px;
}

.om-bullet.gold {
    color: var(--accent-gold);
}

/* 💎 LUXURY BUTTONS */
.om-btn {
    display: block;
    text-align: center;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(235, 180, 44, 0.35);
    color: var(--accent-gold);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.om-btn:hover {
    background: rgba(235, 180, 44, 0.12);
    border-color: var(--accent-gold);
}

.om-btn.primary {
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    color: #011a18;
    font-weight: 600;
    border: none;
}

.om-btn.primary:hover {
    background: linear-gradient(135deg, #fcd05b 0%, #ebb42c 100%);
    box-shadow: 0 4px 20px rgba(235, 180, 44, 0.35);
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .grid-4-col {
        grid-template-columns: 1fr;
    }
    .om-luxury-card {
        padding: 1.8rem 1.2rem;
    }
}



/* ==========================================================================
   UPDATED SERVICES SECTION (3-CARDS TOP, HORIZONTAL 4TH CARD & NAVBAR GOLD CTA)
   ========================================================================== */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&display=swap');

.glass-services-section {
    padding-top: 1.5rem !important;
    position: relative;
    z-index: 5;
}

/* Container Width */
.glass-services-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 🌟 GLASS TAB SWITCHER */
.glass-tab-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.glass-tab-pill {
    position: relative;
    display: inline-flex;
    background: rgba(1, 24, 22, 0.85);
    border: 1px solid rgba(235, 180, 44, 0.35);
    padding: 6px;
    border-radius: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.glass-tab-btn {
    position: relative;
    z-index: 5;
    background: transparent;
    border: none;
    color: #CFC7B6;
    font-family: var(--font-sans, 'Manrope', sans-serif);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    cursor: pointer;
    transition: color 0.35s ease;
    white-space: nowrap;
    outline: none;
}

.glass-tab-btn.active {
    color: #011a18;
    font-weight: 700;
}

.glass-tab-slider {
    position: absolute;
    top: 6px;
    bottom: 6px;
    z-index: 2;
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    border-radius: 30px;
    box-shadow: 0 4px 18px rgba(235, 180, 44, 0.4);
    pointer-events: none;
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1), width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 🌟 CAROUSEL VIEWPORT */
.glass-viewport {
    width: 100%;
    overflow: hidden;
    padding: 20px 15px !important;
    margin: -20px -15px !important;
}

.glass-slider-track {
    display: flex;
    width: 200%;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.glass-panel {
    width: 50%;
    flex-shrink: 0;
    padding: 0 10px !important;
    box-sizing: border-box;
}

/* 🌟 GRID: 3 CARDS TOP (LINE 1) */
.glass-grid.grid-4-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.8rem;
}

.glass-grid.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.8rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* CARDS STYLING */
.glass-capsule-card {
    position: relative;
    background: radial-gradient(135% 100% at 50% 0%, rgba(2, 45, 41, 0.85) 0%, rgba(1, 24, 22, 0.95) 100%);
    border: 1px solid rgba(235, 180, 44, 0.3);
    border-radius: 22px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-capsule-card:hover {
    border-color: #ebb42c;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(235, 180, 44, 0.25);
}

.flagship-capsule {
    background: radial-gradient(135% 100% at 50% 0%, rgba(3, 58, 53, 0.9) 0%, rgba(1, 20, 18, 0.96) 100%);
    border: 1.5px solid #ebb42c !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55), 0 0 20px rgba(235, 180, 44, 0.15);
}

.glass-flagship-badge {
    align-self: center;
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    color: #011a18;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 0.38rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    text-align: center;
}

/* 🌟 4TH CARD HORIZONTAL LAYOUT (LEFT DETAILS, RIGHT PRICE & CTA) */
.glass-grid.grid-4-col > .glass-capsule-card.ring-banner-card {
    grid-column: 1 / -1 !important; /* Full width spanning all 3 columns */
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 2.2rem 3rem;
}

.ring-banner-card .card-left-group {
    flex: 1;
}

.ring-banner-card .glass-card-top {
    margin-bottom: 0.8rem;
}

.ring-banner-card .glass-features {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns for Features */
    gap: 0.6rem 2rem;
}

.ring-banner-card .card-right-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    min-width: 240px;
}

.ring-banner-card .glass-single-price {
    margin-bottom: 0;
    width: 100%;
}

/* TYPOGRAPHY & PRICING */
.glass-tag {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    color: #CFC7B6;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.glass-tag.gold { color: #ebb42c; }

.glass-title {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.7rem;
    font-weight: 400;
    color: #F5F1E8;
    line-height: 1.15;
    margin-bottom: 0.4rem;
}

.glass-desc {
    font-size: 0.8rem;
    color: #CFC7B6;
    line-height: 1.45;
}

.glass-price-num {
    font-family: 'Cinzel', serif !important;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ebb42c;
    font-variant-numeric: tabular-nums;
}

.glass-price-num.lg { font-size: 1.4rem; }
.glass-price-num.xl { font-size: 1.5rem; }

.glass-price-stack, .glass-split-price, .glass-single-price {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(235, 180, 44, 0.15);
}

.glass-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    font-size: 0.8rem;
    color: #CFC7B6;
}

.glass-split-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glass-split-col { display: flex; flex-direction: column; }

.glass-split-title {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: #CFC7B6;
    margin-bottom: 0.2rem;
}

.glass-v-divider {
    width: 1px;
    height: 30px;
    background: rgba(235, 180, 44, 0.2);
}

.glass-footnote {
    font-size: 0.7rem;
    font-style: italic;
    color: #CFC7B6;
    margin-bottom: 1rem;
}

.glass-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.glass-features li {
    font-size: 0.82rem;
    color: #F5F1E8;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.glass-bullet {
    color: #ebb42c;
    font-size: 0.65rem;
    position: relative;
    top: 2px;
}

/* 🌟 NAVBAR "BOOK YOUR STORY" CTA BUTTON STYLE & SHINE SWEEP */
.glass-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1.4rem;
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    color: #011a18 !important; /* Always readable dark text */
    font-family: var(--font-sans, 'Manrope', sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(235, 180, 44, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.glass-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 180, 44, 0.5);
    background: linear-gradient(135deg, #fcd05b 0%, #ebb42c 100%);
    color: #011a18 !important;
}

.glass-btn:hover::before {
    left: 100%;
}

/* PR & COMMERCIALS SPECIFIC (NO PRICE, DIRECT CTA) */
.pr-commercial-card .glass-single-price,
.pr-commercial-card .glass-price-stack,
.pr-commercial-card .glass-split-price {
    display: none !important;
}

.pr-commercial-card .glass-btn {
    margin-top: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .glass-grid.grid-4-col,
    .glass-grid.grid-3-col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .glass-grid.grid-4-col > .glass-capsule-card.ring-banner-card {
        grid-column: span 2 !important;
        flex-direction: column !important;
        padding: 2rem 1.5rem;
    }

    .ring-banner-card .card-right-group {
        width: 100%;
        align-items: center;
    }
    
    .ring-banner-card .glass-btn {
        width: 100% !important;
    }
}

@media (max-width: 650px) {
    .glass-grid.grid-4-col,
    .glass-grid.grid-3-col {
        grid-template-columns: 1fr !important;
    }
    .glass-grid.grid-4-col > .glass-capsule-card.ring-banner-card {
        grid-column: span 1 !important;
    }
    .ring-banner-card .glass-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FLOATING HORIZONTAL TIMELINE WITH GLOWING PROGRESS BAR
   ========================================================================== */

.planning-timeline-section {
    position: relative;
    z-index: 5;
    background: radial-gradient(100% 100% at 50% 0%, rgba(2, 45, 41, 0.6) 0%, rgba(1, 24, 22, 1) 100%);
    overflow: hidden;
}

.horizontal-timeline-container {
    max-width: 1350px;
    margin: 3.5rem auto 0 auto;
    padding: 2.5rem 2rem;
    position: relative;
    background: rgba(1, 30, 27, 0.65);
    border: 1px solid rgba(235, 180, 44, 0.25);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* 🌟 PROGRESS BAR TRACK (BEHIND NODES) */
/* 🌟 PROGRESS BAR TRACK (PERFECTLY CENTERED IN CIRCULAR NODES) */
.timeline-progress-track {
    position: absolute;
    top: 4.3rem; /* Adjusted to pass exactly through the middle of circle nodes */
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(235, 180, 44, 0.2);
    border-radius: 10px;
    z-index: 1; /* Sits behind circle nodes */
}

.timeline-progress-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #ebb42c 0%, #fcd05b 50%, #ebb42c 100%);
    box-shadow: 0 0 12px rgba(235, 180, 44, 0.8), 0 0 20px rgba(235, 180, 44, 0.4);
    border-radius: 10px;
    animation: progressGlow 3s infinite alternate;
}

/* Ensure Circles Stay Above Progress Line */
.timeline-node-wrapper {
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 3; /* Keeps nodes above the line */
}

.timeline-node-circle {
    position: relative;
    z-index: 4;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #011a18; /* Solid dark background so line doesn't show inside circle */
    border: 2px solid #ebb42c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ebb42c;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(235, 180, 44, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

@keyframes progressGlow {
    0% { opacity: 0.7; box-shadow: 0 0 8px rgba(235, 180, 44, 0.5); }
    100% { opacity: 1; box-shadow: 0 0 18px rgba(235, 180, 44, 0.9); }
}

/* 🌟 TIMELINE STEPS GRID */
.horizontal-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.timeline-card-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* NODE CIRCLE */
.timeline-node-wrapper {
    margin-bottom: 1.8rem;
    position: relative;
}

.timeline-node-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #011a18;
    border: 2px solid #ebb42c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ebb42c;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(235, 180, 44, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.timeline-card-step:hover .timeline-node-circle {
    transform: scale(1.15);
    background: linear-gradient(135deg, #ebb42c 0%, #c99318 100%);
    color: #011a18;
    box-shadow: 0 0 25px rgba(235, 180, 44, 0.8);
}

/* FLOATING STEP CARD CONTENT */
.timeline-card-content {
    background: rgba(1, 24, 22, 0.85);
    border: 1px solid rgba(235, 180, 44, 0.2);
    border-radius: 20px;
    padding: 1.6rem 1.3rem;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-card-step:hover .timeline-card-content {
    border-color: #ebb42c;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(235, 180, 44, 0.2);
    background: rgba(2, 38, 35, 0.9);
}

.timeline-step-tag {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: #ebb42c;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.timeline-title {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: #F5F1E8;
    margin-bottom: 0.6rem;
    line-height: 1.25;
}

.timeline-desc {
    font-size: 0.78rem;
    color: #CFC7B6;
    line-height: 1.5;
    margin: 0;
}

/* 🌟 RESPONSIVE (MOBILE & TABLET STACK) */
@media (max-width: 992px) {
    .horizontal-timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .timeline-progress-track {
        display: none; /* Hide horizontal track on vertical grid */
    }
}

@media (max-width: 600px) {
    .horizontal-timeline-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PORTFOLIO - PURE AUTOMATIC UN-CROPPED MASONRY GRID (INTERNAL SCROLL)
   ========================================================================== */

.portfolio-page-section {
    padding-top: 1rem !important;
    position: relative;
    z-index: 5;
}

.editorial-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 🌟 GOLDEN CONTAINER FRAME */
.gallery-gold-container {
    position: relative;
    width: 100%;
    border: 1px solid rgba(235, 180, 44, 0.45);
    border-radius: 18px;
    background: rgba(1, 20, 18, 0.65);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 
                inset 0 0 20px rgba(235, 180, 44, 0.08);
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    overflow: hidden;
    box-sizing: border-box;
}

/* 🌟 STRICT INTERNAL SCROLL BOX (540px Height) */
.gallery-scroll-inner {
    height: 540px;
    max-height: 540px;
    overflow-y: scroll;
    overflow-x: hidden;
    overscroll-behavior: contain;
    padding: 1.2rem;
    box-sizing: border-box;
}

/* Gold Styled Scrollbar */
.gallery-scroll-inner::-webkit-scrollbar {
    width: 6px;
}
.gallery-scroll-inner::-webkit-scrollbar-track {
    background: rgba(1, 24, 22, 0.9);
    border-radius: 10px;
}
.gallery-scroll-inner::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ebb42c 0%, #a87611 100%);
    border-radius: 10px;
}

/* 🌟 PURE MASONRY COLUMN LAYOUT (AUTO HEIGHT & NO CROPPING) */
.editorial-masonry-grid {
    column-count: 3;             /* 3 Columns Layout */
    column-gap: 1.2rem;           /* Gap between columns */
    width: 100%;
}

.masonry-card {
    break-inside: avoid;         /* Card ko beech mein split hone se rokta hai */
    margin-bottom: 1.2rem;       /* Vertical space between stacked photos */
    display: inline-block;
    width: 100%;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Inner Photo Frame */
.masonry-media-frame {
    width: 100%;
    height: auto;
    position: relative;
    border: 1px solid rgba(235, 180, 44, 0.25);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(1, 24, 22, 0.85);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* 🌟 NATURAL IMAGE FITTING (NO CROP) */
.masonry-media-frame img {
    width: 100%;
    height: auto;                /* Auto-detects image's original ratio */
    display: block;
    object-fit: contain;         /* Zero Cropping! Shows full photo */
    transition: transform 0.5s ease;
}

/* Hover Zoom */
.masonry-card:hover .masonry-media-frame {
    border-color: rgba(235, 180, 44, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.masonry-card:hover .masonry-media-frame img {
    transform: scale(1.03);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 950px) {
    .editorial-masonry-grid {
        column-count: 2;         /* 2 Columns on Tablet */
    }
}

@media (max-width: 600px) {
    .editorial-masonry-grid {
        column-count: 1;         /* 1 Column on Mobile */
    }
    .gallery-scroll-inner {
        height: 460px;
    }
}

/* ==========================================================================
   CONCEPT 1: THE PERSONAL LETTER & REALISTIC WAX SEAL CONTACT SECTION
   ========================================================================== */

.contact-letter-section {
    padding-top: 1.5rem !important;
    position: relative;
    z-index: 5;
}

/* Glass Parchment Container */
.letter-parchment-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto 3.5rem auto;
    padding: 3.5rem 4rem;
    background: rgba(1, 22, 19, 0.75);
    border: 1px solid rgba(235, 180, 44, 0.4);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 
                inset 0 0 30px rgba(235, 180, 44, 0.06);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

/* Decorative Gold Frame Corners */
.letter-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: rgba(235, 180, 44, 0.7);
    border-style: solid;
    pointer-events: none;
}
.letter-corner.top-left { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
.letter-corner.top-right { top: 16px; right: 16px; border-width: 2px 2px 0 0; }
.letter-corner.bottom-left { bottom: 16px; left: 16px; border-width: 0 0 2px 2px; }
.letter-corner.bottom-right { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

.letter-header {
    margin-bottom: 2rem;
}

.letter-salutation {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: #ebb42c;
    letter-spacing: 1px;
}

/* Handwritten Letter Body Paragraphs (Original Font Restored) */
.letter-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    line-height: 2.2;
    color: rgba(245, 240, 230, 0.9);
    margin-bottom: 1.5rem;
}

/* Inline Input Underlines */
.inline-input-wrapper {
    display: inline-block;
    position: relative;
    margin: 0 4px;
}

.inline-input {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(235, 180, 44, 0.6);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-style: italic;
    font-variant-numeric: lining-nums tabular-nums; /* Align numbers evenly on baseline */
    color: #ebb42c;
    padding: 2px 8px;
    outline: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

/* Specific Formatting for Phone & Date inputs to prevent number misalignments */
.inline-input.date-input {
    min-width: 160px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-style: normal;
}

.inline-input.phone-input {
    min-width: 200px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-style: normal;
}

.inline-input::placeholder {
    color: rgba(235, 180, 44, 0.4);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.inline-input:focus {
    border-bottom-color: #ebb42c;
    background: rgba(235, 180, 44, 0.06);
    box-shadow: 0 4px 12px rgba(235, 180, 44, 0.15);
}

/* Selection Block (Vibe Radios) */
.letter-selection-block,
.letter-textarea-block {
    margin: 2rem 0;
}

.letter-sub-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(235, 180, 44, 0.8);
    margin-bottom: 1rem;
}

.vibe-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vibe-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: rgba(245, 240, 230, 0.85);
    transition: color 0.3s ease;
}

.vibe-radio-label input {
    display: none;
}

.custom-radio {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(235, 180, 44, 0.6);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.vibe-radio-label input:checked + .custom-radio {
    border-color: #ebb42c;
    box-shadow: 0 0 10px rgba(235, 180, 44, 0.4);
}

.vibe-radio-label input:checked + .custom-radio::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: #ebb42c;
    border-radius: 50%;
}

.vibe-radio-label:hover {
    color: #ebb42c;
}

/* Letter Textarea */
.letter-textarea {
    width: 100%;
    background: rgba(1, 15, 13, 0.5);
    border: 1px solid rgba(235, 180, 44, 0.3);
    border-radius: 10px;
    padding: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: rgba(245, 240, 230, 0.9);
    outline: none;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.letter-textarea:focus {
    border-color: #ebb42c;
    box-shadow: 0 0 15px rgba(235, 180, 44, 0.15);
}

/* ==========================================================================
   AUTHENTIC ORGANIC 3D WAX SEAL BUTTON
   ========================================================================== */

.wax-seal-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

.wax-seal-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Irregular Organic Melted Wax Edges */
.wax-seal-outer {
    width: 105px;
    height: 105px;
    border-radius: 48% 52% 45% 55% / 53% 47% 53% 47%;
    background: radial-gradient(circle at 30% 30%, #e8a838 0%, #b87b14 45%, #6e4402 100%);
    padding: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8), 
                0 2px 6px rgba(0, 0, 0, 0.5),
                inset 0 3px 5px rgba(255, 255, 255, 0.3),
                inset 0 -4px 8px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    position: relative;
}

/* Pressed Metallic Inner Monogram Ring */
.wax-seal-inner {
    width: 100%;
    height: 100%;
    border-radius: 46% 54% 48% 52% / 50% 48% 52% 50%;
    background: radial-gradient(circle at 40% 40%, #2e1e02 0%, #170f01 100%);
    border: 2px solid rgba(235, 180, 44, 0.6);
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.95), 
                0 1px 2px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wax-monogram {
    font-family: 'Cinzel', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #ebb42c;
    letter-spacing: 2px;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.9), 0 -1px 1px rgba(255, 220, 120, 0.3);
}

.wax-ring-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.52rem;
    letter-spacing: 1.5px;
    color: rgba(235, 180, 44, 0.85);
    margin-top: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9);
}

.wax-seal-btn:hover {
    transform: scale(1.06) translateY(-3px);
}

.wax-seal-btn:hover .wax-seal-outer {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 
                0 0 25px rgba(235, 180, 44, 0.4);
}

.wax-seal-btn:active {
    transform: scale(0.93) translateY(2px);
}

.seal-instruction {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgba(235, 180, 44, 0.7);
    margin-top: 1.2rem;
}

/* SUCCESS OVERLAY */
.letter-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 18, 16, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 10;
}

.letter-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #ebb42c;
    margin-bottom: 1rem;
}

.success-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(245, 240, 230, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.gold-signature {
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: #ebb42c;
}

/* DIRECT CONTACT CARDS */
.direct-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.contact-info-card {
    background: rgba(1, 20, 18, 0.5);
    border: 1px solid rgba(235, 180, 44, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(235, 180, 44, 0.6);
}

.info-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(235, 180, 44, 0.7);
    margin-bottom: 0.5rem;
}

.info-value {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: rgba(245, 240, 230, 0.95);
    text-decoration: none;
    font-variant-numeric: lining-nums;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .letter-parchment-card {
        padding: 2.5rem 1.8rem;
    }
    .letter-body {
        font-size: 1.25rem;
    }
    .inline-input {
        min-width: 130px;
        font-size: 1.2rem;
    }
    .direct-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ULTRA-PREMIUM CLASSY SUCCESS POPUP MODAL (OLD MONEY AESTHETIC)
   ========================================================================== */

.luxury-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 10, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 1.5rem;
}

/* Modal Open State */
.luxury-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Modal Card */
.luxury-modal-card {
    position: relative;
    max-width: 520px;
    width: 100%;
    background: linear-gradient(145deg, rgba(1, 26, 23, 0.95) 0%, rgba(1, 15, 13, 0.98) 100%);
    border: 1px solid rgba(235, 180, 44, 0.5);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 
                inset 0 0 25px rgba(235, 180, 44, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.luxury-modal-overlay.active .luxury-modal-card {
    transform: scale(1) translateY(0);
}

/* Modal Monogram Gold Crest */
.modal-gold-crest {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #e8a838 0%, #b87b14 50%, #523302 100%);
    padding: 2px;
    box-shadow: 0 0 20px rgba(235, 180, 44, 0.4);
}

.crest-monogram {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #120c01;
    border: 1px dashed rgba(235, 180, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ebb42c;
}

.modal-badge {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #ebb42c;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.modal-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(245, 240, 230, 0.85);
    margin-bottom: 1.8rem;
}

.modal-desc strong {
    color: #ebb42c;
    font-weight: 600;
}

.modal-divider {
    width: 60px;
    height: 1px;
    background: rgba(235, 180, 44, 0.4);
    margin: 0 auto 1.8rem auto;
}

/* Elegant Close Button */
.modal-close-btn {
    background: transparent;
    border: 1px solid rgba(235, 180, 44, 0.6);
    color: #ebb42c;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #ebb42c;
    color: #011412;
    box-shadow: 0 0 20px rgba(235, 180, 44, 0.4);
}

/* ==========================================================================
   ULTRA-PREMIUM OLD MONEY ESTATE FOOTER STYLES
   ========================================================================== */

.luxury-footer {
    position: relative;
    background: linear-gradient(180deg, rgba(1, 22, 19, 0.95) 0%, rgba(0, 12, 10, 1) 100%);
    border-top: 1px solid rgba(235, 180, 44, 0.25);
    padding-top: 3.5rem;
    color: rgba(245, 240, 230, 0.85);
    z-index: 10;
}

/* ==========================================================================
   ENHANCED FOOLTER CREST: EMBOSSED ROYAL STAMP
   ========================================================================== */

.footer-top-divider {
    position: absolute;
    top: -24px; /* Slightly raised for gravity */
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.footer-gold-crest {
    width: 48px; /* Slightly larger for presence */
    height: 48px;
    border-radius: 50%;
    /* 3D realistic stamp gradient texture */
    background: radial-gradient(circle at 40% 40%, rgba(243, 202, 101, 1) 0%, rgba(201, 147, 24, 1) 50%, rgba(138, 96, 3, 1) 100%);
    border: 2px solid #ebb42c;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Soft glowing aura shadow */
    box-shadow: 0 0 18px rgba(235, 180, 44, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* Internal crest embossed details */
.footer-gold-crest::before {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(26, 19, 3, 1) 0%, rgba(12, 10, 1, 1) 100%);
    border: 1px dashed rgba(235, 180, 44, 0.6);
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.9);
}

.crest-symbol {
    position: relative;
    font-family: 'Cinzel', serif; /* Keep royal serif */
    font-size: 1.05rem; /* Better scale */
    font-weight: 700;
    color: #ebb42c;
    /* Realistic embossed shadow */
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.9), 1px 1px 1px rgba(255, 220, 120, 0.4);
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Subtle texture overlay for paper feel */
.luxury-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/grain.png'); /* Light textured grain needed */
    opacity: 0.03;
    pointer-events: none;
}

/* Main Footer Grid */
.footer-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3.5rem 2rem;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
}

/* Brand Column */
.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 1.2rem;
}

.footer-monogram-img {
    height: 36px;
    width: auto;
    filter: brightness(1.1) drop-shadow(0 0 5px rgba(235, 180, 44, 0.3));
}

.footer-brand-logo .brand-text {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    letter-spacing: 2px;
    color: #ffffff;
}

.footer-brand-logo .brand-text em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #ebb42c;
}

.brand-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(245, 240, 230, 0.7);
    max-width: 320px;
}

/* Section Headings */
.footer-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ebb42c;
    margin-bottom: 1.5rem;
}

/* Footer Navigation Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(245, 240, 230, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ebb42c;
    padding-left: 4px;
}

/* Private Inquiries Column */
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: rgba(245, 240, 230, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link.phone-num {
    font-variant-numeric: lining-nums;
}

.contact-link:hover {
    color: #ebb42c;
}

.location-badge {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(235, 180, 44, 0.7);
    margin-top: 0.4rem;
}

/* ==========================================================================
   FOOTER BOTTOM BAR (LEFT COPYRIGHT & RIGHT DEVELOPER CREDIT)
   ========================================================================== */

.footer-bottom-bar {
    border-top: 1px solid rgba(235, 180, 44, 0.15);
    background: rgba(0, 8, 6, 0.9);
    padding: 1.2rem 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: rgba(245, 240, 230, 0.5);
    margin: 0;
}

.developer-credit {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: rgba(245, 240, 230, 0.65);
    margin: 0;
}

/* High-Highlight Gold Link for Developer */
.developer-gold-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ebb42c;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 2px;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.developer-gold-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ebb42c;
    box-shadow: 0 0 8px rgba(235, 180, 44, 0.6);
    transition: width 0.3s ease;
}

.developer-gold-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(235, 180, 44, 0.6);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand-logo {
        justify-content: center;
    }
    .brand-tagline {
        margin: 0 auto;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

/* ==========================================================================
   FOUNDER LETTER INTEGRATED SKILLS SUB-BLOCK
   ========================================================================== */

.founder-skills-subblock {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(235, 180, 44, 0.25);
}

.skills-sub-heading {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    color: #ebb42c;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.integrated-skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.compact-skill-card {
    text-align: center;
}

.compact-skill-card .progress-circle-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 0.6rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-skill-card .progress-ring-bg {
    fill: transparent;
    stroke: rgba(235, 180, 44, 0.12);
    stroke-width: 6;
}

.compact-skill-card .progress-ring-fill {
    fill: transparent;
    stroke: #ebb42c;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 263.89; /* 2 * PI * 42 */
    stroke-dashoffset: 263.89;
    transition: stroke-dashoffset 2s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(0 0 5px rgba(235, 180, 44, 0.4));
}

.compact-skill-card .percentage-display {
    position: absolute;
    display: flex;
    align-items: baseline;
    font-family: 'Cinzel', serif;
    color: #ebb42c;
}

.compact-skill-card .percentage-display .num {
    font-size: 1.45rem;
    font-weight: 700;
}

.compact-skill-card .percentage-display .percent-symbol {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-style: italic;
}

.skill-name {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: rgba(245, 240, 230, 0.9);
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 768px) {
    .integrated-skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

/* ==========================================================================
   FOUNDER NOTE: PERFECT COMPACT PORTRAIT & CLEAN LETTER LAYOUT
   ========================================================================== */

/* Main Container Alignment */
.founder-grid-container {
    display: grid;
    grid-template-columns: 340px 1fr; /* Image width strictly capped at 340px */
    gap: 4.5rem;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Photo Column Container */
.founder-portrait-col {
    width: 100%;
}

/* Portrait Frame Styling */
.portrait-frame {
    position: relative;
    width: 100%;
    max-width: 340px; /* Force image to stay compact */
    border-radius: 16px;
    overflow: hidden; /* Perfect rounded corners */
    border: 1px solid rgba(235, 180, 44, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6),
                0 0 15px rgba(235, 180, 44, 0.08);
}

.portrait-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
}

/* Creative Director Badge Positioned At Bottom Left */
.portrait-tag {
    position: absolute;
    bottom: 16px; /* Slightly above the bottom edge */
    left: 16px;   /* Slightly in from the left edge */
    background: rgba(1, 24, 21, 0.85);
    border: 1px solid rgba(235, 180, 44, 0.5);
    padding: 0.45rem 1rem;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.portrait-tag span {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 2px;
    color: #ebb42c;
    font-weight: 600;
    text-transform: uppercase;
}

/* Letter Column Styling */
.founder-letter-content {
    display: flex;
    flex-direction: column;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .founder-grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .portrait-frame {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   INLINE SKILLS STRIP (MAX READABILITY & SHARP CONTRAST)
   ========================================================================== */

.founder-skills-inline {
    margin-top: 1.2rem !important;
    margin-bottom: 2.2rem !important;
    padding: 1.4rem 1.6rem;
    background: rgba(0, 15, 12, 0.75); /* Darker backdrop for higher text contrast */
    border: 1px solid rgba(235, 180, 44, 0.35);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Header Label */
.inline-skills-title {
    display: block;
    font-family: var(--font-sans, 'Manrope', sans-serif);
    font-size: 0.72rem; /* Increased size */
    font-weight: 700;   /* Bold for sharp legibility */
    letter-spacing: 2.5px;
    color: #ebb42c;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.inline-skills-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1rem;
}

.inline-skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
}

/* 80px Circle Wrapper */
.inline-skill-card .progress-circle-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inline-skill-card .progress-ring {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.inline-skill-card .progress-ring-bg {
    fill: transparent;
    stroke: rgba(235, 180, 44, 0.2);
    stroke-width: 5;
}

.inline-skill-card .progress-ring-fill {
    fill: transparent;
    stroke: #ebb42c;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 201.06; /* 2 * PI * 32 = 201.06px */
    stroke-dashoffset: 201.06;
    
    transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    filter: drop-shadow(0 0 6px rgba(235, 180, 44, 0.5));
}

/* 🌟 BOLDER & SHARPER NUMBERS */
.inline-skill-card .percentage-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.inline-skill-card .percentage-display .num {
    font-family: var(--font-sans, 'Manrope', sans-serif);
    font-size: 1.2rem; /* Crisp, readable size */
    font-weight: 800;   /* Extra Bold */
    color: #ffffff;    /* Pure White for maximum contrast against green */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.inline-skill-card .percentage-display .percent-symbol {
    font-family: var(--font-sans, 'Manrope', sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    color: #ebb42c;    /* Gold Percent Symbol */
    margin-left: 1px;
}

/* 🌟 CLEAR SKILL NAME */
.inline-skill-card .skill-name {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 0.82rem; /* Larger text size */
    font-weight: 600;   /* Bold weight */
    color: #f5f0e6;     /* High readability warm white */
    letter-spacing: 1.2px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .inline-skills-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }
}


/* ==========================================================================
   FOUNDER SIGNATURE BLOCK
   ========================================================================== */

.founder-signature-block {
    text-align: right;
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.signature-img {
    width: 170px;
    height: auto;
    transform: translateY(-4px);
    margin-bottom: 2px;
    filter: drop-shadow(0 2px 6px rgba(235, 180, 44, 0.25));
    display: block;
}

.printed-name {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 1.15rem;
    color: var(--accent-gold, #ebb42c);
    letter-spacing: 0.04em;
    font-weight: 400;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.signature-title {
    font-family: var(--font-sans, 'Manrope', sans-serif);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-secondary, rgba(245, 240, 230, 0.6));
    text-transform: uppercase;
    margin: 0 !important;
    margin-top: 4px !important;
    line-height: 1.2 !important;
}

/* ==========================================================================
   100% SEAMLESS CONTINUOUS MARQUEE (NO GAPS / NEVER ENDS)
   ========================================================================== */

.brand-marquee-section {
    padding: 3rem 0;
    background: rgba(0, 15, 12, 0.6);
    border-top: 1px solid rgba(235, 180, 44, 0.15);
    border-bottom: 1px solid rgba(235, 180, 44, 0.15);
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Full bleed alignment */
}

.marquee-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.marquee-title {
    font-family: var(--font-sans, 'Manrope', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ebb42c;
    text-transform: uppercase;
    opacity: 0.9;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    position: relative;
    width: 100%;
    /* Edge gradients */
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 5rem; /* Gap between logos */
    width: max-content;
    flex-shrink: 0;
    will-change: transform;
    animation: continuousMarquee 20s linear infinite; /* Smooth infinite scroll */
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused; /* Pause on hover */
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    flex-shrink: 0; /* Prevents logos from shrinking */
}

.brand-logo-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(0.85) sepia(0.5) saturate(3) hue-rotate(5deg);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-logo-item:hover .brand-logo-img {
    opacity: 1;
    filter: brightness(1) invert(0);
    transform: scale(1.1);
}

/* 🌟 PERFECT CONTINUOUS LOOP KEYFRAME 🌟 */
@keyframes continuousMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0); /* Moves half of total duplicated width seamlessly */
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .brand-marquee-section {
        padding: 2.2rem 0;
    }
    .marquee-track {
        gap: 3rem;
        animation-duration: 14s;
    }
    .brand-logo-img {
        max-height: 42px;
    }
}

/* ==========================================================================
   CLASSY VINTAGE & LUXURY DATE PICKER STYLING
   ========================================================================== */

/* Date Input Field Custom Styling */
input[type="date"] {
    background: rgba(20, 30, 25, 0.4) !important; /* Dark emerald tint */
    border: 1px solid rgba(235, 180, 44, 0.4) !important; /* Gold border */
    color: #ebb42c !important; /* Royal Gold Text */
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.1rem !important;
    padding: 0.8rem 1rem !important;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    color-scheme: dark; /* Force Chrome/Safari to render dark calendar popup */
    transition: all 0.3s ease;
}

/* Hover & Focus state */
input[type="date"]:focus,
input[type="date"]:hover {
    border-color: #ebb42c !important;
    box-shadow: 0 0 12px rgba(235, 180, 44, 0.25) !important;
    background: rgba(20, 30, 25, 0.7) !important;
}

/* Calendar Gold Icon Customization */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(75%) sepia(85%) saturate(400%) hue-rotate(5deg) brightness(95%);
    cursor: pointer;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ==========================================================================
   FLATPICKR VINTAGE LUXURY CALENDAR (FULL CLEAN THEME & ALIGNED NUMBERS)
   ========================================================================== */

.flatpickr-calendar {
    background: #011815 !important; /* Deep Emerald Green */
    border: 1px solid rgba(235, 180, 44, 0.4) !important; /* Gold Border */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8) !important;
    border-radius: 8px !important;
    font-family: 'Cormorant Garamond', serif !important;
}

/* Header & Month/Year Display */
.flatpickr-months {
    background: rgba(0, 10, 8, 0.6) !important;
    border-bottom: 1px solid rgba(235, 180, 44, 0.2) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #ebb42c !important; /* Gold Text */
    font-family: 'Cinzel', serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

/* Arrows */
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    fill: #ebb42c !important;
}

/* Weekday Labels (Sun, Mon, Tue...) */
span.flatpickr-weekday {
    color: #ebb42c !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

/* 🌟 CALENDAR DATES NUMBERS (PERFECTLY ALIGNED) */
.flatpickr-day {
    color: #f5f0e6 !important; /* Warm Vintage White */
    font-family: 'Manrope', sans-serif !important; /* Clean & uniform baseline numbers */
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    font-variant-numeric: tabular-nums lining-nums !important; /* Fixed width & aligned height */
    line-height: 38px !important; /* Perfectly vertically centered */
    border-radius: 4px !important;
}

.flatpickr-day:hover {
    background: rgba(235, 180, 44, 0.2) !important;
    color: #ebb42c !important;
}

/* Selected Date Box */
.flatpickr-day.selected {
    background: transparent !important;
    border: 1px solid #ebb42c !important; /* Sharp Gold Outline */
    color: #ebb42c !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
}

/* Disabled Past Dates Numbers */
.flatpickr-day.flatpickr-disabled, 
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(255, 255, 255, 0.18) !important;
    text-decoration: line-through !important;
    cursor: not-allowed !important;
}

/* Date Input Placeholder in Form */
.date-input-display::placeholder,
.date-input::placeholder {
    color: rgba(235, 180, 44, 0.55) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    font-size: 1.1rem !important;
}

.date-input-display {
    color: #ebb42c !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(235, 180, 44, 0.5) !important;
    cursor: pointer !important;
}

/* ==========================================================================
   COMPACT TESTIMONIALS CAROUSEL & POPPING DOTS
   ========================================================================== */

.testimonials-section {
    background: rgba(0, 15, 12, 0.7);
    border-top: 1px solid rgba(235, 180, 44, 0.2);
    border-bottom: 1px solid rgba(235, 180, 44, 0.2);
    text-align: center;
    padding: 2.2rem 0 !important;
}

.testimonials-section .marquee-header {
    margin-bottom: 0.8rem !important;
}

/* Slider Mask Box */
.testimonial-slider-container {
    max-width: 750px;
    margin: 1rem auto 0 auto;
    padding: 0 1rem;
    overflow: hidden;
    position: relative;
}

/* Horizontal Track */
.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Smooth 0.8s slide transition */
    width: 100%;
}

/* Individual Card */
.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    background: rgba(1, 24, 21, 0.65);
    border: 1px solid rgba(235, 180, 44, 0.25);
    border-radius: 8px;
    padding: 1.4rem 2rem !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.quote-icon {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #ebb42c;
    line-height: 1;
    margin-bottom: -0.5rem;
    opacity: 0.5;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #f5f0e6;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ebb42c;
    letter-spacing: 1px;
}

.author-tag {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    color: rgba(245, 240, 230, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* 🌟 DYNAMIC DOTS STYLING & POP ANIMATION 🌟 */
.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(235, 180, 44, 0.25);
    border: 1px solid rgba(235, 180, 44, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.t-dot:hover {
    background: rgba(235, 180, 44, 0.6);
}

/* 🌟 Active Dot Pop Effect */
.t-dot.active {
    width: 22px; /* Active dot expands into pill shape */
    border-radius: 10px;
    background: #ebb42c;
    box-shadow: 0 0 10px rgba(235, 180, 44, 0.6);
    transform: scale(1.15); /* Pop effect */
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & FULL BLACK MENU OVERLAY
   ========================================================================== */

@media (max-width: 768px) {

    /* --- 1. HAMBURGER / CROSS TOGGLE ICON --- */
    .mobile-toggle {
        display: block !important;
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 2rem;
        cursor: pointer;
        z-index: 10001 !important; /* Stays above overlay */
        position: relative;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .mobile-toggle.active {
        color: #ebb42c !important; /* Gold cross */
        transform: rotate(90deg);
    }

    /* --- 2. PURE BLACK FULL-SCREEN MENU OVERLAY --- */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #000000 !important; /* Full Black Overlay */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2.2rem !important;
        z-index: 10000 !important;
        margin: 0 !important;
        padding: 0 !important;

        /* Smooth Fade In */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .nav-links.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* --- 3. MENU TEXT (WHITE TO GOLD ON CLICK/HOVER) --- */
    .nav-links li {
        list-style: none;
        margin: 0;
    }

    .nav-links a {
        font-family: 'Cinzel', serif !important;
        font-size: 1.5rem !important;
        letter-spacing: 2px !important;
        color: #ffffff !important; /* Normal White */
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s ease, transform 0.3s ease;
        display: inline-block;
    }

    /* Active / Hover / Click State */
    .nav-links a:hover,
    .nav-links a:active,
    .nav-links a.active {
        color: #ebb42c !important; /* Gold Color */
        transform: scale(1.1);
    }

    /* Hide Header Nav CTA Button on Mobile if interfering */
    .nav-cta {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.75rem !important;
    }

    /* --- 4. HERO SECTION & BUTTONS RESPONSIVENESS FIX --- */
    .hero-title, 
    h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word;
    }

    .hero-subtitle,
    p {
        font-size: 0.95rem !important;
        padding: 0 10px;
    }

    /* Flex Stack for CTA Buttons on Mobile */
    .hero-cta-group,
    .glass-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 1rem !important;
    }

    .btn-gold,
    .glass-btn {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}

/* ==========================================================================
   PERFECT CENTERED TIMELINE TRACK & CIRCLE LOCK (MOBILE)
   ========================================================================== */

@media (max-width: 768px) {

    /* Outer Track Container */
    .tracking-container {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5rem !important;
        padding-left: 0 !important;
    }

    /* Vertical Background Line - Center Aligned exactly behind 52px Circle */
    .tracking-progress-bar {
        position: absolute !important;
        top: 26px !important;
        bottom: 26px !important;
        left: 26px !important; /* Center Math: 52px / 2 = 26px */
        width: 3px !important;
        height: auto !important;
        background: rgba(235, 180, 44, 0.3) !important;
        transform: translateX(-50%) !important; /* Center Axis Lock */
        z-index: 1 !important;
    }

    /* Yellow Animated Fill Line */
    .tracking-progress-fill {
        width: 100% !important;
        height: 0%;
        background: #ebb42c !important;
        box-shadow: 0 0 14px rgba(235, 180, 44, 0.9) !important;
        transition: height 7s linear !important;
    }

    /* Node Row Alignment */
    .tracking-node {
        display: flex !important;
        align-items: flex-start !important;
        gap: 1.5rem !important;
        text-align: left !important;
        position: relative !important;
        z-index: 2 !important;
    }

    /* 52px Circle Centering & Number Visibility */
    .node-circle {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        border-radius: 50% !important;
        background-color: var(--bg-dark-green, #012b28) !important;
        border: 2px solid rgba(235, 180, 44, 0.5) !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        z-index: 3 !important;
    }

    /* Number Styling before line hits */
    .node-circle span {
        font-family: 'Cinzel', serif !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: #ebb42c !important;
        opacity: 1 !important;
        display: block !important;
    }

    /* Step Hit Transformation: Yellow Fill + Checkmark (✓) */
    .tracking-node.completed .node-circle {
        background-color: #ebb42c !important;
        border-color: #ebb42c !important;
        box-shadow: 0 0 18px rgba(235, 180, 44, 0.9) !important;
    }

    .tracking-node.completed .node-circle span {
        opacity: 0 !important;
        display: none !important;
    }

    .tracking-node.completed .node-circle::after {
        content: '✓' !important;
        position: absolute !important;
        font-size: 1.25rem !important;
        font-weight: 900 !important;
        color: #012b28 !important;
        opacity: 1 !important;
        transform: scale(1) rotate(0deg) !important;
    }
}

/* ==========================================================================
   KILLER FIX: STRICT GEOMETRIC CENTER LOCK FOR TIMELINE (HOME PAGE)
   ========================================================================== */

@media (max-width: 768px) {

    /* 1. Parent Reset: Force Left Edge Base */
    .tracking-container,
    .order-timeline-section .tracking-container {
        position: relative !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        width: 100% !important;
    }

    /* 2. Step Row: Strict Left Offset for 52px Circle */
    .tracking-node {
        position: relative !important;
        display: flex !important;
        align-items: flex-start !important;
        padding-left: 70px !important; /* Reserve exact space for circle + gap */
        margin-left: 0 !important;
        margin-bottom: 2.5rem !important;
    }

    /* 3. Circle: Absolute Lock on Left Edge (0px to 52px) */
    .tracking-node .node-circle {
        position: absolute !important;
        left: 0 !important; /* Circle starts exactly at 0px */
        top: 0 !important;
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        border-radius: 50% !important;
        background-color: #012b28 !important;
        border: 2px solid #ebb42c !important;
        z-index: 3 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* 4. Vertical Line: Locked Exactly at 26px (52px / 2 = Center Math) */
    .tracking-progress-bar {
        position: absolute !important;
        left: 26px !important; /* Perfect Geometric Center */
        top: 26px !important;
        bottom: 26px !important;
        width: 3px !important;
        height: auto !important;
        background: rgba(235, 180, 44, 0.3) !important;
        transform: translateX(-50%) !important; /* Center Alignment Lock */
        z-index: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .tracking-progress-fill {
        width: 100% !important;
        background: #ebb42c !important;
        box-shadow: 0 0 12px rgba(235, 180, 44, 0.9) !important;
    }
}

/* ==========================================================================
   DESKTOP TIMELINE FILL LINE FIX (GLOBAL & DESKTOP)
   ========================================================================== */

/* Tracking Progress Track Outer Bar */
.tracking-progress-bar,
.timeline-progress-track {
    background: rgba(235, 180, 44, 0.25) !important;
}

/* Yellow Fill Animation Line on Desktop */
.tracking-progress-fill,
.timeline-progress-fill {
    height: 100% !important;
    background: #ebb42c !important;
    box-shadow: 0 0 15px rgba(235, 180, 44, 0.9) !important;
    will-change: width, height;
}

/* Ensure checkmark is centered inside completed desktop circles */
.tracking-node.completed .node-circle,
.timeline-card-step.completed .timeline-node-circle {
    background-color: #ebb42c !important;
    border-color: #ebb42c !important;
    color: #012b28 !important;
    box-shadow: 0 0 18px rgba(235, 180, 44, 0.9) !important;
}

/* ==========================================================================
   MOBILE NAVBAR FIX: HIDE CTA BUTTON & SHOW HAMBURGER ICON
   ========================================================================== */

@media (max-width: 768px) {

    /* 1. Mobile par 'Book Your Story' CTA Button ko complete Hide karo */
    .nav-cta,
    .navbar .glass-btn,
    .navbar .btn-gold {
        display: none !important;
    }

    /* 2. Brand Logo & Text Margin Balance */
    .brand-logo-wrapper {
        max-width: 70% !important;
    }

    .brand-logo {
        font-size: 1rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* 3. Hamburger Menu Icon Always Visible & Right-Aligned */
    .mobile-toggle {
        display: block !important;
        background: transparent !important;
        border: none !important;
        color: #ebb42c !important; /* Gold Icon Color */
        font-size: 2rem !important;
        cursor: pointer !important;
        z-index: 100000 !important; /* Stays above header layers */
        position: relative !important;
        padding: 0 5px !important;
        line-height: 1 !important;
        margin-left: auto !important; /* Right side push */
    }
}

/* ==========================================================================
   PROGRESS BAR ANIMATION FIX (INITIAL HEIGHT 0%)
   ========================================================================== */

/* Mobile Progress Fill Default State: Zero Height */
@media (max-width: 768px) {
    .tracking-progress-fill,
    .timeline-progress-fill {
        width: 3px !important;
        height: 0% !important; /* Starts empty */
        background: #ebb42c !important;
        box-shadow: 0 0 12px rgba(235, 180, 44, 0.9) !important;
        transition: height 5s linear !important; /* Smooth 5-Second Linear Fill */
        will-change: height;
    }
}

/* Desktop Progress Fill Default State: Zero Width */
@media (min-width: 769px) {
    .tracking-progress-fill,
    .timeline-progress-fill {
        height: 100% !important;
        width: 0% !important; /* Starts empty */
        background: #ebb42c !important;
        box-shadow: 0 0 15px rgba(235, 180, 44, 0.9) !important;
        transition: width 5s linear !important; /* Smooth 5-Second Linear Fill */
        will-change: width;
    }
}

/* ==========================================================================
   ONLY HERO/CTA BUTTON SLEEK & SINGLE LINE FIX (UPAR KA CONTENT UNTOUCHED)
   ========================================================================== */

@media (max-width: 768px) {

    /* Sleek, Single-Line Compact Button Fix */
    .btn-gold,
    .btn-outline,
    .glass-btn,
    .hero-cta-group a,
    .cta-button-wrapper a {
        display: inline-block !important;
        width: 100% !important;
        max-width: 100% !important;
        
        /* Text ko ek line me lock karne ke liye */
        white-space: nowrap !important;
        
        /* Sleek Font Size & Spacing for Mobile */
        font-size: 0.78rem !important; /* Perfect fit on mobile screens */
        letter-spacing: 1px !important;
        text-align: center !important;
        
        /* Reduced Height (Mota Height Fix) */
        padding: 0.75rem 0.8rem !important; /* Top/Bottom padding kam kar di */
        line-height: 1.2 !important;
        
        box-sizing: border-box !important;
    }

}

/* ==========================================================================
   PACKAGES SECTION PERFECT MOBILE LAYOUT & SPECIFIC FIXES
   ========================================================================== */

@media (max-width: 768px) {

    /* --- 1. SLEEK TOUCH-SCROLL TABS --- */
    .glass-tab-wrapper,
    .tab-switcher-wrapper,
    .om-tab-wrapper {
        width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
        margin-bottom: 2rem !important;
    }

    .glass-tab-pill,
    .tab-pill-container,
    .om-tab-pill {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        background: rgba(1, 24, 21, 0.85) !important;
        border: 1px solid rgba(235, 180, 44, 0.3) !important;
        border-radius: 30px !important;
        padding: 4px !important;
        gap: 6px !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        justify-content: flex-start !important;
        box-sizing: border-box !important;
        scrollbar-width: none !important;
    }

    .glass-tab-pill::-webkit-scrollbar,
    .tab-pill-container::-webkit-scrollbar,
    .om-tab-pill::-webkit-scrollbar {
        display: none !important;
    }

    .glass-tab-btn,
    .tab-btn,
    .om-tab-btn {
        flex: 0 0 auto !important;
        padding: 0.65rem 1.1rem !important;
        font-family: 'Cinzel', serif !important;
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
        border-radius: 20px !important;
        white-space: nowrap !important;
    }

    /* --- 2. CARDS & GRID BREATHABILITY --- */
    .glass-services-section,
    .luxury-packages-section {
        padding: 2.5rem 0.8rem !important;
    }

    .glass-grid,
    .luxury-packages-grid,
    .om-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.8rem !important;
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .glass-capsule-card,
    .luxury-card,
    .om-luxury-card,
    .om-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.8rem 1.3rem !important;
        box-sizing: border-box !important;
        border-radius: 18px !important;
        margin: 0 !important;
    }

    /* --- 3. FIX 1: 1 DAY SHOOT UPAR & PRICE NEECHE --- */
    .glass-price-row,
    .om-price-row,
    .price-row {
        display: flex !important;
        flex-direction: column !important; /* Stack label above price */
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 0.2rem !important;
        padding: 0.5rem 0 !important;
        border-bottom: 1px solid rgba(235, 180, 44, 0.15) !important;
    }

    .glass-price-row:last-child,
    .om-price-row:last-child,
    .price-row:last-child {
        border-bottom: none !important;
    }

    /* --- 4. SPLIT PRICE STACKING (ONE SIDE / BOTH SIDES) --- */
    .glass-split-price,
    .pricing-split-box,
    .om-tier-box,
    .om-split-price {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        padding: 1rem 0.8rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: rgba(0, 0, 0, 0.4) !important;
        border: 1px solid rgba(235, 180, 44, 0.25) !important;
        border-radius: 12px !important;
    }

    .glass-split-col,
    .split-col,
    .om-tier-col,
    .om-split-col {
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .glass-v-divider,
    .split-line,
    .om-tier-line,
    .om-v-line {
        display: none !important;
    }

    .glass-split-col:first-child,
    .split-col:first-child,
    .om-tier-col:first-child,
    .om-split-col:first-child {
        border-bottom: 1px solid rgba(235, 180, 44, 0.2) !important;
        padding-bottom: 0.6rem !important;
    }

    /* --- 5. FIX 3: RING CEREMONY PRICE LOCK --- */
    .glass-single-price,
    .pricing-single-box,
    .om-single-price {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.3rem !important;
        padding: 0.9rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: rgba(0, 0, 0, 0.35) !important;
        border-radius: 12px !important;
    }

    .glass-price-num,
    .price-amount,
    .om-price-num,
    .om-num {
        display: block !important;
        font-size: 1.25rem !important;
        color: #ebb42c !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    /* --- 6. FIX 2: BUTTON OVERFLOW FIX --- */
    .glass-capsule-card .glass-btn,
    .luxury-card .btn-card-primary,
    .om-luxury-card .om-btn,
    .glass-capsule-card button,
    .glass-capsule-card a.glass-btn {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.75rem 0.5rem !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.5px !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-top: 1.2rem !important;
    }
}

/* ==========================================================================
   FINAL RING CEREMONY FIX (ZERO CUT TEXT, PERFECT GLASS & BORDER FIT)
   ========================================================================== */

@media (max-width: 768px) {

    /* 1. Main Outer Card Boundary Lock */
    .glass-capsule-card.ring-banner-card,
    .ring-banner-card {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem 1rem !important; /* Breathable inner space */
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .ring-banner-card .card-left-group,
    .ring-banner-card .card-right-group {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    /* 2. Floating Glass Price Box */
    .ring-banner-card .glass-single-price,
    .ring-banner-card .pricing-single-box,
    .ring-banner-card .card-right-group > div {
        width: 100% !important;
        max-width: 100% !important;
        margin: 1.2rem 0 !important;
        padding: 1.1rem 0.5rem !important;
        box-sizing: border-box !important;
        
        /* Restored Translucent Glass & Subtle Gold Shine */
        background: linear-gradient(135deg, rgba(235, 180, 44, 0.12) 0%, rgba(1, 34, 32, 0.75) 100%) !important;
        border: 1px solid rgba(235, 180, 44, 0.35) !important;
        border-radius: 14px !important;
        
        -webkit-backdrop-filter: blur(12px) !important;
        backdrop-filter: blur(12px) !important;
        
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 
                    inset 0 1px 1px rgba(255, 255, 255, 0.12),
                    0 0 12px rgba(235, 180, 44, 0.12) !important;
        
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* 3. Text Cut Fix ("COMPLETE EVENT COVERAGE") */
    .ring-banner-card .glass-single-price .glass-split-title,
    .ring-banner-card .card-right-group .glass-tag,
    .ring-banner-card .card-right-group span {
        font-size: 0.65rem !important;  /* Fits perfectly without clipping */
        letter-spacing: 0.5px !important; /* Reduced letter spacing stops 'C' & 'G' from cutting */
        color: #CFC7B6 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }

    /* 4. Price Number Formatting */
    .ring-banner-card .glass-single-price .glass-price-num,
    .ring-banner-card .card-right-group .glass-price-num {
        font-size: 1.35rem !important;
        font-family: 'Cinzel', serif !important;
        color: #ebb42c !important;
        font-weight: 600 !important;
        margin-top: 0.2rem !important;
        white-space: nowrap !important;
    }

    /* 5. Button Lock Inside Outer Yellow Border */
    .ring-banner-card .glass-btn,
    .ring-banner-card button,
    .ring-banner-card a.glass-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.8rem 0.5rem !important;
        font-size: 0.72rem !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
        border-radius: 30px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
}

/* ==========================================================================
   CONTACT.HTML ("Dear Filmyguy Films") MAXIMUM MOBILE EDGE STRETCH
   ========================================================================== */

/* 1. Outer Section & Container Padding Reset */
.contact-letter-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

.editorial-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 8px !important;  /* Screen border se minimal 8px gap */
    padding-right: 8px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* 2. Main Parchment Card Stretch */
.letter-parchment-card {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 3rem 2.2rem !important;
    box-sizing: border-box !important;
}

/* 3. Form Inner Elements & Underlines Auto-Expand */
.letter-form,
.letter-body,
.letter-header,
.letter-selection-block,
.letter-textarea-block {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.inline-input-wrapper,
.inline-input {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 4. Mobile View Edge-to-Edge Stretch */
@media (max-width: 768px) {
    .editorial-container {
        padding-left: 6px !important; /* Full edge-to-edge fill on phone */
        padding-right: 6px !important;
    }

    .letter-parchment-card {
        width: 100% !important;
        padding: 2rem 1rem !important;
    }

    .letter-salutation {
        font-size: 1.4rem !important;
        letter-spacing: 1px !important;
    }

    .letter-body {
        font-size: 0.95rem !important;
        line-height: 1.9 !important;
    }
}

/* ==========================================================================
   CONTACT LETTER FORM: CENTER BALANCED CONTENT & SPACED LAYOUT
   ========================================================================== */

/* 1. Parchment Inner Breathing Space (Pushes text away from left/right edges) */
.letter-parchment-card {
    padding: 3.5rem 2.2rem !important; /* Left & right equal luxury padding */
    box-sizing: border-box !important;
}

/* 2. Header & Salutation Middle Alignment Flow */
.letter-header {
    margin-bottom: 2.2rem !important;
    text-align: left !important; /* Keeps letter salutation elegant */
}

.letter-salutation {
    font-size: 1.65rem !important;
    letter-spacing: 1px !important;
}

/* 3. Letter Body Flow & Line Height */
.letter-body {
    font-size: 1.05rem !important;
    line-height: 2.3 !important; /* Vertical breathability */
    margin-bottom: 2rem !important;
    color: #e2ded4 !important;
    word-spacing: 2px !important;
}

/* 4. Sub-headings & Blocks Center/Balanced Layout */
.letter-selection-block,
.letter-textarea-block {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
    padding: 0 0.5rem !important;
}

.letter-sub-label {
    letter-spacing: 1.5px !important;
    margin-bottom: 1.2rem !important;
    display: block !important;
}

/* 5. Mobile View Responsive Spacing */
@media (max-width: 768px) {
    .letter-parchment-card {
        padding: 2.5rem 1.6rem !important; /* Equal left/right side margins on mobile */
    }

    .letter-body {
        font-size: 0.98rem !important;
        line-height: 2.2 !important;
        margin-bottom: 1.6rem !important;
    }

    .letter-salutation {
        font-size: 1.45rem !important;
    }
}


/* ==========================================================================
   NAVBAR "BOOK YOUR STORY" BUTTON ONLY (.nav-cta) - SWEEP ANIMATION
   ========================================================================== */

/* 1. Desktop & Tablet Only (min-width: 769px) */
@media (min-width: 769px) {

    .navbar a.nav-cta,
    .navbar .nav-cta {
        position: relative !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0.65rem 1.6rem !important;
        font-size: 0.75rem !important;
        font-weight: 500 !important;
        letter-spacing: 1.8px !important;
        color: #EBB42C !important;
        border: 1px solid rgba(235, 180, 44, 0.5) !important;
        border-radius: 30px !important;
        background: transparent !important;
        overflow: hidden !important;
        text-decoration: none !important;
        z-index: 1 !important;
        transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
    }

    /* Animated Gold Layer (Left to Right Scale) */
    .navbar a.nav-cta::before,
    .navbar .nav-cta::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: #EBB42C !important;
        transform: scaleX(0) !important;
        transform-origin: left !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: -1 !important;
    }

    /* Hover State Animation Trigger */
    .navbar a.nav-cta:hover::before,
    .navbar .nav-cta:hover::before {
        transform: scaleX(1) !important;
    }

    .navbar a.nav-cta:hover,
    .navbar .nav-cta:hover {
        color: #011815 !important;
        border-color: #EBB42C !important;
        box-shadow: 0 0 20px rgba(235, 180, 44, 0.5) !important;
    }
}

/* 2. Mobile View: Hide ONLY "BOOK YOUR STORY" Button */
@media (max-width: 768px) {
    .navbar a.nav-cta,
    .navbar .nav-cta {
        display: none !important;
    }
}