*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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;


    /* ==========================================================
       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(181,138,73,.28);

    /* Premium deep gold glow */
    --shadow-gold-lg:
        0 0 60px rgba(138,100,46,.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(181, 138, 73, 0.18);

    z-index:1000;

    transition:.4s;

    opacity: 0;
    animation: headerFadeIn 1s ease forwards;
    animation-delay: 0.2s;
}

.logo {
    opacity: 0;
    transform: translateX(-30px);
    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);
    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(181,138,73,.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: 100px;
    z-index: 90;
}

.headlineContainer::before {
    position: absolute;
    content: '';
    width: 84%;
    height: 86%;
    right: 0;
    bottom: 0;
    background: var(--gold-light);
    filter: opacity(0.4);
    animation: headlineContainerBefore 4s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
    z-index: 91;
}

@keyframes headlineContainerBefore {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.headline {
    position: relative;
    padding: 150px 0 0 50px;
    animation: appear 4s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
    z-index: 99;
}

@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        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);
}

.btnContainer {
    position: absolute;
    width: 84%;
    height: 60px;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: appear 4s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
    z-index: 98;
}

.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;
}

.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: 120px 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%;
    height: 450px;
    background-image: url(./assets/aboutUs.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.aboutUsTextSection {
    position: relative;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aboutUsTextBody {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.smallHeading {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 1.4rem;
    color: var(--color-accent);
}

.bigHeading {
    position: inherit;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;    
    font-size: 4rem;
    line-height: 4rem;
    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: 4rem;
    line-height: 4rem;
    color: var(--color-accent);
}

.aboutUsTextBody p {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8rem;
    color: var(--color-background-dark);
}

.pinlightCaption {
    display: flex;
    justify-content: flex-end;
}

.pinlightCaption h4 {
    font-family: 'Brittany', cursive;
    font-size: 3.5rem;
    color: var(--color-accent);
}

.services {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: rgba(176, 141, 87, 0.3);

    /*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;*/
}

.servicesHead {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicesBox {
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.servicesChild {
    position: relative;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    min-width: 300px;
}

.servicesChild::before {
    position: absolute;
    display: block;
    content: '';
    width: 2px;
    height: 250px;
    top: 10%;
    right: -25px;
    background: #e4c28f;
}

.servicesChild.space::before {
    content: none;
}

.servicesChild img {
    width: 96px;
    height: auto;
}

.servicesChild p {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8rem;
    color: var(--color-background-dark);
}

.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;
}

.processHead {
    display: flex;
    flex-direction: column;
    align-items: center;    
}

.processBox {
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.processChild {
    position: relative;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    min-width: 300px;
}

.processChild::before {
    position: absolute;
    display: block;
    content: '';
    width: 2px;
    height: 180px;
    top: 10%;
    right: -25px;
    background: #7a5c3e;
}

.processChild.deliver::before {
    content: none;
}

.processChild span {
    position: relative;
    width: 128px;
    height: 128px;
    border: solid 1px var(--color-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.processChild img {
    width: 64px;
    height: auto;
}

.processChild p {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8rem;
    color: var(--color-background-dark);
}

: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{
    color:var(--gold);
    letter-spacing:3px;
    font-size:.85rem;
}

.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:900px;
    margin:auto;
}

.testimonial{
    display:none;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:55px;
    position:relative;
    animation:fade .8s;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.testimonial.active{
    display:block;
}

.quote{
    position:absolute;
    left:40px;
    top:-50px;
    font-size:20rem;
    color:rgba(212,175,55,.05);    
    pointer-events:none;
    z-index:1;
}

.client{
    display:flex;
    align-items:center;
    gap:22px;
    position:relative;
    z-index:2;
}

.client img{
    width:85px;
    height:85px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--gold);
}

.client-info h3 {
    color:white;
    margin-bottom:5px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.client-info span{
    color:#d0c5bd;
    display:block;
}

.stars{
    color:var(--gold);
    margin-top:8px;
    font-size:1.1rem;
    letter-spacing:3px;
}

.review{
    margin-top:35px;
    color:var(--color-border);
    line-height:2;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size:1.08rem;
    font-style:italic;
    position:relative;
    z-index:2;
}

.dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:35px;
}

.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:768px){
    .testimonial{
        padding:35px;
    }

    .client{
        flex-direction:column;
        text-align:center;
    }

    .section-heading h2{
        font-size:2.2rem;
    }

    .quote{
        font-size:5rem;
    }

    .review{
        text-align:center;
    }
}

/* ===================================================
   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;}

/* 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 center center/cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-100%) scale(1.05);
    animation: dropAndSwing 3.2s forwards;
    animation-delay: 4.2s; /* Delayed until all hero elements settle */
    will-change: transform, opacity;
}

@keyframes dropAndSwing {
    0% {
        transform: translateY(-100%) scale(1.05);
        opacity: 0;
        animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335); /* Accelerate down (abrupt drop) */
    }
    12% {
        transform: translateY(0) scale(1.02);
        opacity: 1;
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Decelerate as it rises */
    }
    25% {
        transform: translateY(-30px) scale(1.01);
        animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); /* Accelerate down */
    }
    40% {
        transform: translateY(20px) scale(1.005);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Decelerate as it rises (smaller) */
    }
    55% {
        transform: translateY(-12px) scale(1.002);
        animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); /* Accelerate down */
    }
    70% {
        transform: translateY(6px) scale(1.001);
        animation-timing-function: ease-out; /* Decelerate to rest */
    }
    85% {
        transform: translateY(-2px) scale(1.0005);
        animation-timing-function: ease-in-out;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}


.xlHeading{
    opacity:0;
    transform:translateY(80px);
    animation:headline .9s forwards;
}

.xlHeading:nth-child(1){animation-delay:.2s;}
.xlHeading:nth-child(2){animation-delay:.5s;}
.xlHeading:nth-child(3){animation-delay:.8s;}
.xlHeading:nth-child(4){animation-delay:1.1s;}

@keyframes headline{
    to{
        opacity:1;
        transform:none;
    }
}

.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;

}

.afterWrapper{

position:absolute;

top:0;

left:0;

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;

}

.beforeLabel{

left:25px;

}

.afterLabel{

right:25px;

}

@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);
    animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.4s;

}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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:40px;

    background:rgba(15,15,15,.72);
    backdrop-filter:blur(10px);

    opacity:0;
    visibility:hidden;

    transition:.45s ease;

    z-index:99999;

}

