/* =========================================
   1. GLOBAL VARIABLES & RESET (this)
   ========================================= */
:root {
    --bg-cream: #FFF8F0;
    --accent-gold: #D4A373;
    --primary-red: #D34836;
    --text-dark: #333;
    --text-light: #555;
    --burgundy: #560319; /* New Color */
}

/* Fix for invisible icons on Safari */
.fas, .fab, .fa-brands, .fa-solid {
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    text-rendering: auto;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background-color: var(--bg-cream); 
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden; 
}

h1, h2, h3, h4 { color: var(--primary-red); font-family: 'Playfair Display', serif; font-weight: 700; }

/* =========================================
   2. ANIMATIONS (this)
   ========================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes zoomEffect { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes iconPulse { 
    0% { transform: scale(1); }
    50% { transform: scale(1.15); color: var(--primary-red); background: #fff0f0; box-shadow: 0 0 15px rgba(211, 72, 54, 0.2); }
    100% { transform: scale(1); }
}

/* =========================================
   3. HERO SECTION (this)
   ========================================= */
.hero { position: relative; height: 85vh; overflow: hidden; display: flex; justify-content: center; align-items: center; text-align: center; padding: 0 1rem; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; transform: scale(1.1); animation: zoomEffect 20s infinite alternate; }
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)); }
.slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 2; animation: fadeInUp 1.5s ease-out; }
.btn { padding: 15px 40px; background-color: var(--primary-red); color: white; text-decoration: none; border-radius: 50px; display: inline-block; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(211, 72, 54, 0.4); font-weight: bold; letter-spacing: 1px; }
.btn:hover { background-color: white; color: var(--primary-red); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* Replace your existing hero-video-wrapper with this */
.hero-video-wrapper {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.6s ease-out; 
    transition: max-height 0.6s ease-out;
    /* This line forces Safari's graphics card to play the video */
    -webkit-transform: translateZ(0); 
    transform: translateZ(0);
}

.hero-video-wrapper.active {
    max-height: 1000px; 
}

.hero-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    /* Prevents flickering on Safari */
    -webkit-backface-visibility: hidden;
}

