/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: rgb(238, 231, 223);
    color: #2a2a2a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: normal;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', 'Georgia', serif;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

h4 {
    font-family: 'Georgia', serif;
}

p {
    font-size: 0.9rem;
    color: #5a5a5a;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Header */
.header {
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.header-hero-wrapper {
    background-image: url('Desktop-version-hero-image/fifth.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
}

.logo-image-mobile-top {
    display: none;
}

.logo-image {
    height: 480px;
    width: auto;
    object-fit: contain;
}

/* Desktop: show the Yash Interiors logo above the Studio Y logo, without
   shifting the Studio Y logo from its original position */
@media (min-width: 768px) {
    .logo-placeholder {
        position: relative;
    }

    .logo-image-mobile-top {
        display: block;
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        height: 95px;
        width: auto;
        object-fit: contain;
        z-index: 1;
    }
}

/* Hero Section */
.hero {
    position: relative;
    margin-bottom: 2rem;
}

.hero-image-placeholder {
    width: 100%;
    height: 70vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-text {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}

.hero-text h1 {
    text-align: center;
    color: #f5f5f5;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.architect-diary {
    position: absolute;
    top: 10px;
    right: 20px;
    max-width: 150px;
    font-size: 0.75rem;
    color: #5a5a5a;
    text-align: right;
}

/* About Us Section */
.about-us {
    position: relative;
    padding: 0 1.5rem;
    margin-top: -80px;
    margin-bottom: 0;
    z-index: 10;
}

.about-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 100;
}

.about-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'DM Serif Display', serif;
}

.about-overlay p {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    letter-spacing: 0;
    text-align: center;
    color: #4a4a4a;
}

/* Extended White Translucent Background */
.extended-white-background {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.85) 50px,
        rgba(255, 255, 255, 0.9) 100px
    );
    backdrop-filter: blur(15px);
    margin-top: -120px;
    padding-top: 140px;
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.about-overlay h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-overlay p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Establishment Section */
.establishment {
    padding: 2rem 3rem;
    margin-bottom: 2rem;
}

.year-display {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.year {
    font-size: 8rem;
    line-height: 0.9;
    font-weight: 400;
    color: #2a2a2a;
    font-family: 'DM Serif Display', serif;
    margin-top: -0.15em;
}

.year-description h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #847f80;
    font-family: 'Figtree', sans-serif;
    font-style: italic;
}

.year-description p {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-family: 'Figtree', sans-serif;
    color: #847f80;
    font-style: normal;
}

.elaborated {
    margin-top: 1rem;
    font-size: 1.2rem !important;
    line-height: 1.6;
    font-family: 'Figtree', sans-serif;
    color: #bdb7b9 !important;
    font-style: normal;
}

/* Stats Section */
.stats {
    padding: 84px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    padding: 1rem 0;
    border-bottom: 1px solid #E2E2E2;
}

/* Only reverse on desktop */
@media (min-width: 768px) {
    .stat-item-reverse {
        flex-direction: row-reverse;
    }
    
    .stat-item-reverse .stat-content {
        padding-left: 360px;
    }
}

.stat-item:last-child {
    border-bottom: 1px solid #E2E2E2;
}

.stat-number {
    font-size: 16rem;
    font-weight: 400;
    line-height: 0.66;
    margin-bottom: 1rem;
    font-family: 'DM Serif Display', serif;
    color: #332F30;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.8rem;
    color: #837F80;
    margin-bottom: 0.2rem;
    font-style: italic;
    font-weight: 600;
    font-family: 'Figtree', sans-serif;
    line-height: 100%;
    letter-spacing: 0;
}

.stat-sublabel {
    font-size: 1.5rem;
    color: #837F80;
    margin-bottom: 0;
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
    margin-left: 0;
}

.stat-images {
    display: flex;
    gap: 0;
    margin-left: auto;
    position: relative;
    width: 330px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.circular-image {
    width: 160px;
    height: 160px;
    min-width: 160px;
    min-height: 160px;
    border-radius: 50%;
    background-color: rgb(210, 205, 200);
    flex-shrink: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stat-images .circular-image:nth-child(1) { 
    z-index: 1; 
    margin-left: 0;
}
.stat-images .circular-image:nth-child(2) { 
    z-index: 2; 
    margin-left: -55px;
    box-shadow: -3px 0 0 0 white;
}
.stat-images .circular-image:nth-child(3) { 
    z-index: 3; 
    margin-left: -55px;
    box-shadow: -3px 0 0 0 white;
}

.stat-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-text {
    display: flex;
    flex-direction: column;
    margin-left: 0;
}

/* Horizontal Slider */
.horizontal-slider {
    margin: 3rem 0;
    overflow: hidden;
}

.slider-description {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #5a5a5a;
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 1rem;
    animation: scroll 20s linear infinite;
}

.slider-image {
    min-width: 350px;
    height: 500px;
    background-color: rgb(238, 231, 223);
    border-radius: 40px 0 0 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Projects Gallery */
.projects-gallery {
    padding: 3rem 1.5rem;
}

.projects-gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'DM Serif Display', serif;
    color: #332F30;
    line-height: 1;
    letter-spacing: -0.02em;
    text-align: center;
}

.projects-gallery h2 .glimpse-text {
    font-size: 64px;
}

.projects-gallery h2 .our-projects-text {
    font-size: 96px;
}

.projects-gallery h2 br {
    display: block;
}

.gallery-note {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
    display: none;
}

.gallery-slider {
    overflow: visible;
}

.gallery-track {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.gallery-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.project-images-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 1.5rem;
    padding: 0 7.5%;
    cursor: grab;
}

.project-images-slider:active {
    cursor: grabbing;
}

.project-images-slider::-webkit-scrollbar {
    display: none;
}

/* Hide arrows on desktop */
.slider-arrow {
    display: none;
}

.project-images-track {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
}

.project-image {
    width: 480px;
    aspect-ratio: 4 / 5;
    height: auto;
    background-color: rgb(238, 231, 223);
    border-radius: 19px 0 0 0;
    scroll-snap-align: center;
    transition: opacity 0.4s ease;
    flex-shrink: 0;
    background-size: 110%;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: block;
}

.project-video {
    min-width: 85%;
    height: 600px;
    border-radius: 19px 0 0 0;
    scroll-snap-align: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    display: block;
}

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

/* Use mobile images for desktop project images */
.nivara-img-1 { background-image: url('Nivara for Mobile/DSC04080-HDR.webp') !important; }
.nivara-img-2 { background-image: url('Nivara for Mobile/DSC04086-HDR (1).webp') !important; }
.nivara-img-3 { background-image: url('Nivara for Mobile/DSC04095-HDR.webp') !important; }
.nivara-img-4 { background-image: url('Nivara for Mobile/DSC04125-HDR.webp') !important; }
.nivara-img-5 { background-image: url('Nivara for Mobile/DSC04134-HDR (1).webp') !important; }
.nivara-img-6 { background-image: url('Nivara for Mobile/DSC04164-HDR.webp') !important; }
.nivara-img-7 { background-image: url('Nivara for Mobile/DSC04170-HDR.webp') !important; }
.nivara-img-8 { background-image: url('Nivara for Mobile/DSC04173-HDR.webp') !important; }
.nivara-img-9 { background-image: url('Nivara for Mobile/DSC04176.webp') !important; }
.nivara-img-10 { background-image: url('Nivara for Mobile/DSC04186-HDR.webp') !important; }
.nivara-img-11 { background-image: url('Nivara for Mobile/DSC04195-HDR.webp') !important; }
.nivara-img-12 { background-image: url('Nivara for Mobile/DSC04199-HDR.webp') !important; }
.nivara-img-13 { background-image: url('Nivara for Mobile/DSC04202-HDR.webp') !important; }
.nivara-img-14 { background-image: url('Nivara for Mobile/DSC04207-HDR.webp') !important; }
.nivara-img-15 { background-image: url('Nivara for Mobile/DSC04214-HDR (1).webp') !important; }
.nivara-img-16 { background-image: url('Nivara for Mobile/DSC04220-HDR.webp') !important; }

.team-pixel-first { background-image: url("TP's Headquater for Mobile/first.webp") !important; }
.team-pixel-second { background-image: url("TP's Headquater for Mobile/second.webp") !important; }
.team-pixel-third { background-image: url("TP's Headquater for Mobile/third.webp") !important; }
.team-pixel-fourth { background-image: url("TP's Headquater for Mobile/fourth.webp") !important; }
.team-pixel-fifth { background-image: url("TP's Headquater for Mobile/fifth.webp") !important; }
.team-pixel-sixth { background-image: url("TP's Headquater for Mobile/sixth.webp") !important; }
.team-pixel-seventh { background-image: url("TP's Headquater for Mobile/01.webp") !important; }
.team-pixel-eighth { background-image: url("TP's Headquater for Mobile/09 (1).webp") !important; }

.pavilion-img-1 { background-image: url('Pavilion For Mobile/DSC08680.webp') !important; }
.pavilion-img-2 { background-image: url('Pavilion For Mobile/DSC08709.webp') !important; }
.pavilion-img-3 { background-image: url('Pavilion For Mobile/DSC08718.webp') !important; }
.pavilion-img-4 { background-image: url('Pavilion For Mobile/DSC08725.webp') !important; }
.pavilion-img-5 { background-image: url('Pavilion For Mobile/DSC08727 (1).webp') !important; }
.pavilion-img-6 { background-image: url('Pavilion For Mobile/DSC08738.webp') !important; }
.pavilion-img-7 { background-image: url('Pavilion For Mobile/DSC08754.webp') !important; }
.pavilion-img-8 { background-image: url('Pavilion For Mobile/DSC08761.webp') !important; }
.pavilion-img-9 { background-image: url('Pavilion For Mobile/DSC08815.webp') !important; }
.pavilion-img-10 { background-image: url('Pavilion For Mobile/DSC08817.webp') !important; }
.pavilion-img-11 { background-image: url('Pavilion For Mobile/DSC08835.webp') !important; }

.katni-img-1 { background-image: url('Office Space for mobile/02.webp') !important; }
.katni-img-2 { background-image: url('Office Space for mobile/06.webp') !important; }
.katni-img-3 { background-image: url('Office Space for mobile/08.webp') !important; }
.katni-img-4 { background-image: url('Office Space for mobile/09 (1).webp') !important; }
.katni-img-5 { background-image: url('Office Space for mobile/10.webp') !important; }
.katni-img-6 { background-image: url('Office Space for mobile/12.webp') !important; }
.katni-img-7 { background-image: url('Office Space for mobile/13.webp') !important; }
.katni-img-8 { background-image: url('Office Space for mobile/7.webp') !important; }

/* Video Mute Button */
.video-mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-mute-btn svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

/* Video Play Button (Mobile Only) */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.8);
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 15;
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
    margin-left: 4px;
}

.mobile-only-play {
    display: none;
}

/* Navigation Arrows for Mobile */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-arrow i {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.slider-arrow-right {
    right: 10px;
}

.mobile-only {
    display: none;
}

.project-images-slider {
    position: relative;
}

.nivara-image {
    background-size: 110%;
    height: 600px;
    background-position: center bottom;
}

.team-pixel-first {
    background-position: center 45% !important;
}

.team-pixel-second {
    background-position: center 60% !important;
    background-size: 99.9% !important;
}

.team-pixel-third {
    background-image: url('Team Pixel\'s Head Quarter/third only for desktop.webp') !important;
    background-position: center 95% !important;
    background-size: cover !important;
}

.team-pixel-fourth {
    background-position: center 50% !important;
    background-size: cover !important;
}

.team-pixel-fifth {
    background-position: center 40% !important;
    background-size: cover !important;
}

.team-pixel-sixth {
    background-position: center 19% !important;
    background-size: cover !important;
}

.pavilion-third {
    background-position: center 30% !important;
}

.pavilion-fifth {
    background-position: left 30% !important;
}

.pavilion-sixth {
    background-position: center 30% !important;
}

@media (max-width: 767px) {
    .team-pixel-first {
        background-position: center !important;
    }
    
    .team-pixel-second {
        background-position: center !important;
        background-size: 110% !important;
    }
    
    .team-pixel-third {
        background-image: url('Team Pixel\'s Head Quarter/third.webp') !important;
        background-position: center !important;
        background-size: 110% !important;
    }
    
    .team-pixel-fourth {
        background-position: center !important;
        background-size: 110% !important;
    }
    
    .team-pixel-fifth {
        background-position: center !important;
        background-size: 110% !important;
    }
    
    .team-pixel-sixth {
        background-position: center !important;
        background-size: 110% !important;
    }
    
    .pavilion-third {
        background-position: center !important;
    }
    
    .pavilion-fifth {
        background-position: center !important;
    }
    
    .pavilion-sixth {
        background-position: center !important;
    }
}

.gallery-image {
    display: none;
}

.project-info {
    text-align: center;
}

.project-info h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -2px;
    text-align: center;
    margin-bottom: 0.5rem;
}

.project-info .location {
    font-family: 'Figtree', sans-serif !important;
    font-weight: 600 !important;
    font-style: italic !important;
    font-size: 24px !important;
    line-height: 100% !important;
    letter-spacing: 0px !important;
    text-align: center !important;
    margin-bottom: 0.3rem;
    color: #847f80 !important;
}

.project-info .duration {
    font-family: 'Figtree';
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 1rem;
    color: #847f80;
}

.project-info .description {
    font-family: 'Figtree';
    font-weight: 300;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: center;
    padding-left: 9rem;
    padding-right: 9rem;
    color: #847f80;
}

.gallery-item:last-child .project-info .description {
    padding-bottom: 8rem;
    border-bottom: none;
    margin-bottom: 2rem;
}

/* Founder Section */
.founder {
    padding: 64px 1.5rem;
    padding-bottom: 3rem;
    border-bottom: 5px solid #E2E2E2;
    margin-bottom: 3rem;
}

.founder-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.founder-body {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.founder-left {
    display: flex;
    flex-direction: column;
}

.founder-image-placeholder {
    width: 485px;
    height: 728px;
    min-width: 485px;
    background-color: rgb(238, 231, 223);
    border-radius: 19px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.founder-content {
    flex: 1;
    text-align: right;
}

.founder-subtitle {
    font-family: 'Figtree', sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0px;
    margin-bottom: 0.5rem;
    color: #847f80;
    text-align: left;
    line-height: 100%;
    padding-left: 0;
}

.founder-subtitle .subtitle-light {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 32px;
    display: block;
    color: #847f80;
}

.founder h2 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 96px;
    line-height: 96%;
    letter-spacing: -2px;
    text-align: right;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

/* The founder-content copy is only used on desktop, positioned next to the image */
.founder-content h2 {
    display: none;
}

/* Desktop: show the heading beside the founder image instead of above it */
@media (min-width: 768px) {
    .founder-header h2 {
        display: none;
    }

    .founder-content h2 {
        display: block;
        /* offset the font's internal leading so the caps line up with the image top */
        margin-top: -1.25rem;
    }

    .founder-bio,
    .founder-name {
        padding-right: 30px;
    }
}

.founder-bio {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: right;
    margin-bottom: 1rem;
    padding-left: 8.5rem;
}

.founder-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: right;
    font-style: italic;
    margin: 2rem 0;
}

.image-label {
    font-size: 0.85rem;
    color: #5a5a5a;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 128px;
}

.testimonials h2 {
    text-align: center;
    padding-bottom: 72px;
    margin-bottom: 84px;
}

.testimonial-heading-small {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -2px;
    color: #332F30;
}

.testimonial-heading-large {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -2px;
    color: #332F30;
}

.testimonial-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    gap: 3rem;
    border-bottom: 5px solid #E2E2E2;
}

.testimonial-item:last-child {
    border-bottom: none;
}

.testimonial-item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.client-image-placeholder {
    width: 160px;
    height: 160px;
    min-width: 160px;
    border-radius: 50%;
    background-color: rgb(238, 231, 223);
    margin-top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.quote-mark {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 200px;
    line-height: 1;
    letter-spacing: -2px;
    color: #C1C1C1;
    position: absolute;
    top: 0;
    right: 20px;
}

.client-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 121%;
    letter-spacing: 0px;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.client-occupation {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 121%;
    letter-spacing: 0px;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.testimonial-text {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 121%;
    letter-spacing: 0px;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.testimonial-subtext {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 121%;
    letter-spacing: 0px;
    color: #888;
}

/* Inspiration Section */
.inspiration {
    padding: 3rem 128px;
    background-color: transparent;
    position: relative;
}

.inspiration h2 {
    text-align: center;
    padding-bottom: 72px;
    margin-bottom: 84px;
}

.inspiration-heading-small {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -2px;
    color: #332F30;
}

.inspiration-heading-large {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -2px;
    color: #332F30;
}

/* Process Section */
.process {
    padding: 3rem 1.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-heading-small {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -2px;
    color: #BDBDBD;
}

.process-heading-large {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -2px;
    color: #332F30;
}

.process-subtitle {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.process-step {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step h4 {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000000;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.process-image {
    width: 100%;
    max-width: 1342px;
    height: 367.38px;
    background-color: rgb(238, 231, 223);
    border-top-left-radius: 19px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.process-step h3 {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
    color: #000000;
    align-self: flex-start;
}

.process-step p {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    color: #837F80;
}

/* Desktop: left-align the step description instead of letting it center-shrink */
@media (min-width: 768px) {
    .process-step p {
        align-self: flex-start;
        width: 100%;
        text-align: left;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem 128px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.contact-form-section iframe {
    max-width: 800px;
    margin: 0 auto;
    display: block;
    overflow: hidden;
}

/* Footer */
.footer {
    background-color: #DCD9D9;
    padding: 0;
    position: relative;
    min-height: 600px;
    margin: 0;
}

.footer-container {
    width: 100%;
    margin: 0;
    position: relative;
    height: 100%;
    min-height: 600px;
    padding: 4rem 4rem 2rem 4rem;
}

/* Footer Image */
.footer-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
}

/* Staggered Navigation Links */
.footer-nav-staggered {
    position: relative;
    height: 300px;
    margin-bottom: 4rem;
    z-index: 1;
}

.nav-link {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    color: #3A3A3A;
    text-decoration: none;
    position: absolute;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

/* Staggered positioning - exact layout from image */
.nav-home {
    top: 0;
    left: 0;
}

.nav-about {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-projects {
    top: 0;
    right: 0;
}

/* Contact Information */
.footer-contact-info {
    position: absolute;
    bottom: 80px;
    left: 4rem;
    padding-bottom: 2rem;
}

.contact-phone,
.contact-email {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    color: #4A4A4A;
    margin: 0 0 0px 0;
}

.contact-email {
    margin-bottom: 20px;
}

.contact-address {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    color: #7A7A7A;
    margin: 0 0 2px 0;
}

/* Copyright Footer */
.footer-copyright {
    position: absolute;
    bottom: 20px;
    left: 4rem;
    padding-bottom: 1rem;
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #000000;
    display: flex;
    gap: 1rem;
}

.footer-copyright span {
    margin: 0;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 0;
    }
    
    .gallery-item {
        min-width: 45%;
    }
    
    .projects-gallery h2 {
        text-align: center;
    }
}


/* Mobile Responsive Optimizations */
@media (max-width: 767px) {
    /* Header and Logo mobile */
    .header {
        padding: 1rem 0;
    }
    
    .header-hero-wrapper {
        background-image: url('Mobile-version-hero-image/sixth 2.webp') !important;
        min-height: 100vh;
        background-size: cover;
        background-position: top right;
    }
    
    .logo-placeholder {
        margin-top: 0;
        padding-top: 1rem;
        flex-direction: column;
        gap: 0;
    }
    
    .logo-image-mobile-top {
        display: block;
        height: 80px;
        width: auto;
        object-fit: contain;
        margin-bottom: -3rem;
        margin-top: 3rem;
    }
    
    .logo-image {
        height: 180px;
    }
    
    /* Hero section mobile */
    .hero {
        margin-bottom: 1rem;
    }
    
    .hero-image-placeholder {
        height: auto;
        min-height: 40vh;
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    /* About section mobile */
    .about-us {
        padding: 0 1rem;
        margin-top: -40px;
    }
    
    .about-overlay {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .about-overlay h2 {
        font-size: 1.8rem;
    }
    
    .about-overlay p {
        font-size: 0.875rem;
        line-height: 140%;
    }
    
    /* Extended white background mobile */
    .extended-white-background {
        margin-top: -60px;
        padding-top: 80px;
        border-radius: 20px 20px 0 0;
    }
    
    /* Establishment section mobile */
    .establishment {
        padding: 2rem 1.5rem;
    }
    
    .year-display {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
    }
    
    .year {
        font-size: 3rem;
        flex-shrink: 0;
        line-height: 0.85;
    }
    
    .year-description {
        flex: 1;
    }
    
    .year-description h4 {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .year-description p {
        font-size: 0.75rem;
    }
    
    .elaborated {
        font-size: 0.75rem !important;
        line-height: 140% !important;
    }
    
    /* Horizontal slider mobile */
    .horizontal-slider {
        margin: 2rem 0;
    }
    
    .slider-track {
        gap: 1rem;
        animation: scrollMobile 24s linear infinite;
    }
    
    .slider-image {
        min-width: 250px;
        height: 350px;
        border-radius: 20px 0 0 0;
    }
    
    /* Stats section mobile */
    .stats {
        padding: 3rem 1.5rem;
    }
    
    .stat-item {
        flex-direction: row !important;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .stat-item-reverse {
        flex-direction: row !important;
    }
    
    .stat-content {
        order: 1;
        flex: 1;
    }
    
    .stat-images {
        order: 2;
        width: 140px;
        margin-left: 0;
    }
    
    .stat-number {
        font-size: 4rem;
        line-height: 1;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-sublabel {
        font-size: 0.85rem;
    }
    
    .circular-image {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
    }
    
    .stat-images .circular-image:nth-child(2),
    .stat-images .circular-image:nth-child(3) {
        margin-left: -20px;
    }
    
    /* Projects gallery mobile */
    .projects-gallery {
        padding: 2rem 1rem;
    }
    
    .projects-gallery h2 {
        margin-bottom: 2rem;
    }
    
    .projects-gallery h2 .glimpse-text {
        font-size: 32px;
    }
    
    .projects-gallery h2 .our-projects-text {
        font-size: 48px;
    }
    
    .gallery-track {
        gap: 3rem;
    }
    
    .project-images-slider {
        position: relative;
        padding: 0;
        margin-bottom: 1rem;
        overflow: hidden;
        width: 100%;
    }
    
    .project-images-track {
        display: block;
        position: relative;
        width: 100%;
    }
    
    .slider-arrow-left {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .slider-arrow-right {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    /* Show arrows and play button on mobile */
    .mobile-only {
        display: flex !important;
    }
    
    .mobile-only-play {
        display: flex !important;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .slider-arrow i {
        width: 20px;
        height: 20px;
    }
    
    .video-mute-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 15px;
        top: auto;
        transform: none;
        right: 15px;
        z-index: 100;
        display: flex !important;
    }
    
    .video-mute-btn:hover {
        transform: none;
    }
    
    .video-mute-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .project-image {
        width: 100%;
        aspect-ratio: 4 / 5;
        height: auto;
        border-radius: 15px 0 0 0;
        background-size: cover;
        background-position: center;
        display: none;
    }
    
    .project-video {
        width: 100%;
        aspect-ratio: 4 / 5;
        height: auto;
        border-radius: 15px 0 0 0;
        position: relative;
        overflow: visible;
        display: none;
    }
    
    .project-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px 0 0 0;
    }
    
    .project-video video::-webkit-media-controls {
        display: none !important;
    }
    
    .project-video video::-webkit-media-controls-enclosure {
        display: none !important;
    }
    
    /* Hide mute button on mobile */
    .video-mute-btn {
        display: none !important;
    }
    
    .nivara-image {
        background-size: cover !important;
        aspect-ratio: 4 / 5 !important;
        height: auto !important;
        background-position: center !important;
    }
    
    /* Mobile-specific Nivara images */
    .nivara-img-1 {
        background-image: url('Nivara for Mobile/DSC04080-HDR.webp') !important;
    }
    
    .nivara-img-2 {
        background-image: url('Nivara for Mobile/DSC04086-HDR (1).webp') !important;
    }
    
    .nivara-img-3 {
        background-image: url('Nivara for Mobile/DSC04095-HDR.webp') !important;
    }
    
    .nivara-img-4 {
        background-image: url('Nivara for Mobile/DSC04125-HDR.webp') !important;
    }
    
    .nivara-img-5 {
        background-image: url('Nivara for Mobile/DSC04134-HDR (1).webp') !important;
    }
    
    .nivara-img-6 {
        background-image: url('Nivara for Mobile/DSC04164-HDR.webp') !important;
    }
    
    .nivara-img-7 {
        background-image: url('Nivara for Mobile/DSC04170-HDR.webp') !important;
    }
    
    .nivara-img-8 {
        background-image: url('Nivara for Mobile/DSC04173-HDR.webp') !important;
    }
    
    .nivara-img-9 {
        background-image: url('Nivara for Mobile/DSC04176.webp') !important;
    }
    
    .nivara-img-10 {
        background-image: url('Nivara for Mobile/DSC04186-HDR.webp') !important;
    }
    
    .nivara-img-11 {
        background-image: url('Nivara for Mobile/DSC04195-HDR.webp') !important;
    }
    
    .nivara-img-12 {
        background-image: url('Nivara for Mobile/DSC04199-HDR.webp') !important;
    }
    
    .nivara-img-13 {
        background-image: url('Nivara for Mobile/DSC04202-HDR.webp') !important;
    }
    
    .nivara-img-14 {
        background-image: url('Nivara for Mobile/DSC04207-HDR.webp') !important;
    }
    
    .nivara-img-15 {
        background-image: url('Nivara for Mobile/DSC04214-HDR (1).webp') !important;
    }
    
    .nivara-img-16 {
        background-image: url('Nivara for Mobile/DSC04220-HDR.webp') !important;
    }
    
    /* Mobile-specific Team Pixel images */
    .team-pixel-first {
        background-image: url("TP's Headquater for Mobile/first.webp") !important;
    }
    
    .team-pixel-second {
        background-image: url("TP's Headquater for Mobile/second.webp") !important;
    }
    
    .team-pixel-third {
        background-image: url("TP's Headquater for Mobile/third.webp") !important;
    }
    
    .team-pixel-fourth {
        background-image: url("TP's Headquater for Mobile/fourth.webp") !important;
    }
    
    .team-pixel-fifth {
        background-image: url("TP's Headquater for Mobile/fifth.webp") !important;
    }
    
    .team-pixel-sixth {
        background-image: url("TP's Headquater for Mobile/sixth.webp") !important;
    }
    
    .team-pixel-seventh {
        background-image: url("TP's Headquater for Mobile/01.webp") !important;
    }
    
    .team-pixel-eighth {
        background-image: url("TP's Headquater for Mobile/09 (1).webp") !important;
    }
    
    /* Mobile-specific Pavilion images */
    .pavilion-img-1 {
        background-image: url('Pavilion For Mobile/DSC08680.webp') !important;
    }
    
    .pavilion-img-2 {
        background-image: url('Pavilion For Mobile/DSC08709.webp') !important;
    }
    
    .pavilion-img-3 {
        background-image: url('Pavilion For Mobile/DSC08718.webp') !important;
    }
    
    .pavilion-img-4 {
        background-image: url('Pavilion For Mobile/DSC08725.webp') !important;
    }
    
    .pavilion-img-5 {
        background-image: url('Pavilion For Mobile/DSC08727 (1).webp') !important;
    }
    
    .pavilion-img-6 {
        background-image: url('Pavilion For Mobile/DSC08738.webp') !important;
    }
    
    .pavilion-img-7 {
        background-image: url('Pavilion For Mobile/DSC08754.webp') !important;
    }
    
    .pavilion-img-8 {
        background-image: url('Pavilion For Mobile/DSC08761.webp') !important;
    }
    
    .pavilion-img-9 {
        background-image: url('Pavilion For Mobile/DSC08815.webp') !important;
    }
    
    .pavilion-img-10 {
        background-image: url('Pavilion For Mobile/DSC08817.webp') !important;
    }
    
    .pavilion-img-11 {
        background-image: url('Pavilion For Mobile/DSC08835.webp') !important;
    }
    
    /* Mobile-specific Office Space (Katni) images */
    .katni-img-1 {
        background-image: url('Office Space for mobile/06.webp') !important;
    }
    
    .katni-img-2 {
        background-image: url('Office Space for mobile/08.webp') !important;
    }
    
    .katni-img-3 {
        background-image: url('Office Space for mobile/09 (1).webp') !important;
    }
    
    .katni-img-4 {
        background-image: url('Office Space for mobile/10.webp') !important;
    }
    
    .katni-img-5 {
        background-image: url('Office Space for mobile/13.webp') !important;
    }
    
    .katni-img-6 {
        background-image: url('Office Space for mobile/02.webp') !important;
    }
    
    .katni-img-7 {
        background-image: url('Office Space for mobile/7.webp') !important;
    }
    
    .katni-img-8 {
        background-image: url('Office Space for mobile/12.webp') !important;
    }
    
    .project-info h3 {
        font-size: 36px;
    }
    
    .project-info .location {
        font-size: 18px !important;
    }
    
    .project-info .duration {
        font-size: 14px;
    }
    
    .project-info .description {
        font-size: 14px;
        line-height: 140%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .gallery-item:last-child .project-info .description {
        padding-bottom: 3rem;
    }
    
    /* Founder section mobile */
    .founder {
        padding: 3rem 1.5rem;
    }
    
    .founder-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .founder-subtitle {
        font-size: 20px;
        text-align: left;
    }
    
    .founder-subtitle .subtitle-light {
        font-size: 20px;
    }
    
    .founder h2 {
        font-size: 48px;
        text-align: left;
        padding-right: 0;
        line-height: 100%;
    }
    
    .founder-body {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .founder-image-placeholder {
        width: 100%;
        height: 400px;
        min-width: 100%;
        border-radius: 15px 0 0 0;
        background-image: url('founder-image-only-for-mobile/IMG_2392 (2).webp') !important;
        background-size: cover;
        transform: scale(1);
    }
    
    .founder-content {
        text-align: left;
    }
    
    .founder-bio {
        text-align: left;
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 1rem;
        padding-left: 0;
    }
    
    .founder-name {
        text-align: left;
        font-size: 18px;
        margin: 1.5rem 0;
    }
    
    /* Testimonials section mobile */
    .testimonials {
        padding: 3rem 1.5rem;
    }
    
    .testimonials h2 {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-heading-small {
        font-size: 32px;
    }
    
    .testimonial-heading-large {
        font-size: 48px;
    }
    
    .testimonial-item {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .client-image-placeholder {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }
    
    .quote-mark {
        font-size: 80px;
        right: 5px;
        top: -10px;
    }
    
    .client-name {
        font-size: 24px;
    }
    
    .client-occupation {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 18px;
        line-height: 140%;
    }
    
    .testimonial-subtext {
        font-size: 16px;
        line-height: 140%;
    }
    
    /* Inspiration section mobile */
    .inspiration {
        padding: 2rem 0;
    }
    
    /* Inspiration section mobile */
    .inspiration {
        padding: 3rem 1rem;
    }
    
    .inspiration h2 {
        padding-bottom: 36px;
        margin-bottom: 42px;
    }
    
    .inspiration-heading-small {
        font-size: 32px;
    }
    
    .inspiration-heading-large {
        font-size: 48px;
    }
    
    /* Process section mobile */
    .process {
        padding: 3rem 1rem 0 1rem;
        overflow-x: hidden;
    }
    
    .process h2 {
        margin-bottom: 2rem;
    }
    
    .process-heading-small {
        font-size: 32px;
    }
    
    .process-heading-large {
        font-size: 48px;
    }
    
    .process-steps {
        gap: 2rem;
    }
    
    .process-step h4 {
        font-size: 48px;
        margin-bottom: 0.5rem;
    }
    
    .process-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 150px;
        aspect-ratio: 16/9;
        border-top-left-radius: 15px;
    }
    
    .process-step h3 {
        font-size: 28px;
        margin-bottom: 0.5rem;
    }
    
    .process-step p {
        font-size: 14px;
        line-height: 140%;
    }
    
    /* Contact form mobile */
    .contact-form-section {
        padding: 3rem 1rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 0;
        min-height: auto;
    }
    
    .footer-container {
        min-height: auto;
        height: auto;
        padding: 3rem 1.5rem 1.5rem 1.5rem;
    }
    
    .footer-image {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    .footer-nav-staggered {
        height: 200px;
        margin-bottom: 3rem;
    }
    
    .nav-link {
        font-size: 32px;
    }
    
    .nav-home {
        top: 0;
        left: 0;
    }
    
    .nav-about {
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-projects {
        top: 0;
        right: 0;
    }
    
    .footer-contact-info {
        position: relative;
        bottom: auto;
        left: auto;
        margin-bottom: 2rem;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 16px;
    }
    
    .contact-address {
        font-size: 14px;
    }
    
    .footer-copyright {
        position: relative;
        bottom: auto;
        left: auto;
        font-size: 10px;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    @keyframes scrollMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 8 - 1rem * 8));
        }
    }
}

/* ===== Enquire Now Popup ===== */
.enquire-popup {
    width: min(92vw, 460px);
    /* the global * { margin: 0 } reset kills the UA margin:auto that centres a dialog */
    margin: auto;
    padding: 0;
    border: none;
    border-radius: 14px;
    background: #ffffff;
    color: #2a2a2a;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(26, 26, 26, 0.28);
}

.enquire-popup::backdrop {
    background: rgba(26, 26, 26, 0.55);
}

.enquire-popup[open] {
    animation: enquire-in 0.28s ease-out;
}

@keyframes enquire-in {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: none; }
}

/* Stop the page behind from scrolling while the popup is open */
body:has(.enquire-popup[open]) {
    overflow: hidden;
}

.enquire-inner {
    position: relative;
    padding: 2.6rem 2rem 2rem;
}

.enquire-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: none;
    border: none;
    border-radius: 50%;
    color: #847f80;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.enquire-close:hover {
    background: #f5f5f5;
    color: #2a2a2a;
}

.enquire-close svg {
    width: 20px;
    height: 20px;
}

.enquire-popup h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.7rem;
    letter-spacing: 2px;
    color: #332F30;
    text-align: center;
    width: fit-content;
    margin: 0 auto 1.8rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #bdb7b9;
}

.enquire-field {
    position: relative;
    margin-bottom: 0.9rem;
}

.enquire-field svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #847f80;
    pointer-events: none;
}

.enquire-field input {
    width: 100%;
    padding: 0.95rem 1rem 0.95rem 3rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.95rem;
    color: #2a2a2a;
    background: #ffffff;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease;
}

.enquire-field input::placeholder {
    color: #847f80;
}

.enquire-field input:focus {
    border-color: #332F30;
}

.enquire-submit {
    width: 100%;
    margin-top: 0.6rem;
    padding: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #ffffff;
    background: #332F30;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.enquire-submit:hover {
    opacity: 0.85;
}

.enquire-submit:disabled {
    opacity: 0.6;
    cursor: default;
}

.enquire-thanks {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #332F30;
    text-align: center;
    padding: 2.5rem 0 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .enquire-popup[open] { animation: none; }
}

@media (max-width: 480px) {
    .enquire-inner { padding: 2.4rem 1.4rem 1.6rem; }
    .enquire-popup h2 { font-size: 1.45rem; }
}
