@font-face {
    font-family: 'Break';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/Break_Font_Updated/Break_Font/break%20extralight.ttf') format('truetype');
}
@font-face {
    font-family: 'Break';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Break_Font_Updated/Break_Font/break%20light.ttf') format('truetype');
}
@font-face {
    font-family: 'Break';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Break_Font_Updated/Break_Font/break%20regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Break';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Break_Font_Updated/Break_Font/break%20semibold.ttf') format('truetype');
}
@font-face {
    font-family: 'Break';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Break_Font_Updated/Break_Font/break%20bold.ttf') format('truetype');
}

:root {
    --bg-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --gray: #888888;
    --arch-purple: #6b5b7b;
    --int-brown: #8a6a51;
    --about-bg: #2a2a2a;
    --footer-bg: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Break', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    letter-spacing: 0.08em;
    font-size: 18px;
    font-weight: 600;
}


.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background-color: var(--bg-light);
    z-index: 99999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}

.header-logo-img {
    height: 13px;
    display: block;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* Initially hide logo on Home Page until scrolled */
body.home-page:not(.scrolled) .header-logo-img {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

body.home-page.scrolled .header-logo-img {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease-in-out 0.2s, transform 0.4s ease-in-out 0.2s;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--gray);
}

.nav a.active {
    font-weight: 700;
    color: var(--text-dark);
    -webkit-text-stroke: 0.8px var(--text-dark);
}

/* Hamburger Menu Default (Hidden on Desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-dark);
    transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
}

/* Open state for hamburger */
body.nav-active .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

body.nav-active .hamburger span:nth-child(2) {
    opacity: 0;
}

body.nav-active .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero */
.hero {
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.hero-graphic {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 18px;
    font-weight: 600;
}

.slider-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 0;
    align-items: stretch;
}

/* Architectures Specific */
.slider-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-header {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}

.project-banner {
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
}

.arch-banner {
    background-color: var(--arch-purple);
}

.interior-banner {
    background-color: var(--int-brown);
}

.gallery-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    transition: background-color 0.5s ease;
}

.gallery-slider-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.gallery-track img {
    width: 25%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    transition: opacity 0.2s ease-in-out;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.gallery-dots .dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s;
    cursor: pointer;
}

.gallery-dots .dot.active {
    background-color: white;
}

.slider-right {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.main-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 24px;
    font-weight: bold;
    transition: opacity 0.5s ease;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

.slider-controls {
    display: flex;
}

.slider-controls button {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: black;
}

.arch-controls {
    position: absolute;
    bottom: 0;
    right: 0;
}

.arch-controls button {
    background: white;
    color: black;
}

.arch-controls button:hover {
    background: #f5f5f5;
    color: black;
}

.project-details {
    margin-top: 30px;
    width: 100%;
    padding-left: 60px;
    padding-right: max(5%, calc((100vw - 1400px) / 2));
}

.project-details::before {
    content: '';
    display: block;
    width: 40px;
    height: 6px;
    background-color: #e0e0e0;
    margin-bottom: 20px;
}

.project-details h3 {
    font-size: 28px;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.project-details p {
    color: var(--gray);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
}

.project-details-line {
    border: none;
    border-top: 1px solid #e0e0e0;
    width: 100%;
    margin-top: 20px;
}

/* Interiors Specific */
.interiors-grid {
    position: relative;
}

.interiors-info {
    z-index: 2;
    position: relative;
}

.interior-project-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 3;
}

.interior-project-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.interior-project-card p {
    color: var(--gray);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    max-width: 85%;
}

.interior-controls {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.interior-controls button {
    background: white;
    color: black;
}

.interior-controls button:hover {
    background: #f5f5f5;
    color: black;
}

/* About Section */
.about-section {
    width: 100%;
    background-color: #1e1e1e;
    overflow-x: hidden;
}

.about-image-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    display: block;
    max-width: 100vw;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content-wrapper {
    padding: 100px 0;
}

.about-content-wrapper h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    color: white;
}

.about-content-wrapper p {
    color: #cccccc;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    max-width: 90%;
}

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Break', sans-serif;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: white;
    color: black;
    border-color: white;
}