/* ============================================
        OPTION 3: SPLIT REVEAL OVERLAY
        Video revealed through split opening
    ============================================ */
    .hero-split {
        position: relative;
        height: 85vh;
        overflow: hidden;
    }

    .split-video-center {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        width: auto;
        z-index: 0;
    }

    .split-video {
        height: 100%;
        width: auto;
        object-fit: cover;
    }

    /* Align Logo Side to the Left */
    .split-panel-left {
        left: 0;
        justify-content: flex-start;
        padding-left: 8%;
        background: linear-gradient(to right, var(--burgundy) 0%, var(--burgundy) 70%, transparent 90%);
    }

    /* Align Description Side to the Right */
    .split-panel-right {
        right: 0;
        justify-content: flex-end;
        padding-right: 8%;
        background: linear-gradient(to left, var(--burgundy) 0%, var(--burgundy) 70%, transparent 90%);
    }

    .hero-split:hover .split-panel-left {
        transform: translateX(-25%);
    }

    .hero-split:hover .split-panel-right {
        transform: translateX(25%);
    }

    .split-content-wrapper {
        position: relative;
        z-index: 2;
        height: 85vh; /* Match the section height */
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1400px; /* Narrowed slightly to bring text inward */
        margin: 0 auto;
        padding: 0 10%; /* Increased padding to nudge text towards the center */
        color: white;
        pointer-events: none;
    }

    .split-title {
        margin-bottom: 1.5rem;
        line-height: 1;
    }

    /* Update the panels to be Flex containers */
    .split-panel-left,
    .split-panel-right {
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
        z-index: 2;
        transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center; /* Centers text vertically */
    }

    .split-panel-left {
        left: 0;
        justify-content: flex-start; /* Pushes content to the left */
        padding-left: 5%;
        background: linear-gradient(to right, var(--burgundy) 0%, var(--burgundy) 75%, transparent 100%);
    }

    .split-panel-right {
        right: 0;
        justify-content: flex-end; /* Pushes content to the right */
        padding-right: 5%;
        background: linear-gradient(to left, var(--burgundy) 0%, var(--burgundy) 75%, transparent 100%);
    }

    /* Text Box Controls */
    .split-text-left,
    .split-text-right {
        max-width: 400px;
        color: white;
        pointer-events: all;
    }

    /* Style the subtitle on the left as you requested */
    .left-subtitle {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 1.1rem;
        margin-top: 10px;
    }

    /* Hover effects - text now stays in the burgundy! */
    .hero-split:hover .split-panel-left {
        transform: translateX(-25%);
    }

    .hero-split:hover .split-panel-right {
        transform: translateX(25%);
    }

    /* Keep the text boxes a fixed size so they don't stretch */
    .split-text-left,
    .split-text-right {
        max-width: 400px;
        color: white;
    }

    .hero-logo {
        max-width: 280px;
        height: auto;
        display: block;
        margin-bottom: 1rem;
    }

    /* Font change for the left subtitle */
    .left-subtitle {
        font-family: 'Playfair Display', serif; /* Elegant font */
        font-size: 1.1rem;
        font-style: italic;
        letter-spacing: 1px;
        opacity: 0.9;
    }

    .split-title {
        font-family: 'Cinzel', serif;
        font-size: 5rem;
        line-height: 0.9;
        margin-bottom: 2rem;
        font-weight: 400;
        letter-spacing: 3px;
    }

    .split-text-right {
        max-width: 400px;
        pointer-events: all;
        
        /* This is the magic line to move it left */
        margin-right: 8%;  /* Pushes it away from the right edge */
        
        /* Optional: If it's still not enough, use this: */
        /* transform: translateX(-50px); */ 
    }

    /* Let's make the "Experience..." text font look nicer like you asked */
    .split-text-right .split-subtitle {
        font-family: 'Playfair Display', serif; /* Matching the left side */
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 2rem;
    }

    /* The Button Styling */
    .btn-primary {
        display: inline-block;
        padding: 12px 32px;
        background-color: transparent;
        color: #f5e6d3; /* Cream color */
        border: 1px solid #f5e6d3;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 2px;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .btn-primary:hover {
        background-color: #f5e6d3;
        color: var(--burgundy);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
    .hero-split {
        height: 100vh; /* Full screen for mobile impact */
    }

    /* 1. Make the video fill the background */
    .split-video-center {
        width: 100%;
        height: 100%;
    }

    /* 2. Reposition Panels for Vertical Split */
    .split-panel-left,
    .split-panel-right {
        width: 100%;
        height: 50%;
        left: 0;
        right: 0;
    }

    /* Top Panel (was Left) */
    .split-panel-left {
        top: 0;
        background: linear-gradient(to bottom, var(--burgundy) 70%, transparent 100%);
        justify-content: center;
        align-items: flex-end; /* Sits at the bottom of the top half */
        padding-bottom: 20px;
        padding-left: 0; /* Reset desktop padding */
    }

    /* Bottom Panel (was Right) */
    .split-panel-right {
        top: 50%;
        background: linear-gradient(to top, var(--burgundy) 70%, transparent 100%);
        justify-content: center;
        align-items: flex-start; /* Sits at the top of the bottom half */
        padding-top: 20px;
        padding-right: 0; /* Reset desktop padding */
    }

    /* 3. The Vertical Movement */
    .hero-split:hover .split-panel-left,
    .hero-split:active .split-panel-left {
        transform: translateY(-40%); /* Slides UP */
    }

    .hero-split:hover .split-panel-right,
    .hero-split:active .split-panel-right {
        transform: translateY(40%); /* Slides DOWN */
    }

    /* 4. Text Adjustments for mobile */
    .split-text-left, 
    .split-text-right {
        text-align: center;
        max-width: 90%;
    }

    .hero-logo {
        max-width: 180px;
        margin: 0 auto;
    }

    .split-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}
    /* ============================================
           OPTION 4: RADIAL REVEAL OVERLAY
           Circular masks revealing vertical video
        ============================================ */
        .hero-radial {
            position: relative;
            height: 100vh;
            background: var(--burgundy);
            overflow: hidden;
        }

        .radial-video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            height: 100%;
            width: auto;
            object-fit: cover;
            z-index: 0;
        }

        .radial-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle at 50% 50%,
                transparent 0%,
                transparent 25%,
                var(--burgundy) 50%,
                var(--burgundy) 100%
            );
            z-index: 1;
        }

        .radial-circles {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .circle-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 2px solid rgba(212, 163, 115, 0.3);
            border-radius: 50%;
            animation: pulse-ring 3s ease-in-out infinite;
        }

        .circle-ring:nth-child(1) {
            width: 400px;
            height: 400px;
            animation-delay: 0s;
        }

        .circle-ring:nth-child(2) {
            width: 600px;
            height: 600px;
            animation-delay: 0.5s;
        }

        .circle-ring:nth-child(3) {
            width: 800px;
            height: 800px;
            animation-delay: 1s;
        }

        @keyframes pulse-ring {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.3;
            }
        }

        .radial-content {
            position: relative;
            z-index: 3;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 5%;
        }

        .radial-eyebrow {
            font-size: 0.7rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .radial-title {
            font-family: 'Cinzel', serif;
            font-size: 8rem;
            line-height: 1;
            margin-bottom: 1.5rem;
            font-weight: 400;
            letter-spacing: 5px;
            text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .radial-script {
            font-family: 'Tangerine', cursive;
            font-size: 9rem;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 2rem;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        }


/* =========================================
   4. AWARDS BAR
   ========================================= */
.awards-bar { background-color: var(--primary-red); color: white; overflow: hidden; white-space: nowrap; padding: 1.5rem 0; width: 100%; border-bottom: 4px solid var(--accent-gold); }
.scroll-track { display: flex; width: fit-content; animation: scroll 30s linear infinite; }
.award-content { display: flex; align-items: center; flex-shrink: 0; }
.award-item { font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; margin: 0 2rem; }
.award-separator { color: rgba(255,255,255,0.4); font-size: 1.2rem; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   5. GENERAL SECTIONS
   ========================================= */
section { padding: 3rem 5%; }
.section-title { text-align: center; font-size: 3rem; margin-top: 0; }
.section-subtitle { text-align: center; color: var(--text-light); text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem;}

/* =========================================
   6. ABOUT US SECTION
   ========================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center; }
.about-image-container { display: flex; justify-content: center; }
.about-img { width: 100%; max-width: 500px; height: auto; border-radius: 20px; box-shadow: 20px 20px 0px var(--accent-gold); transition: transform 0.3s ease; filter: sepia(10%) contrast(105%) saturate(110%);}
.about-img:hover { transform: scale(1.02); }
.about-text p { font-size: 1.3rem; color: var(--text-light); line-height: 1.9; text-align: justify; margin-bottom: 1.5rem; }
.about-text strong { color: var(--primary-red); font-weight: 800; }

/* =========================================
   7. FOUNDER SECTION (MAGAZINE STYLE)
   ========================================= */
.founder { background-color: white; padding-top: 4rem; padding-bottom: 6rem; }
.founder-layout { display: flex; align-items: center; justify-content: center; gap: 3rem; max-width: 1300px; margin: 0 auto; }
.founder-img-side { flex: 1; max-width: 320px; }
.founder-img-side img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 5px solid #fff; transition: transform 0.3s ease; }
/* Tilting Effect */
.tilt-left img { transform: rotate(-8deg); }
.tilt-right img { transform: rotate(8deg); }
.founder-img-side:hover img { transform: rotate(0deg) scale(1.05); }
/* Center Content */
.founder-center-info { flex: 1.5; text-align: center; padding: 0 1rem; }
.signature-font { font-family: 'Great Vibes', cursive; font-size: 4.5rem; color: #000; margin-bottom: 1rem; line-height: 1.2; }
.founder-quote { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; color: var(--primary-red); margin-bottom: 2rem; padding: 0 1rem; font-weight: 600; }
.founder-bio-text p { font-size: 1.1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }

/* =========================================
   8. MISSION & VISION (LEFT ALIGNED)
   ========================================= */
.mv-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2rem; }
.mv-box { position: relative; background: transparent; padding: 3rem 2rem; text-align: left; border: 2px solid #000; border-radius: 0 60px 0 60px; transition: transform 0.3s ease; }
.mv-box:hover { transform: translateY(-5px); box-shadow: 10px 10px 0px rgba(0,0,0,0.05); }
.quote-icon { position: absolute; font-size: 2.5rem; color: #000; background-color: var(--bg-cream); padding: 0 10px; }
.icon-top { top: -25px; left: -10px; }
.icon-bottom { bottom: -25px; right: -10px; }
.mv-label { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.5rem; color: var(--primary-red); margin-bottom: 0.5rem; font-weight: 400; }
.mv-heading { font-family: 'Lato', sans-serif; font-size: 1.6rem; font-weight: 800; color: #000; line-height: 1.3; margin-bottom: 1rem; font-style: italic; }
.mv-desc { font-size: 1.1rem; color: #555; line-height: 1.6; }

/* =========================================
   9. VALUES SECTION
   ========================================= */
.values-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem; }

.value-card { 
    background: white; 
    padding: 3rem 2rem; 
    text-align: center; 
    border-radius: 20px; 
    border: 1px solid #eee; 
    /* Safari specific transitions */
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease; 
    cursor: pointer; /* Critical for Safari hovers */
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
}

.value-card:hover { 
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px #e25947; 
    border-color: var(--accent-gold); 
}

.value-card .icon { 
    font-size: 2.5rem; 
    background: #FFF0F0; 
    color: var(--primary-red); 
    width: 80px; height: 80px; 
    line-height: 80px; 
    border-radius: 60%; 
    margin: 0 auto 1.5rem auto; 
    transition: transform 0.4s ease; }

.value-card:hover .icon { 
    transform: rotateY(360deg); 
    background: var(--primary-red); 
    color: white; }

.value-card h4 { 
    color: var(--text-dark); 
    margin-bottom: 1rem; 
    letter-spacing: 1px; 
    font-weight: 800; }

/* =========================================
   10. SERVICES SECTION (LUXURY CARDS)
   ========================================= */
.services-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; }
.service-card { position: relative; height: 450px; border-radius: 30px; overflow: hidden; text-decoration: none; transition: all 0.4s ease; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card-content { color: white; z-index: 2; transform: translateY(20px); transition: transform 0.4s ease; }
.service-icon { font-size: 4rem; margin-bottom: 1.5rem; opacity: 0.8; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: white; margin-bottom: 1rem; line-height: 1.2; }
.service-card p { font-family: 'Lato', sans-serif; font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; color: rgba(255,255,255,0.9); }
.link-text { display: inline-block; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; color: white; border-bottom: 2px solid transparent; transition: all 0.3s ease; }
.link-text i { margin-left: 10px; transition: transform 0.3s ease; }
/* Hover Effects */
.service-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.service-card:hover .link-text { border-bottom: 2px solid white; }
.service-card:hover .link-text i { transform: translateX(5px); }
.service-card::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 100%); transform: skewX(-25deg); transition: left 0.5s; }
.service-card:hover::after { left: 150%; }

/* Card Images */
.traditional-card { background: linear-gradient(to top, rgba(60, 40, 20, 0.9), rgba(140, 107, 74, 0.4)), url('imagesSP/iSP_trad.png'); background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,0.3); }
.modern-card { background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(44, 62, 80, 0.5)), url('imagesSP/iSP_mod.png'); background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,0.1); }

/* =========================================
   11. MEDIA SECTION (BURGUNDY STYLE)
   ========================================= */
.media-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 5rem; }
.media-row { display: flex; align-items: center; gap: 3rem; background: var(--burgundy); color: white; border-radius: 20px; padding: 2rem; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.media-video { flex: 1; position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.3); aspect-ratio: 16 / 9; border: 2px solid rgba(255,255,255,0.1); }
.media-video iframe { width: 100%; height: 100%; display: block; }
.media-text { flex: 1; text-align: left; padding: 0 1rem; }
.media-text h3 { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 1.8rem; color: #fff; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1rem; }
.media-text p { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 1rem; }

/* =========================================
   12. SECTION DIVIDER (DECORATIVE)
   ========================================= */
.section-divider { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 60%; 
    margin: 0 auto; 
    padding: 0; 
    opacity: 0.6; }

.section-divider .line { flex: 1; height: 1px; background-color: var(--accent-gold); }
.section-divider .icon-divider { margin: 0 20px; color: var(--primary-red); font-size: 1.2rem; position: relative; top: -2px; }

/* =========================================
   13. MOBILE RESPONSIVE (HIGH-END STYLE)
   ========================================= */
/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .founder-layout { flex-direction: column; gap: 2rem; }
    .founder-center-info { order: 2; margin: 1rem 0; }
    .founder-img-side { max-width: 60%; margin: 0 auto; }
    
    .founder-img-side:first-child { order: 1; transform: rotate(-3deg); margin-bottom: -10px; }
    .founder-img-side:last-child { order: 3; transform: rotate(3deg); margin-top: -10px; }
    .founder-img-side img { border: 4px solid white; box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
    
    /* Media Section Tablet */
    .media-row { flex-direction: column; gap: 1.5rem; }
    .media-video { width: 100%; }
    .media-text { width: 100%; text-align: center; }

    /* STACK THE GRIDS ON TABLET */
    /* I added .services-grid2 here */
    .about-grid, .mv-container, .services-grid, .services-grid2, .values-grid { 
        grid-template-columns: 1fr; 
    }
}

/* Phones */
@media (max-width: 768px) {
    /* General */
    .hero h1 { font-size: 2.2rem; }
    
    /* STACK THE GRIDS ON PHONE */
    /* I added .services-grid2 here too */
    .about-grid, .mv-container, .services-grid, .services-grid2, .values-grid { 
        grid-template-columns: 1fr; 
        gap: 4rem; 
    }

    .about-text p { text-align: center; }
    .section-title { font-size: 2.2rem; }
    
    /* Cards & Boxes */
    .mv-box { padding: 3rem 1.5rem; margin-bottom: 1rem; }
    .service-item { height: 250px; }
    .service-overlay { background: rgba(0,0,0,0.4); }
    
    /* Values Animation */
    .value-card { width: 90%; margin: 0 auto; box-shadow: 0 15px 30px rgba(0,0,0,0.1); border: 3px solid white; transition: transform 0.3s ease; }
    .value-card:nth-child(odd) { transform: rotate(-2deg) translateX(-5px); }
    .value-card:nth-child(even) { transform: rotate(2deg) translateX(5px); }
    .value-card .icon { animation: iconPulse 3s infinite ease-in-out; }
    
    /* Founder & Extras */
    .founder-img-side { max-width: 70%; }
    .signature-font { font-size: 3rem; }
    .awards-bar { padding: 1rem 0; }
}

/* =========================================
   14. MEDIA SECTION (REVERSE LUXURY)
   ========================================= */

/* The Dark Background Strip */
.burgundy-section {
    background-color: var(--burgundy); /* Dark Background */
    padding: 6rem 5%;
}

.media-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem; 
}

