*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

section[id],
div[id],
#gallery,
#videos,
.videoSectionAdjacent {
    scroll-margin-top: 110px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
    section[id],
    div[id],
    #gallery,
    #videos,
    .videoSectionAdjacent {
        scroll-margin-top: 80px;
    }
}

a {
    text-decoration: none;
}

/* ==========================================================================
   SECTION 01
   PINLIGHT DESIGN SYSTEM
   --------------------------------------------------------------------------
   Contents
   1. Brand Colours
   2. Typography
   3. Radius
   4. Shadows
   5. Transitions
   ========================================================================== */

:root{

    /* ==========================================================
       BRAND COLOURS
    ========================================================== */

    --gold:#B58A49;
    --gold-light:#D9B57A;
    --gold-soft:#F2E5C8;
    --gold-deep:#8A642E;     /* Rich Deep Gold */
    --gold-dark:#6F4E1F;     /* Antique Gold */


    --walnut:#2D2217;
    --walnut-light:#47392C;

    --ivory:#FCFAF6;
    --cream:#F7F4EE;
    --white:#FFFFFF;

    --text:#665C53;
    --heading:#2D2217;

    --border:#DDD3C4;

    --success:#2F8F57;
    --error:#C84040;

    --color-accent: var(--gold);
    --color-primary: var(--gold);
    --color-background-dark: var(--walnut);
    --color-border: var(--border);
    --color-heading: var(--heading);
    --color-text: var(--text);


    /* ==========================================================
       BORDER RADIUS
    ========================================================== */

    --radius-sm:10px;

    --radius-md:16px;

    --radius-lg:24px;

    --radius-xl:30px;


    /* ==========================================================
       SHADOWS
    ========================================================== */

    /* Very subtle shadow */
    --shadow-xs:
        0 2px 8px rgba(0,0,0,.05);

    /* Small cards, inputs */
    --shadow-sm:
        0 6px 18px rgba(0,0,0,.08);

    /* Service cards, image cards */
    --shadow-md:
        0 12px 30px rgba(0,0,0,.12);

    /* Buttons, dropdowns, floating elements */
    --shadow-lg:
        0 18px 45px rgba(0,0,0,.18);

    /* Modal windows */
    --shadow-xl:
        0 30px 80px rgba(0,0,0,.28);

    /* Hero sections and premium spotlight effect */
    --shadow-xxl:
        0 45px 120px rgba(0,0,0,.35);

    /* Warm golden glow */
    --shadow-gold:
        0 0 30px rgba(212,175,55,.28);

    /* Premium deep gold glow */
    --shadow-gold-lg:
        0 0 60px rgba(212,175,55,.35);

    /* Soft inset shadow */
    --shadow-inset:
        inset 0 2px 6px rgba(0,0,0,.08);

    /* ==========================================================================
   GLASS SYSTEM
   --------------------------------------------------------------------------
   Purpose
   Defines reusable glassmorphism colours and blur levels used throughout
   the Pinlight Interiors website.
   ========================================================================== */

/* ==========================================================
   GLASS COLOURS
========================================================== */

    --glass-clear:
        rgba(255,255,255,.06);

    --glass-light:
        rgba(255,255,255,.10);

    --glass-medium:
        rgba(255,255,255,.16);

    --glass-heavy:
        rgba(255,255,255,.24);

    --glass-walnut:
        rgba(45,34,23,.14);

    --glass-gold:
        rgba(181,138,73,.14);


    /* ==========================================================
    GLASS BORDERS
    ========================================================== */

    --glass-border-light:
        rgba(255,255,255,.18);

    --glass-border-medium:
        rgba(255,255,255,.28);

    --glass-border-gold:
        rgba(181,138,73,.28);

    --glass-border-dark:
        rgba(45,34,23,.18);


    /* ==========================================================
    BACKDROP BLUR
    ========================================================== */

    --blur-xs:
        blur(4px);

    --blur-sm:
        blur(8px);

    --blur-md:
        blur(12px);

    --blur-lg:
        blur(18px);

    --blur-xl:
        blur(26px);


    /* ==========================================================
    GLASS SHINE
    ========================================================== */

    --glass-highlight:
        linear-gradient(
            135deg,
            rgba(255,255,255,.35),
            rgba(255,255,255,.08)
        );

    --glass-gold-highlight:
        linear-gradient(
            135deg,
            rgba(217,181,122,.22),
            rgba(255,255,255,.05)
        );

    /* ==========================================================================
    END OF GLASS SYSTEM
    ========================================================================== */

    /* ==========================================================================
       NAVIGATION SYSTEM
    ========================================================================== */
    --nav-bg: rgba(255, 255, 255, .08);
    --nav-bg-hover: rgba(181, 138, 73, .16);
    --nav-bg-active: rgba(181, 138, 73, .22);
    --nav-border: rgba(255, 255, 255, .12);
    --nav-border-hover: rgba(217, 181, 122, .45);
    --nav-text: #ffffff;
    --nav-text-hover: #ffffff;
    --nav-shadow: 0 6px 18px rgba(0, 0, 0, .10);
    --nav-shadow-hover: 0 12px 35px rgba(181, 138, 73, .25);
    --nav-shadow-active: 0 18px 45px rgba(181, 138, 73, .35);

    /* ==========================================================
       TRANSITIONS
    ========================================================== */
    --transition-fast: .25s ease;
    --transition: .35s ease;
    --transition-slow: .50s ease;
}

    /*=========================================================
                REUSABLE ANIMATION SYSTEM
=========================================================*/

/*----------------------------------
  Base Reveal
----------------------------------*/

.reveal{

    opacity:0;

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,1,.36,1),
        filter .9s ease;

    will-change:
        transform,
        opacity,
        filter;
}

.reveal.show{

    opacity:1;

    transform:none;

    filter:blur(0);
}


/*----------------------------------
  Directions
----------------------------------*/

.reveal-up{

    transform:translateY(50px);

    filter:blur(8px);
}

.reveal-down{

    transform:translateY(-50px);

    filter:blur(8px);
}

.reveal-left{

    transform:translateX(-60px);

    filter:blur(8px);
}

.reveal-right{

    transform:translateX(60px);

    filter:blur(8px);
}


/*----------------------------------
  Scale
----------------------------------*/

.reveal-zoom{

    transform:scale(.88);

    filter:blur(10px);
}


/*----------------------------------
  Rotation
----------------------------------*/

.reveal-rotate{

    transform:
        rotate(-4deg)
        scale(.96);

    filter:blur(8px);
}



/*=========================================================
                    DELAYS
=========================================================*/

.delay-1{

    transition-delay:.15s;
}

.delay-2{

    transition-delay:.30s;
}

.delay-3{

    transition-delay:.45s;
}

.delay-4{

    transition-delay:.60s;
}

.delay-5{

    transition-delay:.75s;
}

.delay-6{

    transition-delay:.90s;
}



/*=========================================================
                    DURATIONS
=========================================================*/

.speed-fast{

    transition-duration:.6s;
}

.speed-normal{

    transition-duration:.9s;
}

.speed-slow{

    transition-duration:1.2s;
}



/*=========================================================
                    HOVER FLOAT
=========================================================*/

.float-hover{

    transition:transform .35s ease;
}

.float-hover:hover{

    transform:translateY(-6px);
}



/*=========================================================
                    REUSABLE ANIMATION END
=========================================================*/

    


/*----------------------------------
  Directions
----------------------------------*/

.reveal-up{

    transform:translateY(50px);

    filter:blur(8px);
}

.reveal-down{

    transform:translateY(-50px);

    filter:blur(8px);
}

.reveal-left{

    transform:translateX(-60px);

    filter:blur(8px);
}

.reveal-right{

    transform:translateX(60px);

    filter:blur(8px);
}


/*----------------------------------
  Scale
----------------------------------*/

.reveal-zoom{

    transform:scale(.88);

    filter:blur(10px);
}


/*----------------------------------
  Rotation
----------------------------------*/

.reveal-rotate{

    transform:
        rotate(-4deg)
        scale(.96);

    filter:blur(8px);
}



/*=========================================================
                    DELAYS
=========================================================*/

.delay-1{

    transition-delay:.15s;
}

.delay-2{

    transition-delay:.30s;
}

.delay-3{

    transition-delay:.45s;
}

.delay-4{

    transition-delay:.60s;
}

.delay-5{

    transition-delay:.75s;
}

.delay-6{

    transition-delay:.90s;
}



/*=========================================================
                    DURATIONS
=========================================================*/

.speed-fast{

    transition-duration:.6s;
}

.speed-normal{

    transition-duration:.9s;
}

.speed-slow{

    transition-duration:1.2s;
}



/*=========================================================
                    HOVER FLOAT
=========================================================*/

.float-hover{

    transition:transform .35s ease;
}

.float-hover:hover{

    transform:translateY(-6px);
}



/*=========================================================
                    REUSABLE ANIMATION END
=========================================================*/