.btn-outline-dark {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Break', sans-serif;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.footer-logo {
    text-align: center;
    width: 100%;
}

.footer-logo img {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
}

.footer-desc {
    color: #999999;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
}

.footer-top-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-top-links a {
    color: white;
    text-decoration: underline;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-top-links a:hover {
    color: #cccccc;
}

.footer-divider {
    border: none;
    border-top: 1px solid #1a1a1a;
    margin: 50px 0;
}

.footer-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.footer-services .service-col {
    display: flex;
    flex-direction: column;
}

.footer-services .service-col:first-child {
    border-right: 1px solid #1a1a1a;
    padding-right: 80px;
}

.footer-services .service-col:last-child {
    padding-left: 80px;
}

.service-num {
    color: #555555;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.service-col h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.service-col p {
    color: #888888;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    max-width: 420px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #555555;
}

.footer-bottom .copyright {
    letter-spacing: 1.5px;
}

.footer-bottom .developer {
    letter-spacing: 1.5px;
}

.footer-bottom .developer span {
    color: #888888;
    font-weight: 700;
}

/* Lenis Smooth Scroll Recommended Styles */
html.lenis,
html.lenis body {
    height: auto;
    font-size: 18px;
    font-weight: 600;
}


.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* Scroll Reveal Animations */
.reveal,
.reveal-up,
.reveal-scale {
    opacity: 0;
    transition: all 2.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-scale {
    transform: scale(1.05);
}

.reveal.active,
.reveal-up.active,
.reveal-scale.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Zoom In Scroll Reveal */
.reveal-zoom-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 2.0s cubic-bezier(0.16, 1, 0.3, 1), transform 2.0s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Fullscreen Sections on Desktop */
@media (min-width: 993px) {
    .hero {
        height: calc(100vh - 45px);
        scroll-margin-top: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-graphic {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-banner-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    body.home-page .hero-banner-img {
        position: fixed;
        top: 45px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 45px);
        object-fit: cover;
        z-index: 100000;
        transform-origin: 5% 5%;
        transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease-in-out;
    }

    body.home-page.scrolled .hero-banner-img {
        transform: scale(0.08) translate(-10%, -50%);
        opacity: 0;
        pointer-events: none;
        transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-in-out 0.2s;
    }

    .footer {
        height: calc(100vh - 45px);
        scroll-margin-top: 45px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .footer .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .footer-divider {
        margin: 2vh 0;
    }

    .footer-top {
        margin-bottom: 2vh;
    }

    .footer-logo img {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    .section.architectures {
        padding: 0;
        height: calc(100vh - 45px);
        scroll-margin-top: 45px;
        overflow: hidden;
    }

    .section.interiors {
        padding: 0;
        height: calc(100vh - 45px);
        scroll-margin-top: 45px;
        overflow: hidden;
    }

    .slider-grid {
        height: calc(100vh - 45px);
        min-height: 0;
    }

    .slider-left {
        height: 100%;
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .slider-right {
        height: 100%;
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .project-info-left {
        min-height: 0;
    }

    .main-image-wrapper {
        height: auto;
        flex-grow: 1;
        min-height: 0;
        aspect-ratio: auto;
    }

    .gallery-slider-wrapper {
        aspect-ratio: auto;
        height: 35vh;
        min-height: 0;
    }

    .interior-project-card {
        height: auto;
        min-height: 35vh;
    }

    .about-section {
        height: calc(100vh - 45px);
        scroll-margin-top: 45px;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .about-image-wrapper {
        height: auto;
        flex-grow: 1;
    }

    .about-content-wrapper {
        padding: 40px 0;
        flex-shrink: 0;
    }

    .about-content-wrapper h2 {
        font-size: 52px;
        margin-bottom: 15px;
    }

    .about-content-wrapper p {
        margin-bottom: 25px;
    }
}

/* Responsive */
@media (max-width: 992px) {

    /* Header & Mobile Nav */
    .header-container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
    }

    body.nav-active .nav {
        opacity: 1;
        visibility: visible;
    }

    .nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-item {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.5s ease;
    }

    body.nav-active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    body.nav-active .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    body.nav-active .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    body.nav-active .nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }

    body.nav-active .nav-item:nth-child(5) {
        transition-delay: 0.5s;
    }

    body.nav-active .nav-item {
        transform: translateY(0);
        opacity: 1;
    }

    .nav a {
        font-size: 28px;
        font-weight: 600;
        color: var(--text-dark);
    }

    /* Typography & Spacing */
    .section {
        padding: 60px 0;
    }

    .section-header h2,
    .about-content-wrapper h2,
    .interior-hero-content h1,
    .projects-title {
        font-size: 36px;
    }

    /* Homepage Grids */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .slider-grid,
    .interiors-grid {
        display: flex;
        flex-direction: column;
    }

    .slider-left,
    .slider-right {
        display: contents;
    }

    .section-header {
        order: 1;
        padding: 40px 20px 20px;
        min-height: auto;
    }

    .main-image-wrapper {
        order: 2;
    }

    .project-details,
    .interior-project-card {
        order: 3;
    }

    .project-info-left {
        order: 4;
        margin-top: 20px;
    }

    .gallery-image {
        height: 250px;
    }

    .project-details {
        padding-left: 20px;
        padding-right: 20px;
    }

    .interiors-info {
        margin-right: 0;
    }

    .interior-project-card {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: -30px;
        padding: 30px 20px;
    }

    .about-image-wrapper {
        height: 300px;
    }

    .about-content-wrapper {
        padding: 60px 20px;
    }

    /* Project Listings & Detail pages */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .interior-page-hero {
        height: auto;
        padding-top: 40px;
    }

    .interior-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .interior-hero-content {
        max-width: 100%;
        padding: 0 20px 40px;
    }

    .interior-hero-image {
        width: 100%;
        height: 300px;
    }

    .project-hero {
        height: auto;
        padding: 40px 20px;
    }

    .project-hero-container {
        flex-direction: column;
    }

    .project-hero-content {
        max-width: 100%;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .project-hero-image {
        width: 100%;
        height: 300px;
    }

    .stepped-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .step-1,
    .step-2,
    .step-3 {
        margin-top: 0 !important;
    }

    /* Footer */
    .footer-services {
        grid-template-columns: 1fr;
    }

    .footer-services .service-col:first-child {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #1a1a1a;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-services .service-col:last-child {
        padding-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom .copyright,
    .footer-bottom .developer {
        font-size: 10px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
}

/* Interior Page Styles */
.interior-page-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    margin-bottom: 50px;
    height: 600px;
}

.interior-hero-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
    pointer-events: none;
}

.interior-hero-bg-lines img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left top;
}

.interior-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.interior-hero-content {
    flex: 1;
    padding: 0 5% 0 10%;
    max-width: 45%;
}

.interior-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.interior-hero-content p {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    line-height: 1.6;
}

.interior-hero-image {
    flex: 1;
    height: 100%;
}

.interior-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Our Projects */
.our-projects {
    padding: 60px 0 100px;
}

.projects-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.projects-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    row-gap: 60px;
}

.project-item {
    display: flex;
    flex-direction: column;
}

.project-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover .project-img-wrapper img {
    transform: scale(1.05);
}

.project-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.project-item p {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.know-more-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.know-more-link:hover {
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .interior-hero-container {
        flex-direction: column;
    }

    .interior-hero-content {
        max-width: 100%;
        padding: 50px 5%;
        text-align: center;
    }

    .interior-hero-image {
        width: 100%;
        height: 400px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Project Detail Page Styles (PMG Interiors) */
.project-detail-section {
    padding: 0 0 0px 0;
    margin-top: 0;
}

.project-detail-container {
    display: flex;
    gap: 80px;
    max-width: 100%;
    padding: 0;
}

.project-left {
    width: 30%;
    position: relative;
}

.project-left .hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: sticky;
    top: 0;
    display: block;
}

.project-right {
    width: 65%;
    padding-top: 0;
    padding-right: 5%;
}

.project-right-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

.project-info {
    grid-column: 1 / 3;
    grid-row: 1;
    margin-bottom: 20px;
    position: relative;
}

.project-info .breadcrumb {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.project-info .breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-info .breadcrumb a:hover {
    color: var(--text-dark);
}

.project-info h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.project-info p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 80%;
}

/* Background watermark FA */
.project-info-bg {
    position: absolute;
    top: 150px;
    left: -20%;
    width: 800px;
    height: 800px;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.project-info-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step-column.col-1 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 150px;
}

.step-column.col-2 {
    grid-column: 2;
    grid-row: 2;
    margin-top: 20px;
}

.step-column.col-3 {
    grid-column: 3;
    grid-row: 1 / 3;
    margin-top: 130px;
    /* Aligns with the end of the text */
}

.step-column img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-column:hover img {
    /* If you want hover effect on images */
}

.step-column img:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .project-detail-section {
        padding-bottom: 80px;
        overflow-x: hidden;
    }

    .project-info-bg {
        display: none;
    }

    .project-detail-container {
        flex-direction: column;
        gap: 30px;
    }

    .project-left,
    .project-right {
        width: 100%;
        padding-right: 0;
    }

    .project-left .hero-image {
        position: relative;
        height: 60vh;
    }

    .project-right-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5%;
    }

    .project-info {
        grid-column: 1;
        padding: 0;
    }

    .project-info h1 {
        font-size: 36px;
    }

    .project-info p {
        max-width: 100%;
    }

    .step-column {
        gap: 20px;
    }

    .step-column.col-1,
    .step-column.col-2,
    .step-column.col-3 {
        grid-column: 1;
        grid-row: auto;
        margin-top: 0;
    }

    .project-gallery {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery {
        column-count: 1;
    }
}

/* About Us Page */
.about-main {
    padding-top: 0;
}

.about-hero-bg {
    position: relative;
    width: 100%;
    min-height: 120vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Zoom effect */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    margin-bottom: 60px;
}

.about-hero-text h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-hero-text p {
    font-size: 18px;
    font-weight: 600;
    color: #ddd;
    line-height: 1.6;
}

.about-card-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    margin-bottom: 100px;
    /* Provides space before footer */
}

.about-content-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 80px 100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.about-how-we-work h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-how-we-work p {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 60px;
}

.about-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.stat-item {
    flex: 1;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: #e0e0e0;
}

.about-directors h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.about-directors p {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 50px;
}

.directors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.director-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.director-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.director-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.director-card:hover .director-img-wrapper img {
    transform: scale(1.05);
}

.director-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

.director-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    text-align: left;
    color: white;
    z-index: 2;
}

.director-info h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.director-info p {
    font-size: 16px;
    font-weight: 600;
    color: #ccc;
    margin: 0;
}

@media (max-width: 992px) {
    .about-content-card {
        padding: 50px;
    }

    .about-stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        width: 60px;
        height: 2px;
    }

    .directors-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-content-card {
        padding: 40px 20px;
    }
}

/* Contact Us Page */
.contact-main {
    padding-top: 0;
}

.contact-hero-bg {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.contact-hero-text h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-hero-text p {
    font-size: 18px;
    font-weight: 600;
    color: #ddd;
    line-height: 1.6;
}

.contact-container {
    padding: 80px 0;
}

/* Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-info-card p {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Form and Map Section */
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.contact-map-col {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #f5f5f5;
}

.contact-form-col {
    padding: 60px;
}

.form-header {
    margin-bottom: 40px;
}

.send-req-tag {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #888;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 15px;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    align-self: flex-start;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.submit-btn:hover {
    background: #333;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map-col {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-form-col {
        padding: 40px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Home Page Scroll Snapping */
html:has(body.home-page) {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    /* Firefox */
}

html:has(body.home-page)::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

@media (min-width: 993px) {

    body.home-page .header,
    body.home-page .hero,
    body.home-page .section.architectures,
    body.home-page .section.interiors,
    body.home-page .about-section,
    body.home-page .footer {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

/* Hide home page gallery images on mobile */
@media (max-width: 992px) {
    body.home-page .section.architectures .gallery-image,
    body.home-page .section.interiors .gallery-image {
        display: none !important;
    }
}


.footer-social-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-social-top a {
    color: #555555;
    transition: color 0.3s;
}

.footer-social-top a:hover {
    color: white;
}