.quote-modal.active{

    opacity:1;
    visibility:visible;

}


/* ==========================================================
   MODAL CARD
========================================================== */

.quote-card{

    width:min(1180px,100%);
    height:min(760px,92vh);

    display:grid;

    grid-template-columns:420px 1fr;

    overflow:hidden;

    border-radius:28px;

    background:#ffffff;

    box-shadow:
    0 30px 80px rgba(0,0,0,.30);

    position:relative;

    transform:translateY(40px) scale(.96);

    transition:.45s cubic-bezier(.19,1,.22,1);

}

.quote-modal.active .quote-card{

    transform:translateY(0) scale(1);

}


/*--------------------------------------------------------------
    MODAL CLOSE BUTTON
--------------------------------------------------------------*/

.quote-close {

    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    visibility: visible;

    color: #5A4632;

    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(176,141,87,.18);
    border-radius: 50%;

    box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(176, 141, 87, 0.12);

    cursor: pointer;

    transition: all .3s ease;

    z-index: 100;
}

.quote-close:hover {

    background: #B08D57;

    color: #ffffff;

    transform: rotate(90deg) scale(1.05);

    box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(176, 141, 87, 0.25);

}


/* ==========================================================
   LEFT PANEL
========================================================== */

.quote-left{

    position:relative;

    overflow:hidden;

    display:flex;
    flex-direction:column;

    justify-content:flex-start;

    color:#ffffff;

    padding:48px;

    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:58px;

    animation:logoFloat 6s ease-in-out infinite;

}