/* The Light Card */
.media-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    
    /* THE REVERSE: Light Box on Dark Background */
    background-color: #FFF8F0; /* Cream Box */
    border: 1px solid #D4A373;  /* Gold Border */
    
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3); /* Strong shadow for depth */
}

.media-row.reverse-layout {
    flex-direction: row-reverse;
}

/* Video Styling */
.media-video-wrapper {
    flex: 1;
    position: relative;
}

.media-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.media-video iframe {
    width: 100%; height: 100%; display: block;
}

/* Text Styling */
.media-text {
    flex: 1;
    text-align: left;
}

.media-date {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-red); /* Red accent */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.media-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--burgundy); /* Dark Burgundy Title */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.media-text p {
    font-size: 1.05rem;
    color: var(--text-dark); /* Dark readable text */
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .media-row, .media-row.reverse-layout {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .media-video-wrapper, .media-text {
        width: 100%;
    }
    
    .media-text {
        text-align: center;
    }
}
/* =========================================
   1-TO-1 CONSULTATION (FINAL PREFERRED DESIGN)
   ========================================= */
#consultation {
    background-color: #FFFFFF; /* Clean White Background */
    padding: 6rem 5%;
}

.consult-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Vertically centers text with image */
    gap: 5rem; 
}

/* --- IMAGE SIDE --- */
.consult-visual {
    flex: 1;
    position: relative;
}