@font-face {
    font-family: 'Brittany';
    src: url('./assets/fonts/BrittanySignature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.hero {
    position:relative;
    width:100%;
    min-height:100vh;
    background: 
        radial-gradient(circle at 15% 20%, rgba(217, 181, 122, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 80% 15%, rgba(242, 229, 200, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(181, 138, 73, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(138, 100, 46, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 75% 80%, rgba(217, 181, 122, 0.2) 0%, transparent 35%),
        var(--walnut, #2D2217);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.header{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:1500px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 40px;

    /*background:rgba(55,32,12,.25);*/

    background: var(--glass-medium);

    backdrop-filter: var(--blur-md);

    border:1px solid rgba(255,255,255,.08);
    border-top:1.5px solid rgba(217, 181, 122, 0.45);

    border-radius:60px;

    box-shadow: 0 -4px 20px rgba(212, 175, 55, 0.18);

    z-index:1000;

    transition:.4s;

    opacity: 0;
}
body.loaded .header {
    animation: headerFadeIn 1s ease forwards;
    animation-delay: 0.2s;
}

.logo {
    opacity: 0;
    transform: translateX(-30px);
}
body.loaded .logo {
    animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.logo img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.4));
}

/*======================================================================
    HEADER ENTRANCE ANIMATION KEYFRAMES
======================================================================*/
@keyframes headerFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUpMobile {
    0% {
        opacity: 0;
        transform: translate(-50%, 60px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/*======================================================================
                            NAVIGATION START
======================================================================*/

nav{

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:16px;

    padding:10px 16px;

    border-radius:50px;

    border:1px solid rgba(176,141,87,.30);
    border-top:1.5px solid rgba(217, 181, 122, 0.55);

    background:rgba(32,24,18,.5);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    box-shadow:
        inset 0 1.5px 0 rgba(217, 181, 122, 0.35),
        0 -3px 12px rgba(181, 138, 73, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.15);

    overflow:hidden;

    opacity: 0;
    transform: translateX(30px);
}
body.loaded nav {
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}


/*------------------------------------------------------
                    INNER BORDER
------------------------------------------------------*/

nav::before{

    content:"";

    position:absolute;

    inset:4px;

    border-radius:46px;

    border:1px solid rgba(255,255,255,.06);

    pointer-events:none;
}


/*======================================================================
                            NAV LINKS
======================================================================*/

nav a{

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    padding:14px 22px;

    text-decoration:none;

    color:var(--gold);

    font-family:"Manrope",sans-serif;
    font-size:1.05rem;
    font-weight:600;

    white-space:nowrap;

    letter-spacing:.2px;

    text-shadow:
        0 1px 2px rgba(0,0,0,.45);

    transition:
        color .35s ease,
        transform .35s ease,
        text-shadow .35s ease;
}


/*======================================================================
                               ICON
======================================================================*/

nav a i{

    font-size:.95rem;
}


/*======================================================================
                              HOVER
======================================================================*/

nav a:hover{

    color:#FFE7A0;

    transform:translateY(-2px);

    text-shadow:
        0 0 10px rgba(212,175,55,.22),
        0 1px 2px rgba(0,0,0,.45);
}


/*======================================================================
                            ACTIVE ITEM
======================================================================*/

nav a.active{

    color:#FFF2C5;

    text-shadow:
        0 0 14px rgba(212,175,55,.25),
        0 1px 2px rgba(0,0,0,.45);
}


/*======================================================================
                          NAVIGATION END
======================================================================*/


/*ENGINE SUPPORT
======================================================================*/

/*--------------------------------------------------------------
    HEADER TRANSITIONS
--------------------------------------------------------------*/

header{

    transition:
        background .45s ease,
        backdrop-filter .45s ease,
        transform .35s ease,
        padding .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

/*--------------------------------------------------------------
    HEADER AFTER SCROLL
--------------------------------------------------------------*/

header.header-scrolled{

    background:rgba(18,18,18,.82);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:
        0 -4px 20px rgba(212,175,55,.18),
        0 14px 40px rgba(0,0,0,.28);

    border-bottom:1px solid rgba(176,141,87,.25);

}

/*--------------------------------------------------------------
    SHRUNK HEADER
--------------------------------------------------------------*/

header.header-shrink{

    padding:10px 0;

}

/*--------------------------------------------------------------
    AUTO HIDE HEADER
--------------------------------------------------------------*/

header.header-hidden{

    transform:translateY(-110%);

}

/*--------------------------------------------------------------
    NAV LINKS
--------------------------------------------------------------*/

nav a{

    position:relative;

    transition:
        color .35s ease,
        transform .30s ease;

}

/*--------------------------------------------------------------
    ACTIVE INDICATOR
--------------------------------------------------------------*/

nav a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-10px;

    width:0;

    height:2px;

    border-radius:10px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

    transform:translateX(-50%);

    transition:
        width .35s ease;

}

/*--------------------------------------------------------------
    ACTIVE LINK
--------------------------------------------------------------*/

nav a.active{

    color:var(--gold);

}

nav a.active::after{

    width:70%;

}

/*--------------------------------------------------------------
    PREMIUM HOVER
--------------------------------------------------------------*/

nav a:hover{

    color:var(--gold);

    transform:translateY(-2px);

}

nav a:hover::after{

    width:70%;

}

/*--------------------------------------------------------------
    REDUCE MOTION
--------------------------------------------------------------*/

@media (prefers-reduced-motion: reduce){

    header,
    nav a,
    nav a::after{

        transition:none;

    }

}


.headlineContainer {
    position: relative;
    width: 800px;
    height: 750px;
    padding: 50px 0 0 180px;
    margin-top: 175px;
    z-index: 90;
}

.headlineContainer::before {
    position: absolute;
    content: '';
    width: 84%;
    height: 86%;
    right: 0;
    bottom: 0;
    background: var(--gold-light);
    filter: opacity(0.4);
    opacity: 0;
    z-index: 91;
}
body.loaded .headlineContainer::before {
    animation: headlineContainerBefore 4s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
}

@keyframes headlineContainerBefore {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.headline {
    position: relative;
    padding: 150px 0 0 50px;
    opacity: 0;
    z-index: 99;
}
body.loaded .headline {
    animation: appear 4s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
}

.heroTag {
    display: inline-block;
    opacity: 0;
    transform: translateY(-18px);
}

body.loaded .heroTag {
    animation: heroTagSlideDown 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.15s;
}

@keyframes heroTagSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.heroDescription {
    opacity: 0;
    transform: translateY(25px);
}

body.loaded .heroDescription {
    animation: heroDescriptionFadeUp 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.45s;
}

@keyframes heroDescriptionFadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.xlHeading {
    position: inherit;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 5rem;
    z-index: 100;
}

.xlHeading:nth-child(odd) {
    background: linear-gradient(
        90deg,
        #BF953F,
        #FCF6BA,
        #B38728,
        #FBF5B7,
        #AA771C
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.xlHeading:nth-child(even) {
    color: var(--gold-soft);
}

/* Quote Form Header Subtitle Styling */
.quote-form-header {
    margin-bottom: 16px;
}

.quote-form-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2D2217;
    margin-bottom: 4px;
}

.quote-form-header p {
    font-family: "Manrope", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(45, 34, 23, 0.72);
    line-height: 1.4;
    margin: 0;
}

.btnContainer {
    position: absolute;
    width: 84%;
    height: 60px;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    z-index: 98;
}
body.loaded .btnContainer {
    animation: appear 4s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
}

.smPanel {
    position: relative;
    width: 70%;
    height: 100%;
    background: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 100;
}

.smPanel::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--gold-dark);
    filter: opacity(0.3);
    z-index: 100;
}

.smCaption {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.2rem;
    color: var(--heading);
}

.smButton {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--gold-dark);
    background: var(--gold);
    color: var(--bg);
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.smButton:hover {
    border: 1px solid var(--bg);
}

.smButton:hover .fa-brands{
    filter: opacity(0.8);
}

.btn-primary {
    width: 30%;
}

.btnGetQuote {
    position: relative;
    /*width: 280px;*/
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gold);
    border: 0;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.2rem;
    color: var(--bg);
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btnGetQuote:hover {
    background: var(--gold); /* Keep standard gold background, no brightening color change */
    transform: translateY(-2px);
}

.btnGetQuote:active {
    transform: translateY(0);
}

/* Wrapper for the text and arrow to share the clipping gradient */
.btnGetQuoteWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--bg) 0%,
        var(--bg) 47%,
        var(--gold-soft) 50%,
        var(--bg) 53%,
        var(--bg) 100%
    );
    background-size: 300% auto;
    background-position: 100% 0; /* Default position: shimmer is hidden off-screen to the left during intro animation */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Begins after the 4-second introductory animation completes (4s cycle: 1.5s sweep, 2.5s rest) */
    animation: textShineSweep 4s infinite ease-in-out 4s;
}

@keyframes textShineSweep {
    0% {
        background-position: 100% 0; /* Shimmer starts off-screen left */
    }
    37.5% {
        background-position: 0% 0; /* Shimmer sweeps off-screen right */
    }
    100% {
        background-position: 0% 0; /* Shimmer stays off-screen right for the rest of the cycle */
    }
}

.btnGetQuote span {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2rem;
}

.btnGetQuote span:nth-child(even) {
    width: 60px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btnGetQuote:hover span:nth-child(even) {    
    padding: 0 0 0 10px;
}

.aboutUs {
    position: relative;
    padding: 140px 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    overflow: hidden;
}

.blob {
    position: absolute;
    background: var(--gold);

    filter: blur(100px);
    opacity: .35;

    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(40px, -30px) rotate(10deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Top Left */
.blob-1 {
    width: 500px;
    height: 420px;

    top: -50px;
    left: -80px;

    filter: blur(140px);
    opacity: .25;

    border-radius:
        38% 62% 70% 30% /
        30% 35% 65% 70%;
}

/* Mid Right */
.blob-2 {
    width: 450px;
    height: 520px;

    top: -10px;
    right: -20px;

    filter: blur(120px);
    opacity: .18;

    border-radius:
        58% 42% 31% 69% /
        49% 72% 28% 51%;
}

/* Bottom Center */
.blob-3 {
    width: 600px;
    height: 380px;

    bottom: 50px;
    left: 30%;

    filter: blur(180px);
    opacity: .3;

    border-radius:
        61% 39% 68% 32% /
        46% 63% 37% 54%;
}

/* Random Floating Blob */
.blob-4 {
    width: 300px;
    height: 260px;

    top: 55%;
    left: 15%;

    filter: blur(80px);
    opacity: .22;

    border-radius:
        24% 76% 39% 61% /
        64% 21% 79% 36%;
}

.aboutUsImgSection {
    width: 40%;
    min-height: 640px;
    background-image: url(./assets/aboutUs.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.aboutUsTextSection {
    position: relative;
    width: 46%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aboutUsTextBody {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.smallHeading {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.25rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.bigHeading {
    position: inherit;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;    
    font-size: 4.5rem;
    line-height: 4.8rem;
    color: var(--color-background-dark);
}

.bigHeadingInv {
    position: inherit;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;    
    font-size: 4.5rem;
    line-height: 4.8rem;
    color: var(--ivory);
}

.aboutUsTextBody p {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.8rem;
    color: var(--color-background-dark);
}

.aboutUsTextBody p.about-lead {
    font-size: 1.1rem;
    line-height: 1.85rem;
    color: #2D2217;
}

.aboutUsTextBody p.about-story {
    font-size: 1.05rem;
    line-height: 1.8rem;
    color: #4A3E33;
}

/*======================================================================
    VISION & MISSION SUBSECTIONS
======================================================================*/
.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 15px;
}

.vm-card {
    background: #ffffff;
    border: 1.5px solid rgba(181, 138, 73, 0.35);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 10px 30px rgba(45, 34, 23, 0.08);
    transition: all 0.35s ease;
}

.vm-card:hover {
    transform: translateY(-4px);
    border-color: #B58A49;
    box-shadow: 0 16px 35px rgba(181, 138, 73, 0.25);
    background: #ffffff;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.vm-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #F7F4EE;
    border: 1px solid rgba(181, 138, 73, 0.3);
    color: #B58A49;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.vm-card:hover .vm-icon {
    background: #B58A49;
    color: #ffffff;
    border-color: #B58A49;
}

.vm-header h4 {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #2D2217;
    margin: 0;
}

.vm-card p {
    font-family: "Manrope", sans-serif !important;
    font-size: 1.02rem !important;
    line-height: 1.75 !important;
    color: #47392C !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

.pinlightCaption {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}

.pinlightCaption h4 {
    font-family: 'Brittany', cursive;
    font-size: 3.5rem;
    color: var(--color-accent);
}

/*======================================================================
    UNIFORM FLUID TYPOGRAPHY & SECTION SCALING MEDIA QUERIES (< 1700px)
======================================================================*/

@media (max-width: 1700px) {
    .aboutUs {
        width: 90%;
        max-width: 1500px;
        margin: 0 auto;
        padding: 120px 0;
    }
    
    .bigHeading,
    .bigHeadingInv,
    .aboutUsTextBody .bigHeading,
    .contact-info .bigHeading,
    .section-heading h2 {
        font-size: clamp(3.2rem, 3.6vw, 4.2rem) !important;
        line-height: 1.1 !important;
    }

    .xlHeading {
        font-size: clamp(4.2rem, 4.8vw, 5.5rem) !important;
        line-height: 1.1 !important;
    }

    .servicesSub,
    .processHead p,
    .section-heading p,
    .beforeAfterHead p {
        font-size: 1.1rem !important;
        line-height: 1.7rem !important;
    }

    .client-info h3 {
        font-size: 1.85rem !important;
    }

    .review {
        font-size: 1.05rem !important;
        line-height: 1.8rem !important;
    }

    .statNumber, .statSuffix {
        font-size: 4.0rem !important;
    }

    .aboutUsImgSection {
        min-height: 580px;
    }

    .pinlightCaption h4 {
        font-size: 3.2rem;
    }
}

@media (max-width: 1399px) {
    .aboutUs {
        width: 92%;
        gap: 40px;
        padding: 100px 0;
    }

    .aboutUsImgSection {
        width: 44%;
        min-height: 520px;
    }

    .aboutUsTextSection {
        width: 52%;
    }

    .bigHeading,
    .bigHeadingInv,
    .aboutUsTextBody .bigHeading,
    .contact-info .bigHeading,
    .section-heading h2 {
        font-size: clamp(2.5rem, 3vw, 3.2rem) !important;
        line-height: 1.15 !important;
    }

    .xlHeading {
        font-size: clamp(3.6rem, 4.2vw, 4.5rem) !important;
        line-height: 1.12 !important;
    }

    .servicesSub,
    .processHead p,
    .section-heading p,
    .beforeAfterHead p {
        font-size: 1.05rem !important;
        line-height: 1.65rem !important;
    }

    .client-info h3 {
        font-size: 1.7rem !important;
    }

    .review {
        font-size: 1.02rem !important;
        line-height: 1.75rem !important;
    }

    .statNumber, .statSuffix {
        font-size: 3.6rem !important;
    }

    .aboutUsTextBody p.about-lead {
        font-size: 1.02rem;
        line-height: 1.75rem;
    }

    .aboutUsTextBody p.about-story {
        font-size: 0.98rem;
        line-height: 1.7rem;
    }

    .about-vision-mission {
        gap: 16px;
    }

    .vm-card {
        padding: 20px 18px;
    }

    .vm-card p {
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
    }

    .pinlightCaption {
        margin-top: 35px;
    }

    .pinlightCaption h4 {
        font-size: 2.6rem;
    }
}

@media (max-width: 1250px) {
    .aboutUs {
        flex-direction: column;
        align-items: stretch;
        gap: 50px;
        padding: 90px 0;
    }

    .aboutUsImgSection {
        width: 100%;
        min-height: 420px;
        background-position: center 30%;
    }

    .aboutUsTextSection {
        width: 100%;
    }

    .bigHeading,
    .bigHeadingInv,
    .aboutUsTextBody .bigHeading,
    .contact-info .bigHeading,
    .section-heading h2 {
        font-size: 2.6rem !important;
        line-height: 3.1rem !important;
    }

    .xlHeading {
        font-size: 3.2rem !important;
        line-height: 3.8rem !important;
    }

    .servicesSub,
    .processHead p,
    .section-heading p,
    .beforeAfterHead p {
        font-size: 1.0rem !important;
        line-height: 1.6rem !important;
    }

    .client-info h3 {
        font-size: 1.55rem !important;
    }

    .review {
        font-size: 0.98rem !important;
        line-height: 1.68rem !important;
    }

    .statNumber, .statSuffix {
        font-size: 3.2rem !important;
    }

    .pinlightCaption {
        justify-content: flex-end;
        margin-top: 30px;
    }

    .pinlightCaption h4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .aboutUs {
        width: 92%;
        padding: 60px 0 !important;
        gap: 36px;
    }

    .aboutUsImgSection {
        min-height: 340px;
        border-radius: 16px;
    }

    .aboutUsTextBody {
        gap: 16px;
    }

    .bigHeading,
    .bigHeadingInv,
    .aboutUsTextBody .bigHeading,
    .contact-info .bigHeading,
    .section-heading h2 {
        font-size: 2.2rem !important;
        line-height: 2.7rem !important;
    }

    .xlHeading {
        font-size: 2.4rem !important;
        line-height: 2.9rem !important;
    }

    .smallHeading {
        font-size: 1.05rem !important;
        letter-spacing: 2px !important;
    }

    .client-info h3 {
        font-size: 1.35rem !important;
    }

    .review {
        font-size: 0.92rem !important;
        line-height: 1.6rem !important;
    }

    .statNumber, .statSuffix {
        font-size: 2.8rem !important;
    }

    .about-vision-mission {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vm-card {
        padding: 20px;
    }

    .pinlightCaption {
        justify-content: center;
        margin-top: 25px;
    }

    .pinlightCaption h4 {
        font-size: 2.2rem;
    }

    .blob-1, .blob-2, .blob-3, .blob-4 {
        opacity: 0.15;
    }
}

@media (max-width: 480px) {
    .aboutUsImgSection {
        min-height: 280px;
    }

    .bigHeading,
    .bigHeadingInv,
    .aboutUsTextBody .bigHeading,
    .contact-info .bigHeading,
    .section-heading h2 {
        font-size: 1.9rem !important;
        line-height: 2.4rem !important;
    }

    .xlHeading {
        font-size: 2.0rem !important;
        line-height: 2.5rem !important;
    }

    .smallHeading {
        font-size: 0.95rem !important;
        letter-spacing: 1.5px !important;
    }

    .client-info h3 {
        font-size: 1.2rem !important;
    }

    .review {
        font-size: 0.88rem !important;
        line-height: 1.55rem !important;
    }
}

.services {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: #F7F4EE;
}

.servicesHead {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.servicesSub {
    font-family: "Manrope", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2D2217;
    max-width: 650px;
    margin-top: 15px;
    line-height: 1.7rem;
}

.servicesBox {
    width: min(1350px, 92%);
    margin: 0 auto;
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.servicesChild {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px;
    background: #FFFFFF;
    border: 1.5px solid rgba(181, 138, 73, 0.35);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(45, 34, 23, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    width: 100%;
    min-width: unset;
}

.servicesChild::before {
    content: none;
}

.servicesChild:hover {
    transform: translateY(-8px);
    background: #FFFFFF;
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(181, 138, 73, 0.25);
}

.service-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(181, 138, 73, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.servicesChild:hover .service-icon-box {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 12px 28px rgba(181, 138, 73, 0.45);
}

.service-icon-box i {
    font-size: 1.85rem;
    color: #FCFAF6;
}

.servicesChild h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1A130B !important;
}

.servicesChild p {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.65rem;
    color: #2D2217;
    margin: 0;
}

.pfContainer {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
}

.pfTitle {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio{
    position: relative;
    overflow: hidden;
    width: 100%;    

    display: flex;    
    align-items: center;
}

.pfTrack {
    display: flex;    
    align-items: center;
    flex-wrap: nowrap;
    width: max-content;
    gap: 2px;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    to {
        transform: translateX(calc(-50% - 1px));
    }
}

.portfolio:hover .pfTrack {
    animation-play-state: paused;
}

/* ===== BLOBS ===== */

.blob001{
    position: absolute;
    pointer-events: none;

    filter: blur(120px);

    border-radius:
        55% 45% 70% 30% /
        35% 65% 35% 65%;
}

/* Warm Highlight */

.blob-5{
    width: 700px;
    height: 550px;

    top: -180px;
    left: -150px;

    background:
        rgba(255,255,255,.045);

    animation:
        float1 26s ease-in-out infinite;
}

/* Secondary Highlight */

.blob-6{
    width: 900px;
    height: 650px;

    right: -250px;
    bottom: -200px;

    background:
        rgba(255,255,255,.03);

    animation:
        float2 32s ease-in-out infinite;
}

/* Shadow Depth */

.blob-7{
    width: 800px;
    height: 600px;

    top: 20%;
    left: 35%;

    background:
        rgba(0,0,0,.18);

    animation:
        float3 38s ease-in-out infinite;
}

/* ===== ANIMATION ===== */

@keyframes float1{
    50%{
        transform:
            translate(60px,40px)
            rotate(12deg);
    }
}

@keyframes float2{
    50%{
        transform:
            translate(-70px,-50px)
            rotate(-10deg);
    }
}

@keyframes float3{
    50%{
        transform:
            translate(40px,-30px)
            rotate(8deg);
    }
}

.portfolioImg {
    flex: 0 0 600px;
    height: 40vh;
}

.portfolioImg.img001 {
    background-image: url(./assets/img001.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.portfolioImg.img002 {
    background-image: url(./assets/img002.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.portfolioImg.img003 {
    background-image: url(./assets/img003.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.portfolioImg.img004 {
    background-image: url(./assets/img004.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ourProcess {
    position: relative;
    width: 100%;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
            rgba(55, 32, 12, .55),
            transparent 60%),
        radial-gradient(circle at bottom right,
            rgba(55, 32, 12, .45),
            transparent 65%),
        radial-gradient(circle at top right,
            rgba(90, 60, 25, .35),
            transparent 55%),
        #7A5C3E;
}

.ourProcess .processHead {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.ourProcess .processHead .bigHeading {
    color: #FFFFFF;
}

.ourProcess .processSub {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #F7F4EE;
    max-width: 700px;
    margin-top: 14px;
    line-height: 1.7rem;
    opacity: 0.92;
}

.ourProcess .processContainer {
    width: min(1380px, 92%);
    margin: 0 auto;
    padding: 50px 0 20px;
}

.ourProcess .processBox {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ourProcess .processChild {
    position: relative;
    background: rgba(38, 26, 17, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 42px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ourProcess .processChild:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.7);
    background: rgba(48, 32, 20, 0.65);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(212, 175, 55, 0.15);
}

.ourProcess .processStepBadge {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light, #D9B57A);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2px 10px;
    border-radius: 12px;
    letter-spacing: 1px;
}

.ourProcess .processIconBox {
    position: relative;
    width: 88px;
    height: 88px;
    border: solid 1.5px var(--gold, #B08D57);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(45, 34, 23, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    margin-bottom: 4px;
    transition: all 0.35s ease;
}

.ourProcess .processChild:hover .processIconBox {
    border-color: var(--gold-light, #D9B57A);
    background: rgba(181, 138, 73, 0.3);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.ourProcess .processChild .material-symbols-outlined {
    font-size: 2.8rem;
    color: var(--gold-light, #D9B57A);
    transition: transform 0.35s ease, color 0.35s ease;
}

.ourProcess .processChild:hover .material-symbols-outlined {
    transform: scale(1.12) rotate(6deg);
    color: #FFFFFF;
}

.ourProcess .processChild .smallHeading {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-light, #D9B57A);
    margin-top: 4px;
}

.ourProcess .processChild p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 0.94rem;
    line-height: 1.6rem;
    color: #F7F4EE;
    opacity: 0.92;
}

/* Responsive Grid Breakpoints for Process */
@media (max-width: 1200px) {
    .ourProcess .processBox {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .ourProcess .processBox {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .ourProcess .processBox {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .ourProcess .processChild {
        padding: 36px 20px 28px;
    }
}

:root{
    --bg:#37200c;
    --card:#4a2d14;
    --gold:#d4af37;
    --white:#fff;
    --text:#d9d3ce;
}

.testimonials{
    background:var(--bg);
    padding:120px 20px;
    position:relative;
    overflow:hidden;
}

/* Decorative blobs */

.testimonials::before{
    content:"";
    width:450px;
    height:450px;

    background:radial-gradient(circle,
            rgba(212,175,55,.12),
            transparent 70%);

    position:absolute;
    top:-180px;
    left:-120px;

}

.testimonials::after{
    content:"";
    width:500px;
    height:500px;

    background:radial-gradient(circle,
            rgba(255,255,255,.04),
            transparent 70%);

    position:absolute;
    bottom:-220px;
    right:-120px;
}

.section-heading{
    text-align:center;
    max-width:700px;
    margin:auto auto 60px;
}

.section-heading span,
.section-heading .smallHeading {
    color: var(--gold);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-heading h2{
    color:white;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size:5rem;
    margin:15px 0;
}

.section-heading p{
    color:#ccbfb5;
    line-height:1.8;
}

.testimonial-slider{
    position:relative;
    max-width:1050px;
    margin:auto;
}

.testimonial{
    display:none;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:30px;
    padding:45px 50px;
    position:relative;
    overflow:hidden;
    animation:fade .8s ease;
    box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.testimonial.active{
    display:flex;
    gap:45px;
    align-items:center;
}

.quote-bg{
    position:absolute;
    top:-55px;
    left:-25px;
    font-size:18rem;
    line-height:1;
    color:rgba(212,175,55,.08);    
    pointer-events:none;
    z-index:1;
    user-select:none;
}

.testimonial-photo-wrapper{
    flex-shrink:0;
    width:340px;
    height:280px;
    border-radius:22px;
    overflow:hidden;
    border:2.5px solid var(--gold);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
    position:relative;
    z-index:2;
}

.testimonial-family-img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .5s ease;
}

.testimonial-photo-wrapper:hover .testimonial-family-img{
    transform:scale(1.04);
}

.testimonial-content{
    flex:1;
    position:relative;
    z-index:2;
}

.client-info h3 {
    color:white;
    margin-bottom:6px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.client-location{
    color:var(--gold);
    font-family: "Manrope", sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    display:flex;
    align-items:center;
    gap:8px;
}

.stars{
    color:var(--gold);
    margin-top:10px;
    font-size:1.25rem;
    letter-spacing:4px;
}

.review{
    margin-top:20px;
    color:#e8ded5;
    line-height:1.85;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size:1.08rem;
    font-style:italic;
    position:relative;
    z-index:2;
}

.dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:35px;
}

.dots:empty {
    display:none;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#836b53;
    cursor:pointer;
    transition:.35s;
}

.dot.active{
    background:var(--gold);
    transform:scale(1.3);
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:none;
    }
}

@media(max-width:850px){
    .testimonial.active{
        flex-direction:column;
        text-align:center;
        gap:30px;
        padding:35px 25px;
    }

    .testimonial-photo-wrapper{
        width:100%;
        max-width:400px;
        height:250px;
    }

    .client-location{
        justify-content:center;
    }

    .quote{
        display:none;
    }
}

/* ===================================================
   GLOBAL REVEAL ANIMATIONS
=================================================== */

.reveal{
    opacity:0;
    transform:translateY(70px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,.61,.36,1);

    will-change:transform, opacity;
}

.reveal.show{
    opacity:1;
    transform:translateY(0);
}

/* Left */

.reveal-left{
    opacity:0;
    transform:translateX(-80px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,.61,.36,1);
}

.reveal-left.show{
    opacity:1;
    transform:none;
}

/* Right */

.reveal-right{
    opacity:0;
    transform:translateX(80px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,.61,.36,1);
}

.reveal-right.show{
    opacity:1;
    transform:none;
}

/* Zoom */

.reveal-scale{
    opacity:0;
    transform:scale(.92);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-scale.show{
    opacity:1;
    transform:scale(1);
}

/* Stagger */

.reveal-delay-1{transition-delay:.12s;}
.reveal-delay-2{transition-delay:.24s;}
.reveal-delay-3{transition-delay:.36s;}
.reveal-delay-4{transition-delay:.48s;}
.reveal-delay-5{transition-delay:.60s;}
.reveal-delay-6{transition-delay:.72s;}
.reveal-delay-7{transition-delay:.84s;}
.reveal-delay-8{transition-delay:.96s;}

/* Accessibility */

@media(prefers-reduced-motion:reduce){
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale{
        opacity:1;
        transform:none;
        transition:none;
    }
}

/*======================================================================
                UNIVERSAL REVEAL ANIMATION SYSTEM
======================================================================*/

/* Base */

.reveal{

    --reveal-distance:60px;

    opacity:0;

    transition-property:
        opacity,
        transform,
        filter;

    transition-duration:.9s;

    transition-timing-function:
        cubic-bezier(.22,1,.36,1);

    will-change:
        opacity,
        transform,
        filter;
}


/*=========================================================
    Directions
=========================================================*/

.reveal-up{

    transform:
        translateY(var(--reveal-distance));

    filter:blur(8px);
}

.reveal-down{

    transform:
        translateY(calc(var(--reveal-distance) * -1));

    filter:blur(8px);
}

.reveal-left{

    transform:
        translateX(calc(var(--reveal-distance) * -1));

    filter:blur(8px);
}

.reveal-right{

    transform:
        translateX(var(--reveal-distance));

    filter:blur(8px);
}


/*=========================================================
    Zoom
=========================================================*/

.reveal-zoom{

    transform:scale(.92);

    filter:blur(10px);
}


/*=========================================================
    Rotate
=========================================================*/

.reveal-rotate{

    transform:
        rotate(-5deg)
        scale(.95);

    filter:blur(10px);
}


/*=========================================================
    Active State
=========================================================*/

.reveal.show{

    opacity:1;

    transform:none;

    filter:blur(0);
}




.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        90deg,
        rgba(0,0,0,.72),
        rgba(0,0,0,.35),
        rgba(0,0,0,.15)
    );

    z-index: 2;

    pointer-events: none;

}

/* The delayed drop-down background image element */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("./assets/hero.png") no-repeat 82% 60%/cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: scale(1.1) rotate(0.01deg);
    filter: blur(15px);
    will-change: transform, opacity, filter;
    transition: background-position 0.35s ease;
}

/* ==========================================================================
   HERO RESPONSIVE BG ADJUSTMENT (<= 1500px) & MOBILE VERTICAL FULLSCREEN
   ========================================================================== */
@media (max-width: 1500px) {
    .hero-bg {
        background-position: 82% 62% !important;
    }
}

/* Applying headlineContainer positioning and layout from width 1350px and below */
@media (max-width: 1350px) {
    .hero {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding-top: 85px !important;
        padding-bottom: 25px !important;
        box-sizing: border-box !important;
    }
    
    .hero-bg {
        background-position: 80% 64% !important;
        background-size: cover !important;
    }

    .headlineContainer {
        width: 90% !important;
        max-width: 580px !important;
        height: auto !important;
        min-height: auto !important;
        margin: 0 auto 10px auto !important;
        padding: 48px 30px 95px 30px !important;
        position: relative !important;
        box-sizing: border-box !important;
        border-radius: 6px;
        overflow: visible !important;
    }

    .headlineContainer::before {
        position: absolute !important;
        content: '' !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(217, 181, 122, 0.05) !important;
        backdrop-filter: blur(2px) !important;
        -webkit-backdrop-filter: blur(2px) !important;
        border: 1px solid rgba(217, 181, 122, 0.3) !important;
        border-top: 1.5px solid rgba(255, 245, 215, 0.5) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        opacity: 1 !important;
        z-index: 91 !important;
        border-radius: 6px;
        filter: none !important;
    }

    .headline {
        position: relative !important;
        padding: 0 !important;
        margin: 0 0 10px 0 !important;
        z-index: 99 !important;
    }

    .heroTag {
        display: inline-block !important;
        font-size: 0.72rem !important;
        letter-spacing: 3.5px !important;
        margin-bottom: 0 !important;
        color: var(--color-primary) !important;
        font-weight: 600 !important;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6) !important;
    }

    .xlHeading {
        position: relative !important;
        z-index: 100 !important;
        font-size: 3rem !important;
        line-height: 1.08 !important;
        letter-spacing: -0.5px !important;
        margin: 0 0 4px 0 !important;
        word-break: break-word !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    }

    .heroDescription {
        position: relative !important;
        z-index: 100 !important;
        margin-top: 14px !important;
        margin-bottom: 0 !important;
        max-width: 100% !important;
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
        padding-left: 0 !important;
        color: #ffffff !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75) !important;
    }

    .btnContainer {
        position: absolute !important;
        width: 100% !important;
        height: 54px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        z-index: 100 !important;
        overflow: hidden !important;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        opacity: 1 !important;
    }

    .smPanel {
        width: 60% !important;
        height: 100% !important;
        gap: 12px !important;
        padding: 0 10px !important;
        background: var(--gold) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 100 !important;
        box-sizing: border-box !important;
    }

    .smCaption {
        font-size: 0.88rem !important;
        color: var(--heading) !important;
        white-space: nowrap !important;
    }

    .smButton {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.88rem !important;
        flex-shrink: 0 !important;
    }

    .btn-primary {
        width: 40% !important;
        height: 100% !important;
    }

    .btnGetQuote {
        width: 100% !important;
        height: 100% !important;
        font-size: 0.9rem !important;
        padding: 0 8px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 650px) {
    .hero-bg {
        background-position: 76% 65% !important;
    }

    .headlineContainer {
        width: 92% !important;
        max-width: 460px !important;
        padding: 40px 24px 86px 24px !important;
        margin-bottom: 15px !important;
    }

    .heroTag {
        font-size: 0.68rem !important;
        letter-spacing: 3px !important;
    }

    .xlHeading {
        font-size: 2.4rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.5px !important;
    }

    .heroDescription {
        margin-top: 12px !important;
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }

    .btnContainer {
        height: 48px !important;
    }

    .smPanel {
        width: 58% !important;
        gap: 8px !important;
        padding: 0 8px !important;
    }

    .smCaption {
        font-size: 0.8rem !important;
    }

    .smButton {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
    }

    .btn-primary {
        width: 42% !important;
    }

    .btnGetQuote {
        font-size: 0.82rem !important;
    }
}

@media (max-width: 575px) {
    .hero {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        height: auto !important;
    }

    .hero-bg {
        background-position: 74% 65% !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px !important;
        padding-bottom: 15px !important;
    }

    .hero-bg {
        background-position: 70% 65% !important;
    }

    .headlineContainer {
        width: 94% !important;
        max-width: 380px !important;
        padding: 32px 20px 76px 20px !important;
        margin-bottom: 10px !important;
    }

    .heroTag {
        font-size: 0.62rem !important;
        letter-spacing: 2px !important;
    }

    .xlHeading {
        font-size: 1.95rem !important;
        line-height: 1.12 !important;
        letter-spacing: -0.3px !important;
    }

    .heroDescription {
        margin-top: 10px !important;
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
    }

    .btnContainer {
        height: 44px !important;
    }

    .smPanel {
        width: 54% !important;
        gap: 6px !important;
        padding: 0 6px !important;
    }

    .smCaption {
        display: none !important;
    }

    .smButton {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.75rem !important;
    }

    .btn-primary {
        width: 46% !important;
    }

    .btnGetQuote {
        font-size: 0.78rem !important;
        padding: 0 4px !important;
    }
}

@media (max-width: 360px) {
    .hero-bg {
        background-position: 68% 65% !important;
    }

    .headlineContainer {
        width: 96% !important;
        padding: 26px 16px 68px 16px !important;
    }

    .xlHeading {
        font-size: 1.75rem !important;
    }

    .heroDescription {
        font-size: 0.76rem !important;
    }

    .btnContainer {
        height: 40px !important;
    }

    .smPanel {
        width: 50% !important;
    }

    .btn-primary {
        width: 50% !important;
    }
}
body.loaded .hero-bg {
    animation: cinematicReveal 3.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes cinematicReveal {
    0% {
        opacity: 0;
        transform: scale(1.15) rotate(0.01deg);
        filter: blur(15px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0.01deg);
        filter: blur(0);
    }
}


.xlHeading {
    opacity: 0;
    transform: translateY(35px);
}
body.loaded .xlHeading {
    animation: headline 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
body.loaded .xlHeading:nth-child(2) { animation-delay: 0.30s; }
body.loaded .xlHeading:nth-child(3) { animation-delay: 0.48s; }
body.loaded .xlHeading:nth-child(4) { animation-delay: 0.66s; }
body.loaded .xlHeading:nth-child(5) { animation-delay: 0.84s; }

@keyframes headline {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.beforeAfter {
    position: relative;
    padding: 120px 0;
    background-color: #fdfcf9; /* Premium warm ivory */
    background-image: 
        radial-gradient(rgba(181, 138, 73, 0.05) 1.5px, transparent 1.5px), /* Designer Dotted Grid */
        radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.06), transparent 45%), /* Top left gold highlight */
        radial-gradient(circle at 85% 85%, rgba(181, 138, 73, 0.07), transparent 45%); /* Bottom right gold highlight */
    background-size: 36px 36px, 100% 100%, 100% 100%;
    overflow: hidden;
}

/* Decorative Gold Clouds */
.beforeAfter::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -120px;
    width: 600px;
    height: 400px;
    background: url('./assets/gold-cloud-premium.svg') no-repeat center/contain;
    opacity: 0.12;
    filter: blur(8px);
    pointer-events: none;
    z-index: 1;
}

.beforeAfter::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -120px;
    width: 600px;
    height: 400px;
    background: url('./assets/gold-cloud-premium.svg') no-repeat center/contain;
    opacity: 0.12;
    filter: blur(8px);
    transform: rotate(180deg);
    pointer-events: none;
    z-index: 1;
}

.beforeAfterHead {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.beforeAfterHead p {
    max-width: 650px;
    margin: 20px auto 0;
    font-family: Manrope;
    line-height: 1.8;
}

.comparison {
    position: relative;
    z-index: 2;
    width: min(1200px, 90%);
    height: 700px;
    margin: auto;
    overflow: hidden;
    border-radius: 24px;
    box-shadow:
    0 30px 70px rgba(0,0,0,.18);
    cursor: ew-resize;
}

.beforeImage,
.afterImage{

position:absolute;

width:100%;

height:100%;

object-fit:cover;

user-select:none;

pointer-events:none;

}

.afterImage{

right:0;

left:auto;

}

.afterWrapper{

position:absolute;

top:0;

right:0;

left:auto;

width:50%;

height:100%;

overflow:hidden;

}

.divider{

position:absolute;

top:0;

left:50%;

transform:translateX(-50%);

width:4px;

height:100%;

background:white;

z-index:20;

}

.handle{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

width:70px;

height:70px;

border-radius:50%;

background:#B08D57;

display:flex;

justify-content:center;

align-items:center;

font-size:1.4rem;

color:white;

box-shadow:
0 10px 25px rgba(0,0,0,.25);

}

.label{

position:absolute;

top:25px;

padding:10px 22px;

border-radius:40px;

backdrop-filter:blur(12px);

background:rgba(255,255,255,.15);

color:white;

font-family:Manrope;

font-weight:700;

letter-spacing:2px;

z-index:30;

transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;

will-change: transform, opacity;

}

.beforeLabel{

left:25px;

right:auto;

}

.afterLabel{

right:25px;

left:auto;

}

@keyframes pulseHandle{

    0%,100%{
        transform:translate(-50%,-50%) scale(1);
    }

    50%{
        transform:translate(-50%,-50%) scale(1.08);
    }

}

.handle{
    animation:pulseHandle 2s infinite;
}

/*==================================================
BEFORE / AFTER - PREMIUM REVEAL
==================================================*/

.beforeAfter{

    opacity:0;

    transform:translateY(60px);

    transition:
        opacity .9s ease,
        transform .9s ease;

}

.beforeAfter.show{

    opacity:1;

    transform:translateY(0);

}


/*------------------------------------
Heading Animation
------------------------------------*/

.beforeAfterHead>*{

    opacity:0;

    transform:translateY(24px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}

.beforeAfter.show .smallHeading{

    transition-delay:.10s;

}

.beforeAfter.show .bigHeading{

    transition-delay:.25s;

}

.beforeAfter.show p{

    transition-delay:.40s;

}

.beforeAfter.show .beforeAfterHead>*{

    opacity:1;

    transform:translateY(0);

}


/*------------------------------------
Comparison Slider
------------------------------------*/

.comparison{

    opacity:0;

    transform:scale(.97);

    transition:
        opacity .9s ease,
        transform .9s ease;

}

.beforeAfter.show .comparison{

    opacity:1;

    transform:scale(1);

    transition-delay:.45s;

}


/*------------------------------------
Images
------------------------------------*/

.comparison{

    overflow:hidden;

}

.beforeImage,
.afterImage{

    transition:transform 8s ease;

}

.beforeAfter.show .beforeImage,
.beforeAfter.show .afterImage{

    transform:scale(1.04);

}


/*------------------------------------
Handle
------------------------------------*/

.handle{

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    animation:pulseHandle 2s ease-in-out infinite;

}

.handle:hover{

    transform:translate(-50%,-50%) scale(1.08);

    box-shadow:0 12px 30px rgba(0,0,0,.25);

}


/*------------------------------------
Labels
------------------------------------*/

.label{

    transition:
        transform .3s ease,
        opacity .3s ease;

}

.comparison:hover .label{

    transform:translateY(-2px);

}




@media(max-width:900px){

.comparison{

height:420px;

}

.handle{

width:55px;
height:55px;

}

}

.heroTag{
    display:inline-block;
    margin-bottom:25px;

    font-size:.78rem;
    letter-spacing:6px;
    text-transform:uppercase;

    color:var(--color-primary);
    font-weight:600;
}

.headline{
    max-width:720px;
}

.xlHeading{

    line-height:.95;

    margin:0;

    font-weight:800;

    letter-spacing:-2px;

    text-transform:uppercase;
}

.xlHeading span{
    display:inline-block;
}

.gold{

    color:var(--color-primary);

}

.heroDescription{

    margin-top:35px;

    max-width:650px;

    color:#d0d0d0;

    font-size:1.15rem;

    line-height:1.8;

    font-weight:300;

    opacity: 0;
    transform: translateY(30px);

}


.ctaButtons{

    display:flex;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;

}

.btnOutline{

    padding:16px 34px;

    background:transparent;

    border:1px solid var(--color-primary);

    color:white;

    cursor:pointer;

    transition:.4s;

}

.btnOutline:hover{

    background:var(--color-primary);

    color:black;

}

.heroStats{

    display:flex;

    gap:55px;

    margin-top:55px;

}

.stat{

    display:flex;

    flex-direction:column;

}

.stat h2{

    color:var(--color-primary);

    font-size:2rem;

    margin:0;

}

.stat span{

    color:#bdbdbd;

    margin-top:6px;

    letter-spacing:1px;

    text-transform:uppercase;

    font-size:.8rem;

}


/* ======================================================================
   PINLIGHT INTERIORS
   PREMIUM GET A QUOTE MODAL
   PART 1A OF 3
   Overlay • Modal Card • Left Panel
   ====================================================================== */


/* ==========================================================
   FULL SCREEN OVERLAY
========================================================== */

.quote-modal{

    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:30px 20px;

    background:rgba(15,15,15,.75);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    opacity:0;
    visibility:hidden;

    transition:opacity .40s ease, visibility .40s ease;

    z-index:99999;

    overflow-y:auto;
    -webkit-overflow-scrolling:touch;

}

.quote-modal.active{

    opacity:1;
    visibility:visible;

}


/* ==========================================================
   MODAL CARD
========================================================== */

.quote-card{

    width:min(1080px,95vw);
    height:min(700px,90vh);

    display:grid;

    grid-template-columns:380px 1fr;

    overflow:hidden;

    border-radius:28px;

    background:#ffffff;

    box-shadow:
    0 30px 80px rgba(0,0,0,.35);

    position:relative;

    transform:translateY(30px) scale(.97);

    transition:all .40s cubic-bezier(.19,1,.22,1);

    margin:auto;

}

.quote-modal.active .quote-card{

    transform:translateY(0) scale(1);

}


/*--------------------------------------------------------------
    MODAL CLOSE BUTTON
--------------------------------------------------------------*/

.quote-close {

    position: absolute;

    top: 10px;
    right: 12px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    visibility: visible;

    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    cursor: pointer;

    transition: all .3s ease;

    z-index: 100;
}

.quote-close:hover {

    background: #B08D57;

    color: #ffffff;

    transform: rotate(90deg) scale(1.08);

    box-shadow: 0 6px 16px rgba(176, 141, 87, 0.4);

}


/* ==========================================================
   LEFT PANEL
========================================================== */

.quote-left{

    position:relative;

    overflow:hidden;

    display:flex;
    flex-direction:column;

    justify-content:flex-start;

    color:#ffffff;

    padding:40px 34px 30px;

    background:
    linear-gradient(
        rgba(32,22,12,.82),
        rgba(32,22,12,.88)
    ),
    url("./assets/quote-bg.png");

    background-size:cover;
    background-position:center;

}


/* soft overlay */

.quote-left::before{

    content:"";

    position:absolute;

    width:620px;
    height:620px;

    left:-220px;
    top:-220px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(212,170,82,.55) 0%,
        rgba(212,170,82,.32) 28%,
        rgba(212,170,82,.16) 52%,
        rgba(212,170,82,.08) 68%,
        transparent 82%
    );

    filter:blur(22px);

    pointer-events:none;

    z-index:1;

}


/* ==========================================================
   LOGO
========================================================== */

.quote-logo{

    position:relative;

    z-index:3;

    width:max-content;

    margin-bottom:24px;

    animation:logoFloat 6s ease-in-out infinite;

}

.quote-logo img{

    width:145px;

    display:block;

    position:relative;

    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)) drop-shadow(0 0 1px rgba(0,0,0,0.4));

}

/* ==========================================================
   LOGO FLOAT
========================================================== */

@keyframes logoFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-4px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ==========================================================
   LEFT CONTENT
========================================================== */

.quote-left-content{

    position:relative;

    z-index:2;

}

.quote-left-content h2{

    font-size:1.85rem;

    line-height:1.22;

    font-weight:700;

    margin-bottom:14px;

    color: rgba(246,241,231,.95);

}

.quote-description{

    font-family:"Manrope",sans-serif;

    font-size:0.88rem;

    font-weight: 400;

    line-height:1.55;

    letter-spacing: 0.2px;

    color: rgba(246,241,231,.95);

    margin-bottom:20px;

}


/* ==========================================================
   DIVIDER
========================================================== */

.quote-divider{

    width:65px;
    height:3px;

    border-radius:20px;

    margin-bottom:22px;

    background:
    linear-gradient(
        to right,
        #b58a49,
        #e2c98c
    );

}


/* ==========================================================
   BENEFITS
========================================================== */

.quote-benefits{

    display:flex;
    flex-direction:column;

    gap:16px;

}

.benefit-item{

    display:flex;
    align-items:center;
    font-family:"Manrope",sans-serif;

    font-size:0.90rem;

    font-weight: 400;

    line-height:1.4;

    letter-spacing: 0.2px;

    color: rgba(246,241,231,.95);

    gap:12px;

}

.benefit-icon{

    width:32px;

    height:32px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#e0bf7b;

    font-size:0.85rem;

    flex-shrink:0;

}

.benefit-item span{

    font-size:.90rem;

    color:#f7f7f7;

    letter-spacing:.2px;

}


/* ======================================================================
   END OF GET A QUOTE MODAL
   PART 1A OF 3
   ====================================================================== */


/*======================================================================

    GET A QUOTE MODAL
    PART 1B OF 3
    RIGHT PANEL - FOUNDATION

    Includes:
    • Right Panel Layout
    • Header
    • Introductory Text
    • Vertical Rhythm
    • Responsive Foundation

======================================================================*/


/*--------------------------------------------------------------
    RIGHT PANEL
--------------------------------------------------------------*/

.quote-right {

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background: #FCFBF8;

    padding: 38px 40px 30px;

    overflow-y: auto;
    max-height: 100%;

}

.quote-right::-webkit-scrollbar {
    width: 5px;
}

.quote-right::-webkit-scrollbar-track {
    background: transparent;
}

.quote-right::-webkit-scrollbar-thumb {
    background: rgba(176, 141, 87, 0.25);
    border-radius: 10px;
}

.quote-right::-webkit-scrollbar-thumb:hover {
    background: rgba(176, 141, 87, 0.5);
}


/*--------------------------------------------------------------
    RIGHT PANEL INNER WRAPPER
--------------------------------------------------------------*/

.quote-right-inner {

    width: 100%;
    max-width: 470px;

    margin: 0 auto;

}


/*--------------------------------------------------------------
    FORM HEADER
--------------------------------------------------------------*/

.quote-right h2 {

    margin: 0;

    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: .4px;

    color: var(--color-heading);

    padding-right: 44px;

}


/*--------------------------------------------------------------
    HEADER ACCENT
--------------------------------------------------------------*/

.quote-right h2::after {

    content: "";

    display: block;

    width: 60px;
    height: 2px;

    margin-top: 12px;

    background: linear-gradient(
        90deg,
        var(--color-gold),
        transparent
    );

}


/*--------------------------------------------------------------
    INTRODUCTORY PARAGRAPH
--------------------------------------------------------------*/

.quote-right p {

    margin: 10px 0 18px;

    font-family: var(--font-body);

    font-size: .94rem;
    font-weight: 400;

    line-height: 1.6;

    color: var(--color-text);

    max-width: 42ch;

}


/*--------------------------------------------------------------
    FORM
--------------------------------------------------------------*/

.quote-form {

    display: flex;
    flex-direction: column;

    gap: 18px;

}


/*======================================================================

    END OF GET A QUOTE MODAL
    PART 1B OF 3
    RIGHT PANEL - FOUNDATION

======================================================================*/


/*======================================================================

    GET A QUOTE MODAL
    PART 1B OF 3

    RIGHT PANEL
    PREMIUM FORM DESIGN

    Pinlight Interiors
    Version : 2.0

======================================================================*/


/*======================================================================
    FORM CONTAINER
======================================================================*/

.quote-form{

    display:flex;
    flex-direction:column;
    gap:16px;

    width:100%;

    margin-top:14px;

}


/*======================================================================
    FORM ROW
======================================================================*/

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    column-gap:16px;
    row-gap:16px;

    margin-bottom:0;

    width:100%;

}


/*======================================================================
    FORM GROUP
======================================================================*/

.form-group{

    position:relative;

    width:100%;

}


.form-group.full-width{

    width:100%;

    margin-bottom:20px;

}


/*======================================================================
    INPUTS
======================================================================*/

.form-group input,

.form-group select{

    width:100%;

    height:54px;

    padding:20px 18px 6px;

    font-size:15px;

    font-weight:500;

    color:#2D2D2D;

    background:#FCFBF8;

    border:1px solid rgba(176,141,87,.20);

    border-radius:16px;

    outline:none;

    transition:
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease,
        transform .25s ease;

}


/*======================================================================
    TEXTAREA
======================================================================*/

.form-group textarea{

    width:100%;

    height:100px;

    min-height:85px;

    max-height:120px;

    padding:20px 22px 14px;

    font-size:15px;

    font-weight:500;

    line-height:1.6;

    color:#2D2D2D;

    background:#FCFBF8;

    border:1px solid rgba(176,141,87,.20);

    border-radius:16px;

    resize:none;

    overflow-y:auto;

    outline:none;

    transition:
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;

}


/*======================================================================
    PLACEHOLDER
======================================================================*/

.form-group input::placeholder,

.form-group textarea::placeholder{

    color:transparent;

}


/*======================================================================
    LABEL
======================================================================*/

.form-group label{

    position:absolute;

    left:16px;

    top:15px;

    padding:0 6px;

    font-size:14px;

    font-weight:500;

    color:#777;

    background:transparent;

    pointer-events:none;

    transition:all .30s ease;

}


.form-group label span{

    font-size:12px;

    color:#999;

}


/*======================================================================
    FIELD HOVER
======================================================================*/

.form-group input:hover,

.form-group select:hover,

.form-group textarea:hover{

    background:#FCFBF8;

    border-color:rgba(176,141,87,.55);

}


/*======================================================================
    FIELD FOCUS
======================================================================*/

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

    background:#FCFBF8;

    border-color:#B08D57;

    box-shadow:

        0 0 0 4px rgba(212,175,55,.15);

}


/*======================================================================

    CONTINUE WITH PART 1B-2

======================================================================*/

/*======================================================================

    GET A QUOTE MODAL
    PART 1B OF 3

    RIGHT PANEL
    PREMIUM FORM DESIGN

    SECTION 2

======================================================================*/


/*======================================================================
    FLOATING LABEL
======================================================================*/

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,

.form-group select:focus + label,
.form-group select:valid + label{

    top:-9px;

    left:14px;

    padding:0 6px;

    font-size:11px;

    font-weight:600;

    letter-spacing:.5px;

    color:#B08D57;

    background:#FCFBF8;

}


/*======================================================================
    ACTIVE LABEL OPTIONAL TEXT
======================================================================*/

.form-group label span{

    transition:.30s ease;

}

.form-group textarea:focus + label span,
.form-group textarea:not(:placeholder-shown) + label span{

    color:#C8A56A;

}


/*======================================================================
    PREMIUM SELECT
======================================================================*/

.form-group select{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    cursor:pointer;

    padding-right:58px;

}


/*======================================================================
    CUSTOM DROPDOWN ARROW
======================================================================*/

.form-group::after{

    content:"";

    position:absolute;

    top:50%;

    right:22px;

    width:10px;
    height:10px;

    border-right:2px solid #B08D57;
    border-bottom:2px solid #B08D57;

    transform:
        translateY(-65%)
        rotate(45deg);

    pointer-events:none;

    transition:.30s ease;

}


/* Don't show arrow for textarea/input */

.form-group:not(:has(select))::after{

    display:none;

}


/*======================================================================
    SELECT HOVER
======================================================================*/

.form-group:hover::after{

    border-color:#C89D53;

}


/*======================================================================
    SELECT FOCUS
======================================================================*/

.form-group:focus-within::after{

    transform:
        translateY(-50%)
        rotate(225deg);

}


/*======================================================================
    INPUT TRANSITIONS
======================================================================*/

.form-group input,
.form-group textarea,
.form-group select{

    transition:

        border-color .35s ease,

        background .35s ease,

        box-shadow .35s ease,

        transform .25s ease,

        color .30s ease;

}


/*======================================================================
    SUBTLE LIFT
======================================================================*/

.form-group:focus-within{

    transform:translateY(-2px);

}


/*======================================================================
    OPTIONAL GLASS HIGHLIGHT
======================================================================*/

.form-group input,
.form-group textarea,
.form-group select{

    background-image:

        linear-gradient(

            rgba(255,255,255,.55),

            rgba(255,255,255,0)

        );

}


/*======================================================================
    AUTOFILL FIX
======================================================================*/

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill{

    -webkit-box-shadow:
        0 0 0 1000px #FCFBF8 inset;

    -webkit-text-fill-color:#2D2D2D;

}


/*======================================================================
    VALIDATION STATES
======================================================================*/

.form-group input:invalid:focus,
.form-group select:invalid:focus{

    border-color:#d27b7b;

}


.form-group input:valid,
.form-group select:valid{

    border-color:rgba(176,141,87,.28);

}


/*======================================================================
    FIELD SPACING REFINEMENT
======================================================================*/

.form-group + .form-group{

    margin-top:2px;

}


/*======================================================================

    CONTINUE WITH PART 1B-3

======================================================================*/

/*======================================================================

    GET A QUOTE MODAL
    PART 1B OF 3

    RIGHT PANEL
    PREMIUM FORM DESIGN

    SECTION 3

======================================================================*/


/*======================================================================
    FORM SPACING REFINEMENT
======================================================================*/

.form-row{

    margin-bottom:0;

}

.form-group.full-width{

    margin-top:0;

    margin-bottom:0;

}

.quote-submit{

    margin-top:0;

}


/*======================================================================
    FIXED TEXTAREA
======================================================================*/

.form-group textarea{

    height:100px;

    min-height:85px;

    max-height:120px;

    resize:none;

    overflow-y:auto;

}


/*======================================================================
    ERROR MESSAGE
======================================================================*/

.form-message{

    display:none;

    font-size:14px;

    line-height:1.6;

    animation:fadeUp .35s ease;

}

.error-message{

    display: none;

    background: transparent !important;

    border: none !important;

    color: #ff4a4a !important;

    font-size: 0.92rem !important;

    align-items: center !important;

    gap: 8px !important;

    font-weight: 500 !important;

    margin-top: 10px !important;

    margin-bottom: 15px !important;

}


/*======================================================================
    SUBMIT BUTTON
======================================================================*/

.quote-submit {
    position: relative;
    width: 100% !important;
    height: 52px;
    border: none;
    border-radius: 14px;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    cursor: pointer;
    overflow: hidden;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #8B6B3D, #B08D57, #D8BB7A);
    box-shadow: 0 10px 28px rgba(176, 141, 87, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}


/*--------------------------------------------------------------
    BUTTON HOVER
--------------------------------------------------------------*/

.quote-submit:hover{

    transform:translateY(-3px);

    box-shadow:
        0 20px 42px rgba(212,175,55,.36);

    filter:brightness(1.03);

}


/*--------------------------------------------------------------
    BUTTON ACTIVE
--------------------------------------------------------------*/

.quote-submit:active{

    transform:translateY(0);

}


/*======================================================================
    BUTTON CONTENT
======================================================================*/

.quote-submit .btn-loader{

    display:none;

    align-items:center;

    justify-content:center;

    gap:12px;

}

.quote-submit.loading .btn-text{

    display:none;

}

.quote-submit.loading .btn-loader{

    display:flex;

}


/*======================================================================
    LOADING SPINNER
======================================================================*/

.spinner{

    width:18px;

    height:18px;

    border:2px solid rgba(255,255,255,.35);

    border-top-color:#FFFFFF;

    border-radius:50%;

    animation:spin .8s linear infinite;

}


/*======================================================================
    SUCCESS STATE
======================================================================*/

.quote-submit.success{

    background:linear-gradient(
        135deg,
        #3C8D56,
        #58A66F
    );

}


/*======================================================================
    DISABLED STATE
======================================================================*/

.quote-submit:disabled{

    cursor:not-allowed;

    opacity:.85;

}


/*======================================================================
    RESPONSIVE ENHANCEMENTS FOR GET A QUOTE MODAL
======================================================================*/

@media (max-width: 1024px) {
    .quote-modal {
        padding: 16px 14px;
        align-items: flex-start; /* Dialog box closer to header */
        justify-content: center;
    }
    .quote-card {
        grid-template-columns: 1fr !important;
        width: min(640px, 95vw);
        max-height: min(880px, 96vh);
        height: auto;
        border-radius: 24px;
        overflow-y: auto;
    }

    /* TOP HEADER BANNER */
    .quote-left {
        display: flex !important;
        padding: 26px 36px 20px;
        overflow: hidden;
    }
    .quote-logo {
        margin-bottom: 14px;
    }
    .quote-logo img {
        width: 125px;
    }
    .quote-left-content h2 {
        font-size: 1.30rem;
        line-height: 1.24;
        margin-bottom: 8px;
    }
    .quote-description {
        font-size: 0.85rem;
        line-height: 1.42;
        margin-bottom: 14px;
    }
    .quote-divider {
        display: none;
    }
    .quote-benefits {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
    }
    .benefit-item {
        gap: 10px;
        font-size: 0.82rem;
    }
    .benefit-icon {
        width: 24px;
        height: 24px;
        font-size: 0.72rem;
    }
    .benefit-item span {
        font-size: 0.82rem;
    }

    /* RIGHT FORM PANEL WITH SPACIOUS 38px SIDE PADDING */
    .quote-right {
        padding: 28px 38px 24px;
        max-height: none;
        overflow: visible;
    }
    .quote-right h2 {
        font-size: 1.55rem;
        padding-right: 36px;
    }
    .quote-right h2::after {
        margin-top: 6px;
        width: 50px;
    }
    .quote-right p {
        margin: 6px 0 16px;
        font-size: 0.88rem;
    }
    .quote-form {
        margin-top: 12px;
        gap: 16px !important;
    }
    .form-row {
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
        row-gap: 16px;
        margin-bottom: 0 !important;
    }
    .form-group.full-width,
    .quote-form .form-group {
        margin-bottom: 0 !important;
    }
    .form-group input,
    .form-group select {
        height: 50px;
        padding: 18px 20px 4px;
        font-size: 15px;
    }
    .form-group textarea {
        height: 78px;
        min-height: 65px;
        max-height: 90px;
        padding: 18px 20px 6px;
        font-size: 15px;
    }
    .form-group label {
        left: 18px;
        top: 13px;
        font-size: 13px;
    }
    .quote-submit {
        height: 48px;
        font-size: 0.95rem;
        margin-top: 6px;
    }
}

@media (max-width: 767px) {
    .quote-modal {
        padding: 12px 10px;
        align-items: flex-start;
    }
    .quote-card {
        width: min(540px, 96vw);
        border-radius: 20px;
        max-height: min(860px, 97vh);
    }
    .quote-close {
        top: 10px;
        right: 10px;
        width: 26px;
        height: 26px;
        font-size: 0.72rem;
        background: rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

    /* MOBILE BRANDING BANNER */
    .quote-left {
        display: flex !important;
        padding: 20px 28px 16px;
    }
    .quote-logo {
        margin-bottom: 10px;
    }
    .quote-logo img {
        width: 112px;
    }
    .quote-left-content h2 {
        font-size: 1.15rem;
        line-height: 1.20;
        margin-bottom: 6px;
    }
    .quote-description {
        font-size: 0.80rem;
        line-height: 1.35;
        margin-bottom: 10px;
    }
    .quote-benefits {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
    }
    .benefit-item {
        gap: 8px;
    }
    .benefit-icon {
        width: 22px;
        height: 22px;
        font-size: 0.68rem;
    }
    .benefit-item span {
        font-size: 0.78rem;
        line-height: 1.28;
    }

    /* MOBILE FORM PANEL WITH SPACIOUS 30px SIDE PADDING */
    .quote-right {
        padding: 24px 30px 20px;
    }
    .quote-right h2 {
        font-size: 1.32rem;
        padding-right: 32px;
    }
    .quote-right h2::after {
        margin-top: 4px;
        width: 42px;
    }
    .quote-right p {
        margin: 4px 0 12px;
        font-size: 0.84rem;
    }
    .quote-form {
        margin-top: 10px;
        gap: 14px !important;
    }
    .form-row,
    .quote-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-bottom: 0 !important;
    }
    .form-group.full-width,
    .quote-form .form-group {
        margin-bottom: 0 !important;
    }
    .form-group input,
    .form-group select {
        height: 48px;
        padding: 16px 18px 4px;
        font-size: 16px;
        border-radius: 12px;
    }
    .form-group textarea {
        height: 72px;
        min-height: 60px;
        max-height: 85px;
        padding: 16px 18px 4px;
        font-size: 16px;
        border-radius: 12px;
    }
    .form-group label {
        left: 16px;
        top: 12px;
        font-size: 13px;
    }
    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label,
    .form-group select:focus + label,
    .form-group select:valid + label {
        top: -8px;
        left: 14px;
        padding: 0 5px;
        font-size: 10px;
    }
    .quote-submit {
        height: 46px;
        font-size: 0.92rem;
        border-radius: 12px;
        margin-top: 4px;
    }
    .recaptcha-form-container {
        display: flex;
        justify-content: flex-end;
        transform: scale(0.84);
        transform-origin: right center;
        margin-bottom: 6px;
    }
}

@media (max-width: 575px) {
    .quote-modal {
        padding: 10px 8px;
    }
    .quote-card {
        border-radius: 18px;
        max-height: min(860px, 97vh);
    }
    .quote-left {
        padding: 18px 24px 12px;
    }
    .quote-left-content h2 {
        font-size: 1.10rem;
    }
    .quote-description {
        font-size: 0.78rem;
        margin-bottom: 8px;
    }
    .quote-benefits {
        gap: 6px 10px;
    }
    .benefit-item span {
        font-size: 0.76rem;
    }
    .quote-right {
        padding: 20px 24px 18px;
    }
    .form-group input,
    .form-group select {
        padding: 16px 18px 4px;
    }
    .form-group textarea {
        padding: 16px 18px 4px;
    }
    .form-group label {
        left: 16px;
    }
}

@media (max-height: 600px) {
    .quote-modal {
        padding: 6px;
        align-items: flex-start;
    }
    .quote-card {
        max-height: 98vh;
        overflow-y: auto;
    }
    .quote-left {
        padding: 10px 14px 6px;
    }
    .quote-logo {
        margin-bottom: 4px;
    }
    .quote-logo img {
        width: 90px;
    }
    .quote-left-content h2 {
        font-size: 0.98rem;
        margin-bottom: 2px;
    }
    .quote-description {
        display: none;
    }
    .quote-benefits {
        gap: 3px 6px;
    }
    .benefit-item span {
        font-size: 0.70rem;
    }
    .quote-right {
        padding: 12px 14px 12px;
    }
    .quote-right h2 {
        font-size: 1.15rem;
    }
    .quote-right p {
        margin: 2px 0 6px;
        font-size: 0.78rem;
    }
    .form-row {
        margin-bottom: 8px;
    }
    .form-group.full-width {
        margin-bottom: 8px;
    }
    .form-group input,
    .form-group select {
        height: 38px;
        padding: 12px 10px 2px;
        font-size: 13px;
    }
    .form-group textarea {
        height: 52px;
        min-height: 45px;
        max-height: 65px;
        padding: 10px 10px 4px;
        font-size: 13px;
    }
    .quote-submit {
        height: 38px;
        font-size: 0.85rem;
    }
}


/*======================================================================
    ANIMATIONS
======================================================================*/

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(12px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*======================================================================

    END OF GET A QUOTE MODAL
    PART 1B OF 3

======================================================================*/

/*======================================================================
    TWO-STEP INTERACTIVE QUOTE WIZARD (OPTION 1)
======================================================================*/
.wizard-card {
    width: min(650px, 94vw);
    background: #FCFBF8;
    border: 1.5px solid rgba(181, 138, 73, 0.55);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(181, 138, 73, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Wizard Steps Bar */
.wizard-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #19120B;
    padding: 12px 48px 12px 20px;
    border-bottom: 1px solid rgba(181, 138, 73, 0.25);
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-indicator.active {
    color: var(--gold, #B08D57);
}

.step-indicator.completed {
    color: #4CAF50;
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-indicator.active .step-num {
    background: linear-gradient(135deg, #8B6B3D, #B08D57);
    color: #FFFFFF;
}

.step-indicator.completed .step-num {
    background: #4CAF50;
    color: #FFFFFF;
}

.step-indicator-line {
    height: 2px;
    width: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* Wizard Body */
.wizard-body {
    position: relative;
    padding: 28px 36px 28px;
    min-height: auto;
    overflow: hidden;
}

/* Ambient Golden Blobs for Modal White Area */
.modal-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(45px);
    opacity: 0.14;
    animation: floatModalBlob 12s ease-in-out infinite alternate;
}

.modal-blob-1 {
    width: 240px;
    height: 240px;
    top: 25%;
    right: -50px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.9) 0%, rgba(181, 138, 73, 0.4) 60%, transparent 80%);
}

.modal-blob-2 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    left: -70px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.85) 0%, rgba(212, 175, 55, 0.3) 50%, transparent 80%);
    animation-delay: -6s;
}

@keyframes floatModalBlob {
    0% {
        transform: translate(0, 0) scale(0.95);
    }
    100% {
        transform: translate(15px, -15px) scale(1.08);
    }
}

.wizard-step {
    position: relative;
    z-index: 2;
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.wizard-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Step 1 Header */
.wizard-header {
    position: relative;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 10, 5, 0.94),
            rgba(32, 22, 12, 0.90)
        ),
        url("./assets/quote-bg.png") center center / cover no-repeat;
    margin: -28px -36px 20px -36px;
    padding: 24px 32px 20px;
    border-bottom: 1px solid rgba(181, 138, 73, 0.25);
    overflow: hidden;
}

/* Ambient glow light inside header */
.wizard-header::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    left: -150px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 170, 82, 0.35) 0%,
        rgba(212, 170, 82, 0.15) 35%,
        transparent 70%
    );
    filter: blur(25px);
    pointer-events: none;
    z-index: 1;
}

.wizard-header .quote-logo,
.wizard-header h2,
.wizard-header .wizard-subtitle,
.wizard-header .benefit-pills {
    position: relative;
    z-index: 2;
}

.wizard-header .quote-logo {
    margin: 0 auto 10px;
}

.wizard-header .quote-logo img {
    width: 128px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.wizard-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.85rem;
    color: rgba(246, 241, 231, 0.96);
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.wizard-subtitle {
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3A2B1D;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 20px;
}

/* Horizontal Benefit Pills */
.benefit-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.benefit-pills .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(212, 170, 82, 0.35);
    color: rgba(246, 241, 231, 0.95);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.benefit-pills .pill i {
    color: #E0BF7B;
    font-size: 0.75rem;
}

/* Project Options Grid */
.project-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.option-card {
    position: relative;
    background: #FFFFFF;
    border: 2px solid #EAE6DF;
    border-radius: 18px;
    padding: 18px 12px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    user-select: none;
}

.option-card:hover {
    border-color: #B08D57;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(181, 138, 73, 0.12);
}

.option-card.selected {
    border-color: #B08D57;
    background: rgba(181, 138, 73, 0.04);
    box-shadow: 0 8px 20px rgba(181, 138, 73, 0.15);
}

.option-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(181, 138, 73, 0.08);
    color: #8B6B3D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 10px;
    transition: all 0.25s ease;
}

.option-card:hover .option-icon,
.option-card.selected .option-icon {
    background: linear-gradient(135deg, #8B6B3D, #B08D57);
    color: #FFFFFF;
}

.option-title {
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2D2217;
    line-height: 1.25;
}

.option-check {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #B08D57;
    font-size: 0.95rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s ease;
}

.option-card.selected .option-check {
    opacity: 1;
    transform: scale(1);
}

/* Wizard Actions */
.wizard-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-wizard-next {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8B6B3D, #B08D57, #D8BB7A);
    color: #FFFFFF;
    border: none;
    padding: 14px 30px;
    border-radius: 14px;
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(181, 138, 73, 0.25);
    transition: all 0.3s ease;
}

.btn-wizard-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(181, 138, 73, 0.35);
}

.btn-wizard-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

/* Completely hide all reCAPTCHA badges, icons, frames, and legal text */
.grecaptcha-badge,
.recaptcha-form-container,
.recaptcha-legal-text,
iframe[src*="recaptcha"],
div[style*="grecaptcha"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    z-index: -9999 !important;
}

/* Step 2 Header */
.step2-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EAE6DF;
}

.btn-step-back {
    background: none;
    border: none;
    color: #8B6B3D;
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.btn-step-back:hover {
    color: #2D2217;
}

.selected-service-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(181, 138, 73, 0.08);
    border: 1px solid rgba(181, 138, 73, 0.25);
    padding: 5px 12px;
    border-radius: 30px;
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #70532C;
}

.edit-service-link {
    background: none;
    border: none;
    color: #B08D57;
    text-decoration: underline;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
}

/* Mobile Responsive Adjustments for Wizard */
@media (max-width: 768px) {
    .quote-modal {
        padding: 75px 10px 20px !important;
        align-items: flex-start;
    }

    .wizard-card {
        width: min(520px, 96vw);
        border-radius: 18px;
    }

    .wizard-steps-bar {
        padding: 10px 42px 10px 14px;
        gap: 8px;
    }

    .step-text {
        font-size: 0.78rem;
    }

    .wizard-body {
        padding: 14px 18px 18px;
        min-height: auto;
    }

    .wizard-header {
        margin: -14px -18px 12px -18px;
        padding: 14px 14px 10px;
    }

    .wizard-header .quote-logo {
        margin: 0 auto 6px;
    }

    .wizard-header .quote-logo img {
        width: 92px;
    }

    .wizard-header h2 {
        font-size: 1.18rem;
        margin-bottom: 2px;
    }

    .wizard-subtitle {
        font-size: 0.78rem;
        margin-top: 0px;
        margin-bottom: 10px;
    }

    .benefit-pills {
        gap: 5px;
        margin-bottom: 2px;
    }

    .benefit-pills .pill {
        padding: 3px 8px;
        font-size: 0.68rem;
    }

    .project-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 12px;
    }

    .option-card {
        padding: 10px 6px 8px;
        border-radius: 12px;
    }

    .option-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .option-title {
        font-size: 0.76rem;
    }

    .btn-wizard-next {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    .step2-header {
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .quote-form-header {
        margin-bottom: 12px;
    }

    .quote-form-header h2 {
        font-size: 1.35rem;
        margin-bottom: 2px;
    }

    .quote-form-header p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .selected-service-badge {
        padding: 3px 8px;
        font-size: 0.75rem;
    }

    .quote-submit {
        height: 46px;
        font-size: 0.90rem;
    }

    .recaptcha-legal-text {
        font-size: 0.68rem;
        margin-top: 8px;
    }
}

/*======================================================================

    GET A QUOTE MODAL
    PART 1C OF 3

    PREMIUM USER EXPERIENCE

    Pinlight Interiors
    Version : 2.0

======================================================================*/


/*======================================================================
    MODAL OPEN ANIMATION
======================================================================*/

.quote-modal{

    opacity:0;

    visibility:hidden;

    transition:
        opacity .40s ease,
        visibility .40s ease;

}


.quote-modal.active{

    opacity:1;

    visibility:visible;

}


/*======================================================================
    MODAL CONTAINER
======================================================================*/

.quote-modal-content{

    opacity:0;

    transform:
        translateY(30px)
        scale(.96);

    transition:

        opacity .45s cubic-bezier(.22,1,.36,1),

        transform .45s cubic-bezier(.22,1,.36,1);

}


.quote-modal.active
.quote-modal-content{

    opacity:1;

    transform:
        translateY(0)
        scale(1);

}


/*======================================================================
    BACKDROP BLUR
======================================================================*/

.quote-modal{

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

}


/*======================================================================
    PAGE SCROLL LOCK
======================================================================*/

body.modal-open{

    overflow:hidden;

    touch-action:none;

}


/*======================================================================
    CLOSE BUTTON
======================================================================*/

.quote-modal-close{

    transition:

        transform .30s ease,

        background .30s ease,

        box-shadow .30s ease;

}


.quote-modal-close:hover{

    transform:rotate(90deg);

    box-shadow:

        0 8px 22px rgba(0,0,0,.18);

}


/*======================================================================
    FORM APPEAR ANIMATION
======================================================================*/

.quote-form{

    animation:

        formFade .60s ease;

}


/*======================================================================
    KEYFRAMES
======================================================================*/

@keyframes formFade{

    from{

        opacity:0;

        transform:translateY(18px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*======================================================================

    CONTINUE WITH PART 1C-2

======================================================================*/





/*======================================================================
    SECTION 08 - PREMIUM CONTACT SECTION
======================================================================*/

.contact {
    position: relative;
    padding: 120px 0 0 0;
    background: 
        linear-gradient(rgba(30, 20, 12, 0.95), rgba(30, 20, 12, 0.98)),
        url('./assets/aboutUs.png') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

/* Decorative blobs for contact section */
.contact::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(181, 138, 73, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contact::after {
    content: "";
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(181, 138, 73, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Golden yellow warm background lights */
.warm-light {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(45px);
    animation: pulseLight 9s ease-in-out infinite alternate;
}

.light-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(217, 181, 122, 0.25) 0%, rgba(217, 181, 122, 0.08) 45%, transparent 70%);
}

.light-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(253, 203, 110, 0.2) 0%, rgba(253, 203, 110, 0.06) 50%, transparent 70%);
}

.light-3 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.16) 0%, rgba(230, 126, 34, 0.04) 45%, transparent 70%);
}

.light-4 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(217, 181, 122, 0.22) 0%, rgba(217, 181, 122, 0.07) 50%, transparent 70%);
}

@keyframes pulseLight {
    0% {
        transform: scale(0.85) translate(0, 0);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1) translate(15px, -15px);
        opacity: 0.95;
    }
    100% {
        transform: scale(0.95) translate(-10px, 10px);
        opacity: 0.8;
    }
}


.contact-container {
    width: min(1200px, 90%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info .smallHeading {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.contact-info .bigHeading {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 3.5rem;
    line-height: 4.2rem;
}

.contact-desc {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.8rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(181, 138, 73, 0.1);
    border: 1px solid rgba(181, 138, 73, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: var(--gold);
    color: #1e140c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(181, 138, 73, 0.3);
}

.contact-text h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p, 
.contact-text a {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.6rem;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--gold);
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B6B3D, #B08D57, #D8BB7A);
}

.form-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 35px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Reuse quote modal forms styles but add specific hooks */
.contact-form .form-group {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 20px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--gold);
}

.contact-form .form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-form .form-group input:focus + label,
.contact-form .form-group input:not(:placeholder-shown) + label,
.contact-form .form-group textarea:focus + label,
.contact-form .form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 20px;
    font-size: 0.85rem;
    color: var(--gold);
    padding: 0 8px;
    background: #221912 !important;
}

.contact-submit {
    position: relative;
    width: calc(100% - 90px) !important;
    height: 58px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    overflow: hidden;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #8B6B3D, #B08D57, #D8BB7A);
    box-shadow: 0 12px 30px rgba(181, 138, 73, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    margin-top: 10px;
    margin-bottom: 0 !important;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(212, 175, 55, 0.3);
    filter: brightness(1.05);
}

.contact-submit:active {
    transform: translateY(0);
}

.contact-submit .btn-loader {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-submit.loading .btn-text {
    display: none;
}

.contact-submit.loading .btn-loader {
    display: flex;
}

/* Success Overlay */
.contact-success {
    position: absolute;
    inset: 0;
    background: #1e140c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 5;
}

.contact-success.show {
    opacity: 1;
    visibility: visible;
}

.contact-success h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    color: var(--white);
    margin: 20px 0 10px;
}

.contact-success p {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    font-size: 1.1rem;
    max-width: 320px;
}

.contact-success .success-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(181, 138, 73, 0.1);
    border: 2px solid var(--gold, #B08D57);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #B08D57);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* Quote Success Overlay */
.quote-success {
    position: absolute;
    inset: 0;
    background: #FCFBF8; /* Light background matching quote-right */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 5;
}

.quote-success.show {
    opacity: 1;
    visibility: visible;
}

.quote-success .success-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(139, 107, 61, 0.1);
    border: 2px solid #8b6b47;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6b47;
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.quote-success h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    color: #37200c; /* Walnut dark color */
    margin: 0 0 12px 0;
    font-weight: 700;
}

.quote-success p {
    font-family: "Manrope", sans-serif;
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 340px;
    margin: 4px 0;
}

/* Map Container */
.contact-map {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/*======================================================================
    SECTION 09 - PREMIUM FOOTER
======================================================================*/

.footer {
    background: #160e07; /* Darker warm brown background */
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 10;
}

.footer-container {
    width: min(1320px, 92%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 260px;
    max-width: 300px;
}

.footer-links {
    flex: 0 0 auto;
    min-width: 140px;
}

.footer-services {
    flex: 0 0 auto;
    min-width: 310px;
}

.footer-contact {
    flex: 1 1 260px;
    max-width: 300px;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.brand-desc {
    font-family: "Manrope", sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: #160e07;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(181, 138, 73, 0.25);
    border-color: var(--gold);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 10px 24px;
    padding: 0;
    margin: 0;
}

.footer-links ul li a,
.footer-services-list li a {
    font-family: "Manrope", sans-serif;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.footer-links ul li a:hover,
.footer-services-list li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    line-height: 1.4rem;
}

.contact-list li i {
    color: var(--gold);
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-list li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 0;
    background: #0f0a05;
}

.footer-bottom-container {
    width: min(1200px, 90%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.35);
    font-family: "Manrope", sans-serif;
    font-size: 0.85rem;
}

/*======================================================================
    SCROLL TO TOP BUTTON
======================================================================*/

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B6B3D, #B08D57);
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #A8834C, #D8BB7A);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

/*======================================================================
    RESPONSIVE MEDIA QUERIES FOR CONTACT & FOOTER
======================================================================*/

@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-bottom: 50px;
    }
    
    .contact-info .bigHeading {
        font-size: 2.8rem;
        line-height: 3.4rem;
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .contact {
        padding: 80px 0 0 0;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .contact-info .bigHeading {
        font-size: 2.2rem;
        line-height: 2.8rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/*======================================================================
    UNIFORM SECTION SPACING FOR MOBILE DEVICES
======================================================================*/

@media (max-width: 768px) {
    .aboutUs,
    .services,
    .pfContainer,
    .ourProcess,
    .testimonials,
    .beforeAfter,
    .contact {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
}

@media (max-width: 575px) {
    .aboutUs,
    .services,
    .pfContainer,
    .ourProcess,
    .testimonials,
    .beforeAfter,
    .contact {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

/*======================================================================
    STATISTICS COUNT UP SECTION
======================================================================*/
.stats {
    background: var(--walnut);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.statsContainer {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.statsChild {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.statNumber {
    font-family: "Cormorant Garamond", serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(217, 181, 122, 0.25);
    display: inline-block;
}

.statSuffix {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(217, 181, 122, 0.25);
    display: inline-block;
}

.statCaption {
    font-family: "Manrope", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

@media(max-width: 768px) {
    .stats {
        padding: 60px 10px;
    }
    .statNumber {
        font-size: 3.5rem;
    }
    .statSuffix {
        font-size: 3rem;
    }
    .statCaption {
        font-size: 0.95rem;
    }
}

/*======================================================================
    AUTO-TRANSFORMATION VIDEO CONTAINER
======================================================================*/
.video-container {
    width: 95%;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 40px auto 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xxl), var(--shadow-gold);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

#designEvolutionCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: auto;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.8s ease;
}

#designEvolutionCanvas.ready {
    opacity: 1;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.video-slide.active {
    z-index: 2;
}

.video-slide.leaving {
    z-index: 1;
}

/* Slices for staggered transition */
.slide-slice {
    position: absolute;
    top: 0;
    left: calc(var(--slice-index) * 25%);
    width: 25%;
    height: 100%;
    overflow: hidden;
    
    /* Default entering state: shrunken, blurred, shifted, and faded */
    opacity: 0;
    filter: blur(25px) brightness(0.75);
    transform: scale(0.95) translateY(12px);
    
    transition: 
        opacity 1.3s ease-in-out, 
        filter 1.3s ease-in-out, 
        transform 1.5s cubic-bezier(0.25, 1, 0.3, 1);
    
    /* Staggered delay based on column index (from left to right) */
    transition-delay: calc(var(--slice-index) * 0.28s);
}

.slide-slice img {
    position: absolute;
    top: 0;
    left: calc(var(--slice-index) * -100%);
    width: 400%; /* matches container width */
    height: 100%;
    object-fit: cover;
}

/* Active state: fully visible, sharp, standard scale */
.video-slide.active .slide-slice {
    opacity: 1;
    filter: blur(0px) brightness(1);
    transform: scale(1) translateY(0);
}

/* Leaving state: fades out and blurs sequentially */
.video-slide.leaving .slide-slice {
    opacity: 0;
    filter: blur(25px) brightness(1.25);
    transform: scale(1.05) translateY(-12px);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.video-overlay-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
}

.video-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    background: rgba(181, 138, 73, 0.2);
    border: 1px solid var(--gold);
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
    animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.phase-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    pointer-events: auto;
}

.phase-btn {
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(20, 20, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.phase-btn:hover {
    color: #fff;
    border-color: var(--gold-light);
    background: rgba(181, 138, 73, 0.25);
    transform: translateY(-1px);
}

.phase-btn.active {
    color: #111;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: var(--gold-light);
    box-shadow: 0 0 14px rgba(181, 138, 73, 0.5);
}

.video-title {
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}

.video-controls {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.play-pause-btn {
    pointer-events: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-pause-btn:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold-light);
    box-shadow: 0 0 12px rgba(181, 138, 73, 0.4);
    transform: scale(1.05);
}

.play-pause-btn.paused {
    border-color: var(--gold);
    color: var(--gold-light);
}

.video-timeline {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.video-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: width 0.1s linear;
}

@media(max-width: 991px) {
    .video-title {
        font-size: 1.15rem;
    }
    .phase-btn {
        font-size: 0.72rem;
        padding: 4px 10px;
    }
}

@media(max-width: 575px) {
    .video-container {
        width: 98%;
    }
    .video-overlay {
        padding: 15px 18px;
    }
    .video-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    .phase-nav {
        gap: 5px;
    }
    .phase-btn {
        font-size: 0.68rem;
        padding: 4px 8px;
    }
    .video-title {
        font-size: 0.95rem;
    }
}

/*======================================================================
    AUTO-TRANSFORMATION SECTION STYLE SYNC
======================================================================*/
.autoTransformation {
    position: relative;
    padding: 120px 0;
    background-color: #fdfcf9; /* Premium warm ivory */
    background-image: 
        radial-gradient(rgba(181, 138, 73, 0.05) 1.5px, transparent 1.5px); /* Designer Dotted Grid */
    background-size: 30px 30px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
}

.autoTransformation.show {
    opacity: 1;
    transform: translateY(0);
}

.autoTransformationHead {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.autoTransformationHead p {
    max-width: 650px;
    margin: 20px auto 0;
    font-family: Manrope;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .autoTransformation {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
}

@media (max-width: 575px) {
    .autoTransformation {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

/*======================================================================
    COMMERCIAL CLIENTS SECTION
======================================================================*/
.commercial-clients {
    position: relative;
    padding: 140px 0;
    background-color: #fdfcf9;
    background-image: radial-gradient(rgba(181, 138, 73, 0.08) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.commercial-clients.show {
    opacity: 1;
    transform: translateY(0);
}

.clients-head {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.clients-head p {
    max-width: 720px;
    margin: 20px auto 0;
    font-family: "Manrope", sans-serif;
    font-size: 1.15rem;
    color: #665c53;
    line-height: 1.9;
}

.clients-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

/* Gradient fade on left and right edges for infinite look */
.clients-marquee-container::before,
.clients-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.clients-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #fdfcf9 0%, rgba(253, 252, 249, 0) 100%);
}

.clients-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #fdfcf9 0%, rgba(253, 252, 249, 0) 100%);
}

.clients-marquee {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
    will-change: transform;
}

.clients-marquee:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 115px;
    width: 300px;
    margin: 0;
    background: #241B12; /* Rich dark walnut card tile */
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.client-logo:hover {
    transform: translateY(-4px);
    background: #2D2217;
    border-color: #D4AF37;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.client-logo img {
    max-width: 245px;
    max-height: 90px;
    object-fit: contain;
    filter: brightness(1.15) contrast(1.05);
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
    filter: brightness(1.18) contrast(1.1);
    transform: scale(1.05);
}

@keyframes scrollMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.333333%, 0, 0);
    }
}

@media (max-width: 768px) {
    .commercial-clients {
        padding: 70px 0;
    }
    .clients-marquee {
        gap: 16px;
    }
    .client-logo {
        padding: 10px 16px;
        width: 220px;
        height: 90px;
        margin: 0;
    }
    .client-logo img {
        max-width: 175px;
        max-height: 70px;
    }
}

/*======================================================================
    GOLDEN SECTION DIVIDER RIBBON
======================================================================*/
.section-divider-gold {
    position: relative;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    z-index: 10;
    background: linear-gradient(to bottom, #fdfcf9 50%, #1e140c 50%);
    overflow: hidden;
}

.section-divider-gold .divider-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.15) 15%, 
        rgba(212, 175, 55, 0.85) 50%, 
        rgba(212, 175, 55, 0.15) 85%, 
        transparent 100%
    );
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6), 0 0 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-50%);
}

.section-divider-gold .divider-emblem {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2D2217;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section-divider-gold:hover .divider-emblem {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6), inset 0 0 12px rgba(212, 175, 55, 0.35);
}

.section-divider-gold .divider-emblem img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.7));
}

/*======================================================================
    CONTACT WHATSAPP BUTTON
======================================================================*/
.whatsapp-btn-container {
    margin-top: 35px;
}

.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-decoration: none;
}

.contact-whatsapp-btn i {
    font-size: 1.4rem;
}

.contact-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #34e073, #159c8c);
    color: #ffffff;
}

.contact-whatsapp-btn:active {
    transform: translateY(0);
}

/* Ensure Google reCAPTCHA badge is always visible above the quote modal overlay and doesn't overlap the scroll-to-top button */
.grecaptcha-badge {
    bottom: 95px !important;
    z-index: 1000000 !important;
}

/* Position the inline reCAPTCHA badges towards the right corner below the form */
.recaptcha-form-container {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 68px !important;
    height: 60px !important;
    overflow: hidden !important;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease !important;
    z-index: 100 !important;
    display: flex !important;
    justify-content: flex-end !important;
    border-radius: 4px !important;
    pointer-events: auto !important;
}

.recaptcha-form-container:hover {
    width: 256px !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) !important;
}

.recaptcha-form-container .grecaptcha-badge {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    z-index: 1 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    display: block !important;
    margin: 0 !important;
    width: 256px !important;
}


/* Custom Wavy Reveal Animation for Services and Process child items */
.servicesBox .servicesChild.reveal,
.processBox .processChild.reveal {
    opacity: 0;
    transition: opacity 1s cubic-bezier(.22, 1, .36, 1), transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    will-change: transform, opacity;
}

/* Alternate starting positions (up/down shift and left/right tilt) to form a wave shape */
.servicesBox .servicesChild.reveal:nth-child(odd),
.processBox .processChild.reveal:nth-child(odd) {
    transform: translateY(90px) rotate(-3.5deg) scale(0.95);
}

.servicesBox .servicesChild.reveal:nth-child(even),
.processBox .processChild.reveal:nth-child(even) {
    transform: translateY(50px) rotate(3.5deg) scale(0.95);
}

/* Settle at final neutral positions when revealed */
.servicesBox .servicesChild.reveal.show,
.processBox .processChild.reveal.show {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1) !important;
}

/* ==========================================================================
   OUR PROCESS INTRO & MICRO-ANIMATIONS
   ========================================================================== */
.ourProcess .processHead.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.ourProcess .processHead.reveal.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Wide, blurred gold light sweep effect on process cards when revealed */
.processBox .processChild {
    overflow: hidden;
}

.processBox .processChild::before {
    content: '';
    position: absolute;
    top: -75%;
    left: -200%;
    width: 200%;
    height: 250%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(212, 175, 55, 0) 10%,
        rgba(212, 175, 55, 0.25) 30%,
        rgba(245, 215, 130, 0.75) 50%,
        rgba(212, 175, 55, 0.25) 70%,
        rgba(212, 175, 55, 0) 90%,
        transparent 100%
    );
    transform: rotate(25deg);
    filter: blur(22px);
    -webkit-filter: blur(22px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.processBox .processChild.show::before {
    opacity: 1;
    animation: processCardShimmer 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes processCardShimmer {
    0% {
        left: -200%;
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

/* Inner Badge & Icon Pop Animations upon reveal */
.processBox .processChild.reveal .processStepBadge {
    opacity: 0;
    transform: scale(0.4) rotate(-15deg);
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.processBox .processChild.reveal.show .processStepBadge {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.processBox .processChild.reveal .processIconBox {
    opacity: 0;
    transform: scale(0.6) translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease, background 0.35s ease;
}

.processBox .processChild.reveal.show .processIconBox {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.processBox .processChild.reveal .processIconBox .material-symbols-outlined {
    transform: scale(0.8) rotate(-20deg);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.35s ease;
}

.processBox .processChild.reveal.show .processIconBox .material-symbols-outlined {
    transform: scale(1) rotate(0deg);
}

.processBox .processChild.reveal .smallHeading,
.processBox .processChild.reveal p {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.processBox .processChild.reveal.show .smallHeading,
.processBox .processChild.reveal.show p {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   NAVIGATION MASK & BLUR OVERLAY (PAGE BACKDROP)
   ========================================================================== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100000;
    background: rgba(14, 10, 6, 0.65);
    backdrop-filter: blur(14px) brightness(0.45);
    -webkit-backdrop-filter: blur(14px) brightness(0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.is-active,
body.nav-menu-active .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Masks background so visible site items cannot be clicked or accessed */
}

body.nav-menu-active {
    overflow: hidden !important; /* Prevents background scrolling when nav menu is open */
}

/* ==========================================================================
   THREE DOTS NAVIGATION MENU TOGGLE BUTTON
   ========================================================================== */
.nav-menu-toggle {
    display: none; /* Hidden on desktop (> 850px) */
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(181, 138, 73, 0.16);
    border: 1.5px solid rgba(217, 181, 122, 0.45);
    color: var(--gold-light, #D9B57A);
    font-size: 1.25rem;
    cursor: pointer;
    outline: none;
    z-index: 100060;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    -webkit-tap-highlight-color: transparent;
}

.nav-menu-toggle:hover,
.nav-menu-toggle.is-active {
    background: rgba(181, 138, 73, 0.38);
    border-color: #D9B57A;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    transform: rotate(90deg);
}

/* ==========================================================================
   NAVBAR RESPONSIVE BREAKPOINTS
   1. Icons only mode: (851px - 1350px)
   2. Three dots dropdown + Blur overlay mode: (<= 850px)
   ========================================================================== */
@media (min-width: 851px) and (max-width: 1350px) {
    nav.navbar a span {
        display: none !important;
    }
    nav.navbar a {
        gap: 0 !important;
        padding: 10px 16px !important;
    }
    nav.navbar a i {
        font-size: 1.15rem !important;
    }
}

@media (max-width: 850px) {
    /* Header bar elevated above the blur overlay mask layer */
    .header {
        position: fixed !important;
        top: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 94% !important;
        max-width: 850px !important;
        z-index: 100050 !important; /* Elevated above .nav-overlay (100000) so header items are exclusively accessible */
        padding: 10px 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-radius: 40px !important;
        background: rgba(22, 16, 10, 0.88) !important;
        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-top: 1.5px solid rgba(217, 181, 122, 0.5) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    }

    .logo img {
        width: 160px !important;
    }

    /* Show 3-dots menu button on right */
    .nav-menu-toggle {
        display: flex !important;
    }

    /* Navbar Dropdown expanding from 2px below header bar */
    nav.navbar {
        position: absolute !important;
        top: calc(100% + 2px) !important; /* Exactly 2px below the header bar */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        bottom: auto !important;
        transform: translateY(-10px) scale(0.98) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;

        padding: 16px 14px !important;
        border-radius: 24px !important;
        background: rgba(24, 17, 11, 0.96) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border: 1.5px solid rgba(217, 181, 122, 0.45) !important;
        box-shadow: 
            0 24px 60px rgba(0, 0, 0, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 35px rgba(181, 138, 73, 0.25) !important;
        
        transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
        z-index: 100055 !important;
    }

    body.loaded nav.navbar {
        animation: none !important;
    }

    /* Expanded Navbar State */
    .header.nav-open nav.navbar,
    nav.navbar.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) scale(1) !important;
    }

    /* Nav Item Links inside Dropdown */
    nav.navbar a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 14px !important;
        padding: 12px 18px !important;
        width: 100% !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        color: #F7F4EE !important;
        font-size: 1.02rem !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
    }

    nav.navbar a span {
        display: inline-block !important; /* Visible text labels in dropdown list */
        font-size: 1.02rem !important;
        color: #FCFAF6 !important;
    }

    nav.navbar a i {
        font-size: 1.15rem !important;
        color: var(--gold-light, #D9B57A) !important;
        width: 26px !important;
        text-align: center !important;
        flex-shrink: 0 !important;
    }

    nav.navbar a::after {
        display: none !important;
    }

    nav.navbar a:hover,
    nav.navbar a.active {
        background: rgba(181, 138, 73, 0.24) !important;
        border-color: rgba(217, 181, 122, 0.5) !important;
        color: #FFF2C5 !important;
        transform: translateX(4px) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }

    nav.navbar a.active i {
        color: #FFF2C5 !important;
    }
}


/* ======================================================================
   PREMIUM PRELOADER & ASSET CACHING SYSTEM STYLES
   ====================================================================== */
body.loading {
    overflow: hidden !important;
    height: 100vh !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #140d0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.preloader-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.65;
    mix-blend-mode: screen;
    pointer-events: none;
}

.preloader-glow.glow-1 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
    top: 10%;
    left: 15%;
    animation: preloaderFloatGlow1 14s infinite alternate ease-in-out;
}

.preloader-glow.glow-2 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
    bottom: 10%;
    right: 15%;
    animation: preloaderFloatGlow2 18s infinite alternate ease-in-out;
}

.preloader-glow.glow-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: preloaderPulseGlow 10s infinite alternate ease-in-out;
}

@keyframes preloaderFloatGlow1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes preloaderFloatGlow2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, -30px) scale(1.1); }
}

@keyframes preloaderPulseGlow {
    0% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    gap: 20px;
    text-align: center;
}

.loader-logo-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
}

.loader-logo-bg {
    width: 90px;
    height: 90px;
    display: block;
    opacity: 0.15;
    filter: grayscale(100%);
}

.loader-logo-fg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.3s cubic-bezier(0.1, 0.8, 0.3, 1);
    z-index: 2;
    -webkit-mask: url('./assets/favicon.png') no-repeat center / contain;
    mask: url('./assets/favicon.png') no-repeat center / contain;
}

.loader-logo-fg {
    width: 90px;
    height: 90px;
    display: block;
    filter: drop-shadow(0 0 15px var(--logo-glow, rgba(212, 175, 55, 0.4)));
    transition: filter 0.3s ease;
}

.loader-logo-fg-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 240, 200, 1) 0%, rgba(212, 175, 55, 0.85) 25%, rgba(184, 134, 11, 0.4) 45%, rgba(20, 13, 10, 0) 70%);
    transform: translate(-60%, -10%) scale(0.6);
    animation: preloaderSpotlight var(--shine-speed, 2.8s) infinite ease-in-out;
    pointer-events: none;
    will-change: transform, opacity;
}

/* Concentric Golden ripples around the logo mark */
.ripple-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    pointer-events: none;
    z-index: 1;
}

.ripple {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1);
    animation: preloaderRipple 4s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15), inset 0 0 8px rgba(212, 175, 55, 0.1);
}

.ripple-1 {
    animation-delay: 0s;
}

.ripple-2 {
    animation-delay: 1.3s;
}

.ripple-3 {
    animation-delay: 2.6s;
}

@keyframes preloaderRipple {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

@keyframes preloaderSpotlight {
    0% {
        transform: translate(-80%, -20%) scale(0.5);
        opacity: 0.05;
    }
    15% {
        opacity: 0.7;
    }
    50% {
        transform: translate(0%, 0%) scale(1.15);
        opacity: 1.0;
    }
    85% {
        opacity: 0.7;
    }
    100% {
        transform: translate(80%, 20%) scale(0.5);
        opacity: 0.05;
    }
}


.loader-progress-container {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #b8860b, #d4af37, #f9e8a2);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.loader-progress-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #d4af37;
    letter-spacing: 3px;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
    margin-top: 5px;
    transition: opacity 0.5s ease;
}

/*======================================================================
    FLOATING STICKY GOLDEN QUOTE BUTTON WITH CONTINUOUS RIPPLE
======================================================================*/
.floating-quote-btn {
    position: fixed;
    right: 32px;
    top: 25%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(181, 138, 73, 0.5), 0 5px 15px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    opacity: 0;
    pointer-events: none;
}
body.loaded .floating-quote-btn {
    animation: dropFloatingQuote 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.25) 0.3s both;
}

@keyframes dropFloatingQuote {
    0% {
        opacity: 0;
        transform: translateY(-250px);
        pointer-events: none;
    }
    70% {
        opacity: 1;
        transform: translateY(-42%);
        pointer-events: auto;
    }
    85% {
        transform: translateY(-52%);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%);
        pointer-events: auto;
    }
}

.floating-btn-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #E6C280 0%, #B58A49 50%, #8A642E 100%);
    border: 2px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D2217;
    font-size: 1.55rem;
    transition: background 0.35s ease, transform 0.35s ease;
}

.floating-quote-btn:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 18px 50px rgba(212, 175, 55, 0.7), 0 8px 22px rgba(0, 0, 0, 0.4);
}

.floating-quote-btn:hover .floating-btn-inner {
    background: linear-gradient(135deg, #FFF0C9 0%, #D4AF37 50%, #A07432 100%);
    color: #1A130B;
}

/* Continuous Water Surface Ripples */
.floating-quote-btn .ripple-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid rgba(240, 210, 130, 0.7);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4), inset 0 0 8px rgba(255, 235, 170, 0.25);
    background: radial-gradient(circle, transparent 35%, rgba(212, 175, 55, 0.1) 75%, rgba(212, 175, 55, 0) 100%);
    z-index: 1;
    pointer-events: none;
    will-change: transform, opacity;
}

.floating-quote-btn .ring-1 {
    animation: waterSurfaceRipple 8.4s cubic-bezier(0.1, 0.65, 0.35, 1) infinite 0s;
}

.floating-quote-btn .ring-2 {
    animation: waterSurfaceRipple 8.4s cubic-bezier(0.1, 0.65, 0.35, 1) infinite 2.1s;
}

.floating-quote-btn .ring-3 {
    animation: waterSurfaceRipple 8.4s cubic-bezier(0.1, 0.65, 0.35, 1) infinite 4.2s;
}

.floating-quote-btn .ring-4 {
    animation: waterSurfaceRipple 8.4s cubic-bezier(0.1, 0.65, 0.35, 1) infinite 6.3s;
}

@keyframes waterSurfaceRipple {
    0% {
        transform: scale(0.95);
        opacity: 0.85;
        border-width: 2.5px;
    }
    45% {
        opacity: 0.5;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
        border-width: 0.5px;
    }
}

/* Tooltip label sliding out on hover */
.floating-quote-tooltip {
    position: absolute;
    right: 82px;
    top: 50%;
    transform: translateY(-50%) translateX(15px);
    background: #2D2217;
    color: #FCFAF6;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 9px 18px;
    border-radius: 20px;
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.floating-quote-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #2D2217;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-right: 1px solid rgba(212, 175, 55, 0.4);
}

.floating-quote-btn:hover .floating-quote-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .floating-quote-btn {
        right: 18px;
        top: 25%;
        bottom: auto;
        transform: translateY(-50%);
        width: 58px;
        height: 58px;
    }
    .floating-quote-btn:hover {
        transform: translateY(-50%) scale(1.08);
    }
    .floating-btn-inner {
        font-size: 1.25rem;
    }
    .floating-quote-tooltip {
        display: none;
    }
}

/* ======================================================================
   PINLIGHT INTERIORS - CLOUDINARY VIDEO GALLERY & LIGHTBOX STYLES
   ====================================================================== */

.gallerySubNav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.gallerySubLink {
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.gallerySubLink:hover, .gallerySubLink.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(170, 130, 20, 0.25) 100%);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.videoSection, .videoSectionAdjacent {
    position: relative;
    padding: 60px 0 20px 0;
    width: 100%;
    color: #ffffff;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.videoHead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.videoSub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-top: 15px;
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
}

.videoGalleryContainer {
    max-width: 1240px;
    margin: 0 auto;
}

/* Main Featured Stage Player */
.mainVideoCard {
    background: rgba(30, 26, 22, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(12px);
    margin-bottom: 50px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.mainVideoCard:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.25);
}

.videoPlayerWrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #050505;
}

.videoPlayerWrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.videoBadge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(17, 17, 17, 0.85);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

/* Player Watermark Overlay & Brand Panel Icon */
.playerWatermark {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    pointer-events: none;
    background: rgba(18, 14, 11, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding: 7px 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.playerWatermark img {
    height: 24px;
    width: 24px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

.video-modal-body {
    position: relative;
}

.playerWatermark.modalWatermark {
    top: 18px;
    left: 20px;
    right: auto;
}

.playerPanelBrand {
    margin-bottom: 8px;
}

.playerPanelLogo {
    height: 32px;
    width: 32px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.modal-footer-logo {
    height: 20px;
    width: 20px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

@media (max-width: 768px) {
    .playerWatermark {
        top: 12px;
        right: 12px;
        padding: 5px 8px;
        border-radius: 10px;
    }
    .playerWatermark img {
        height: 18px;
        width: 18px;
    }
    .playerPanelLogo {
        height: 26px;
        width: 26px;
    }
}

.mainVideoInfo {
    padding: 30px 35px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(180deg, rgba(28, 24, 20, 0.9) 0%, rgba(20, 16, 13, 0.95) 100%);
}

.mainVideoInfo h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.85rem;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 600;
}

.mainVideoInfo p {
    color: #bdbdbd;
    font-size: 0.95rem;
    font-family: "Manrope", sans-serif;
    max-width: 700px;
}

.btnWatchFullscreen {
    background: linear-gradient(135deg, #d4af37 0%, #aa8214 100%);
    color: #111111;
    border: none;
    padding: 14px 26px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btnWatchFullscreen:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* In-Player Playlist Bar & Interactive Navigation Dots */
.playerPlaylistBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 30px;
    background: rgba(18, 14, 11, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    gap: 20px;
}

.playlistBarLeft {
    display: flex;
    align-items: center;
    gap: 14px;
}

.playlistLabel {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #d4af37;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.playlistCounterText {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Manrope", sans-serif;
}

.playlistDotsContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.playlistDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    cursor: pointer;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    padding: 0;
}

.playlistDot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.25);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    border-color: #d4af37;
}

.playlistDot.active {
    width: 36px;
    height: 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #aa8214 100%);
    border: 1px solid #ffffff;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.7), 0 0 6px rgba(212, 175, 55, 0.9);
}

.playlistDotTooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(15, 12, 9, 0.95);
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.playlistDot:hover .playlistDotTooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.playlistBarRight {
    display: flex;
    align-items: center;
    gap: 8px;
}

.playlistNavBtn {
    background: rgba(255, 255, 255, 0.06);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.playlistNavBtn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .playerPlaylistBar {
        padding: 12px 18px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .playlistBarLeft {
        width: 100%;
        justify-content: space-between;
    }
}

/* Video Grid */
.videoGridHeader {
    margin-bottom: 25px;
}

.videoGridHeader h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    color: #ffffff;
}

.videoGridHeader h4 span {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 400;
}

.videoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.videoCard {
    background: rgba(25, 21, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.videoCard:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
}

.videoCard.active {
    border-color: #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

.videoThumbWrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    overflow: hidden;
}

.videoThumbWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.videoCard:hover .videoThumbWrapper img {
    transform: scale(1.08);
}

.playOverlayBtn {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.playOverlayBtn i {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding-left: 3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background 0.3s ease;
}

.videoCard:hover .playOverlayBtn {
    opacity: 1;
    background: rgba(0, 0, 0, 0.15);
}

.videoCard:hover .playOverlayBtn i {
    transform: scale(1.15);
    background: #d4af37;
}

.videoCardMeta {
    padding: 16px 20px;
}

.videoCardMeta h5 {
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.videoCardMeta span {
    font-size: 0.8rem;
    color: #d4af37;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Fullscreen Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 30px;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
}

.video-modal-content {
    position: relative;
    width: min(1000px, 95vw);
    background: #161412;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.25);
    z-index: 2;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: #d4af37;
    color: #111111;
    transform: rotate(90deg);
}

.video-modal-body {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.modal-video-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.video-modal-footer {
    padding: 20px 30px;
    background: #1c1916;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-footer h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    color: #ffffff;
}

.modal-brand-tag {
    color: #d4af37;
    font-family: "Manrope", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .mainVideoInfo {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .btnWatchFullscreen {
        width: 100%;
        justify-content: center;
    }
    .videoGrid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
    .video-modal {
        padding: 15px;
    }
}

/* ==========================================================================
   MOBILE COMPACT ACCORDION STRIPS (OUR SERVICES & OUR PROCESS)
   ========================================================================== */

/* Desktop defaults: strip wrapper transparent to grid layout */
.card-strip-header {
    display: contents;
}

.strip-chevron {
    display: none;
}

@media (max-width: 768px) {
    /* Mobile Grid layout turns into a tight vertical stack of horizontal strips */
    .servicesBox {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 20px 0 !important;
    }

    .ourProcess .processBox {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 30px 0 10px !important;
    }

    /* Base Strip card styling for Services on Mobile */
    .servicesChild {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: left !important;
        padding: 12px 16px !important;
        background: #FFFFFF !important;
        border: 1.5px solid rgba(181, 138, 73, 0.35) !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 14px rgba(45, 34, 23, 0.06) !important;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease !important;
    }

    /* Base Strip card styling for Process on Mobile */
    .ourProcess .processChild {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: left !important;
        padding: 12px 16px !important;
        gap: 0 !important;
        background: rgba(38, 26, 17, 0.55) !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
        border-radius: 14px !important;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease !important;
    }

    /* Horizontal Strip Header Row (Icon/Badge + Title + Chevron) */
    .card-strip-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    /* Hide old pseudo-element if any */
    .servicesChild::after,
    .ourProcess .processChild::after {
        display: none !important;
    }

    /* Compact Service Icon Box on Mobile */
    .servicesChild .service-icon-box {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        margin-bottom: 0 !important;
        margin-right: 12px !important;
        box-shadow: 0 4px 12px rgba(181, 138, 73, 0.25) !important;
        flex-shrink: 0;
    }

    .servicesChild .service-icon-box i {
        font-size: 1.05rem !important;
    }

    /* Compact Process Icon Box on Mobile */
    .ourProcess .processIconBox {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        margin-bottom: 0 !important;
        margin-right: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        flex-shrink: 0;
    }

    .ourProcess .processIconBox .material-symbols-outlined {
        font-size: 1.3rem !important;
    }

    /* Compact Process Step Badge on Mobile */
    .ourProcess .processStepBadge {
        position: static !important;
        font-size: 0.9rem !important;
        font-weight: 800 !important;
        padding: 3px 8px !important;
        border-radius: 8px !important;
        margin-right: 10px !important;
        flex-shrink: 0;
    }

    /* Title Heading inside Strip */
    .servicesChild h3,
    .ourProcess .processChild .smallHeading {
        font-size: 1.02rem !important;
        margin: 0 !important;
        flex: 1;
        letter-spacing: 0.6px !important;
    }

    .servicesChild h3 {
        color: #1A130B !important;
    }

    .ourProcess .processChild .smallHeading {
        color: var(--gold-light, #D9B57A) !important;
    }

    /* Strip Chevron Toggle Icon */
    .strip-chevron {
        display: block !important;
        font-size: 0.85rem !important;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease !important;
        margin-left: 10px;
        flex-shrink: 0;
    }

    .servicesChild .strip-chevron {
        color: var(--gold, #B58A49) !important;
    }

    .ourProcess .processChild .strip-chevron {
        color: var(--gold-light, #D9B57A) !important;
    }

    /* Chevron rotation on expansion */
    .servicesChild.is-card-expanded .strip-chevron,
    .ourProcess .processChild.is-card-expanded .strip-chevron {
        transform: rotate(180deg) !important;
    }

    /* Paragraph description collapsed by default */
    .servicesChild p,
    .ourProcess .processChild p {
        max-height: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease !important;
    }

    /* Expanded paragraph description */
    .servicesChild.is-card-expanded p,
    .ourProcess .processChild.is-card-expanded p {
        max-height: 250px !important;
        opacity: 1 !important;
        margin-top: 10px !important;
        padding-top: 10px !important;
        border-top: 1px dashed rgba(181, 138, 73, 0.3) !important;
    }

    .ourProcess .processChild.is-card-expanded p {
        border-top-color: rgba(212, 175, 55, 0.25) !important;
    }

    /* Expanded Strip Accent Highlight */
    .servicesChild.is-card-expanded {
        border-color: var(--gold, #B58A49) !important;
        box-shadow: 0 8px 25px rgba(181, 138, 73, 0.22) !important;
        background: #FFFFFF !important;
    }

    .ourProcess .processChild.is-card-expanded {
        border-color: rgba(212, 175, 55, 0.7) !important;
        background: rgba(48, 32, 20, 0.8) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15) !important;
    }
}

/* ==========================================================================
   MOBILE SECTION TOGGLE BUTTONS & PREVIEW CONTROLS
   ========================================================================== */

.collapsible-toggle-wrapper {
    display: none;
}

@media (max-width: 768px) {
    /* Hide cards 5 onwards when section is collapsed on mobile */
    .servicesBox.is-section-collapsed .servicesChild:nth-child(n+5),
    .ourProcess .processBox.is-section-collapsed .processChild:nth-child(n+5) {
        display: none !important;
    }

    /* Section Toggle Button Wrapper */
    .collapsible-toggle-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 20px;
        position: relative;
        z-index: 10;
    }

    .collapsible-toggle-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 26px;
        border-radius: 40px;
        font-family: "Manrope", sans-serif;
        font-size: 0.92rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }

    /* Services Section Toggle Button (Light Theme) */
    .services-toggle-btn {
        background: #FFFFFF;
        color: #2D2217;
        border: 1.5px solid var(--gold, #B58A49);
    }

    .services-toggle-btn:hover,
    .services-toggle-btn:active {
        background: var(--gold, #B58A49);
        color: #FFFFFF;
        box-shadow: 0 10px 25px rgba(181, 138, 73, 0.35);
    }

    .services-toggle-btn i {
        color: var(--gold, #B58A49);
        font-size: 0.9rem;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.35s ease;
    }

    .services-toggle-btn:hover i,
    .services-toggle-btn:active i {
        color: #FFFFFF;
    }

    /* Process Section Toggle Button (Dark Theme) */
    .process-toggle-btn {
        background: rgba(45, 34, 23, 0.7);
        color: var(--gold-light, #D9B57A);
        border: 1.5px solid rgba(212, 175, 55, 0.4);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .process-toggle-btn:hover,
    .process-toggle-btn:active {
        background: rgba(181, 138, 73, 0.3);
        border-color: var(--gold-light, #D9B57A);
        color: #FFFFFF;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
    }

    .process-toggle-btn i {
        color: var(--gold-light, #D9B57A);
        font-size: 0.9rem;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.35s ease;
    }

    .process-toggle-btn:hover i,
    .process-toggle-btn:active i {
        color: #FFFFFF;
    }

    .collapsible-toggle-btn.is-expanded i {
        transform: rotate(180deg);
    }
}

/*======================================================================
    VERIFIED GOOGLE REVIEW BADGE & MICRO-INTERACTIONS
======================================================================*/

.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-light, #D9B57A);
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.google-review-badge i {
    font-size: 0.82rem;
    color: var(--gold-light, #D9B57A);
    transition: color 0.3s ease;
}

.google-review-badge:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.7);
    color: #FFFFFF;
    transform: translateY(-1.5px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.google-review-badge:hover i {
    color: #FFFFFF;
}

/* Enhanced Desktop Micro-Interactions */
.pfChild {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.pfChild:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), 0 0 25px rgba(212, 175, 55, 0.2);
}

.servicesChild {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.servicesChild:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}