.quote-logo img{

    width:170px;

    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:2.3rem;

    line-height:1.25;

    font-weight:700;

    margin-bottom:24px;

    color: rgba(246,241,231,.95);

}

.quote-description{

    font-family:"Manrope",sans-serif;

    font-size:1rem;

    font-weight: 400;

    line-height:1.9;

    letter-spacing: 1px;

    color: rgba(246,241,231,.95);

    margin-bottom:34px;

}


/* ==========================================================
   DIVIDER
========================================================== */

.quote-divider{

    width:90px;
    height:4px;

    border-radius:20px;

    margin-bottom:38px;

    background:
    linear-gradient(
        to right,
        #b58a49,
        #e2c98c
    );

}


/* ==========================================================
   BENEFITS
========================================================== */

.quote-benefits{

    display:flex;
    flex-direction:column;

    gap:20px;

}

.benefit-item{

    display:flex;
    align-items:center;
    font-family:"Manrope",sans-serif;

    font-size:1rem;

    font-weight: 400;

    line-height:1.9;

    letter-spacing: 1px;

    color: rgba(246,241,231,.95);


    gap:16px;

}

.benefit-icon{

    width:38px;

    height:38px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#e0bf7b;

    flex-shrink:0;

}

.benefit-item span{

    font-size:.98rem;

    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: center;

    background: #FCFBF8;

    padding: 56px 52px;

    overflow: hidden;

}


/*--------------------------------------------------------------
    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: 2rem;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: .4px;

    color: var(--color-heading);

}


/*--------------------------------------------------------------
    HEADER ACCENT
--------------------------------------------------------------*/

.quote-right h2::after {

    content: "";

    display: block;

    width: 70px;
    height: 2px;

    margin-top: 16px;

    background: linear-gradient(
        90deg,
        var(--color-gold),
        transparent
    );

}


/*--------------------------------------------------------------
    INTRODUCTORY PARAGRAPH
--------------------------------------------------------------*/

.quote-right p {

    margin: 22px 0 42px;

    font-family: var(--font-body);

    font-size: .98rem;
    font-weight: 400;

    line-height: 1.8;

    color: var(--color-text);

    max-width: 42ch;

}


/*--------------------------------------------------------------
    FORM
--------------------------------------------------------------*/

.quote-form {

    display: flex;
    flex-direction: column;

    gap: 22px;

}


/*--------------------------------------------------------------
    RESPONSIVE
--------------------------------------------------------------*/

@media (max-width: 991px) {

    .quote-right {

        padding: 44px 34px;

    }

}


@media (max-width: 575px) {

    .quote-right {

        padding: 36px 24px;

    }

    .quote-right h2 {

        font-size: 1.7rem;

    }

}

/*======================================================================

    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:28px;

    width:100%;

    margin-top:35px;

}


/*======================================================================
    FORM ROW
======================================================================*/

.form-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-bottom: 24px;

    width:100%;

}


/*======================================================================
    FORM GROUP
======================================================================*/

.form-group{

    position:relative;

    width:100%;

}


.form-group.full-width{

    width:100%;

}


/*======================================================================
    INPUTS
======================================================================*/

.form-group input,

.form-group select{

    width:100%;

    height:60px;

    padding:22px 22px 10px;

    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:150px;

    min-height:150px;

    max-height:150px;

    padding:26px 22px 16px;

    font-size:15px;

    font-weight:500;

    line-height:1.8;

    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:18px;

    top:18px;

    padding:0 8px;

    font-size:15px;

    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(176,141,87,.12);

}


/*======================================================================

    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:-10px;

    left:16px;

    padding:0 12px;

    font-size:12px;

    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:24px;

}

.form-group.full-width{

    margin-top:8px;

}

.quote-submit{

    margin-top:14px;

}


/*======================================================================
    FIXED TEXTAREA
======================================================================*/