.image-frame-gold {
    padding: 15px; /* The white gap between image and frame */
    border: 1px solid var(--accent-gold); /* The Gold Border */
    border-radius: 4px;
}

.image-frame-gold img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Luxury Shadow */
}

/* --- TEXT SIDE --- */
.consult-content {
    flex: 1.2; 
}

.badge-small {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-red);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.consult-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--burgundy); /* Dark elegant text */
    line-height: 1.3;
    margin-bottom: 25px;
}

.gold-divider-left {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-bottom: 25px;
}

.consult-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* --- THE LUXURY LIST --- */
.consult-list {
    list-style: none;
    margin-bottom: 40px;
}

.consult-list li {
    display: flex;
    align-items: flex-start; /* Aligns icon to top of text block */
    margin-bottom: 25px;
}

/* The Icons */
.consult-list li i {
    color: var(--primary-red);
    margin-right: 20px;
    font-size: 1.4rem;
    margin-top: 5px; /* Pushes icon down slightly to align with first line */
    background: #FFF0F0;
    padding: 10px;
    border-radius: 50%;
}

/* The Text block next to icon */
.consult-list li span {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.consult-list li strong {
    color: var(--burgundy);
    font-size: 1.1rem;
}

/* --- BUTTON --- */
.btn-consult {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--burgundy);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(86, 3, 25, 0.2);
    font-size: 0.9rem;
}

.btn-consult:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(211, 72, 54, 0.3);
}

.btn-consult i { margin-left: 10px; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .consult-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .consult-title { font-size: 2rem; text-align: center; }
    .gold-divider-left { margin: 0 auto 25px auto; }
    .consult-desc { text-align: center; }
    
    .btn-consult { 
        display: block; 
        text-align: center; 
        width: 100%; 
    }
    
    .image-frame-gold { max-width: 500px; margin: 0 auto; }
}

/* footer */
@media (max-width: 768px) {
    .brand-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Centers the logo and text */
        text-align: center !important;
        margin-bottom: 30px;
    }

    .brand-desc {
        max-width: 280px; /* Keeps the text in a nice narrow block */
        margin: 0 auto !important; /* Centers the text block itself */
        color: #555555 !important;
        font-size: 0.95rem !important;
    }

    /* FIXING THE LOGO COLOR */
    .footer-logo-white {
        /* This filter turns the white logo into a dark burgundy/black 
           so it's clear on the white background */
        filter: brightness(0) saturate(100%) invert(18%) sepia(50%) saturate(3475%) hue-rotate(331deg) brightness(88%) contrast(100%) !important;
        max-width: 180px !important;
        margin-bottom: 15px !important;
    }
}