.form-group textarea{

    height:150px;

    min-height:150px;

    max-height:150px;

    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: calc(100% - 90px) !important;

    height:60px;

    border:none;

    border-radius:16px;

    margin-bottom: 0 !important;

    cursor:pointer;

    overflow:hidden;

    font-size:16px;

    font-weight:700;

    letter-spacing:.4px;

    color:#FFFFFF;

    background:linear-gradient(
        135deg,
        #8B6B3D,
        #B08D57,
        #D8BB7A
    );

    box-shadow:
        0 14px 35px rgba(176,141,87,.28);

    transition:
        transform .30s ease,
        box-shadow .30s ease,
        filter .30s ease;

}


/*--------------------------------------------------------------
    BUTTON HOVER
--------------------------------------------------------------*/

.quote-submit:hover{

    transform:translateY(-3px);

    box-shadow:
        0 20px 42px rgba(176,141,87,.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
======================================================================*/

@media (max-width:768px){

    .form-row{

        grid-template-columns:1fr;

        gap:18px;

        margin-bottom:18px;

    }

    .quote-form{

        gap:22px;

    }

    .form-group textarea{

        height:140px;

        min-height:140px;

        max-height:140px;

    }

}


/*======================================================================
    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

======================================================================*/

/*======================================================================

    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(181, 138, 73, 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(1200px, 90%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.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,
.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links ul li a,
.footer-services ul 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;
}

.footer-links ul li a:hover,
.footer-services ul 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(181, 138, 73, 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 {
        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: 90%;
    max-width: 1000px;
    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;
}

.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.85));
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.video-badge {
    align-self: flex-start;
    font-family: "Manrope", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    background: rgba(181, 138, 73, 0.2);
    border: 1px solid var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.video-title {
    font-family: "Manrope", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.video-controls {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.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: var(--gold-light);
    border-radius: 2px;
}

@media(max-width: 991px) {
    .video-title {
        font-size: 1.15rem;
    }
}

@media(max-width: 575px) {
    .video-container {
        width: 95%;
    }
    .video-overlay {
        padding: 15px 20px;
    }
    .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;
    }
}

/*======================================================================
    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;
}

/* ==========================================================================
   MOBILE DOCK NAVIGATION SYSTEM
   ========================================================================== */
@media (max-width: 768px) {
    /* Header optimization for mobile */
    .header {
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        border-radius: 0 !important;
        padding: 12px 20px !important;
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        background: rgba(18, 18, 18, 0.85) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        justify-content: center !important; /* Center the logo */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .logo img {
        width: 150px !important; /* Slightly smaller logo for mobile */
    }

    /* Floating bottom navigation bar */
    nav {
        position: fixed !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translate(-50%, 60px) !important; /* Slide up from bottom on mobile */
        opacity: 0 !important;
        animation: slideUpMobile 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
        animation-delay: 0.6s !important;
        width: 90% !important;
        max-width: 380px !important;
        z-index: 100000 !important;
        background: rgba(30, 20, 12, 0.92) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-radius: 40px !important;
        border: 1px solid rgba(176, 141, 87, 0.3) !important;
        border-top: 1.5px solid rgba(217, 181, 122, 0.5) !important;
        padding: 6px 10px !important;
        box-shadow: 
            0 12px 30px rgba(0, 0, 0, 0.5), 
            inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        gap: 0 !important;
    }

    nav::before {
        inset: 3px !important;
        border-radius: 36px !important;
    }

    nav a {
        flex-direction: column !important;
        gap: 4px !important;
        padding: 8px 12px !important;
        font-size: 0.65rem !important; /* Small labels under the icons for clarity */
        letter-spacing: 0px !important;
    }
    
    nav a span {
        display: block !important; /* Show small labels under icons */
        font-size: 0.65rem !important;
        opacity: 0.8;
    }

    nav a i {
        font-size: 1.25rem !important; /* Premium touch target size */
    }
    
    nav a::after {
        display: none !important; /* Hide the line indicator under text */
    }

    nav a.active {
        color: var(--gold-light, #D9B57A) !important;
        text-shadow: 0 0 10px rgba(217, 181, 122, 0.4) !important;
    }
}
