:root {
    --bg-white: #ffffff;
    --bg-dark: #1b1c1e;
    --radius: 40px;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-white);
    margin: 0;
    padding: 15px;
    font-family: 'Playfair Display', serif;
}

.main-container {
    max-width: 100%;
    margin: 0 auto;
}

/* HERO SECTION */
.hero-section {
    background-color: var(--bg-dark);
    border-radius: var(--radius);
    position: relative;
    min-height: calc(100vh - 30px);
    overflow: hidden;
}

.mobile-header {
    display: none;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay for Video */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.6);
    /* Adjust 0.6 for more/less darkness */
    z-index: 2;
}

/* Vertical panels */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20% 100%;
    z-index: 3;
    pointer-events: none;
}

/* --- LOGO AREA (TOP LEFT CUTOUT) --- */
.logo-area {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--bg-white);
    padding: 30px 40px 30px 30px;
    border-bottom-right-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

/* Inverted curves for smooth transition */
.logo-area::after {
    content: '';
    position: absolute;
    top: 0;
    right: calc(var(--radius) * -1);
    width: var(--radius);
    height: var(--radius);
    background: radial-gradient(circle at bottom right, transparent calc(var(--radius) - 0.5px), var(--bg-white) var(--radius));
}

.logo-area::before {
    content: '';
    position: absolute;
    bottom: calc(var(--radius) * -1);
    left: 0;
    width: var(--radius);
    height: var(--radius);
    background: radial-gradient(circle at bottom right, transparent calc(var(--radius) - 0.5px), var(--bg-white) var(--radius));
}

.logo-icon {
    width: 45px;
    height: 45px;
    background-color: #111;
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-top {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #555;
    margin-bottom: 2px;
}

.logo-bottom {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

/* --- ACTION AREA (TOP RIGHT CUTOUT) --- */
.action-area {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 30px 30px 30px 40px;
    border-bottom-left-radius: var(--radius);
    z-index: 10;
}

.action-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(var(--radius) * -1);
    width: var(--radius);
    height: var(--radius);
    background: radial-gradient(circle at bottom left, transparent calc(var(--radius) - 0.5px), var(--bg-white) var(--radius));
}

.action-area::before {
    content: '';
    position: absolute;
    bottom: calc(var(--radius) * -1);
    right: 0;
    width: var(--radius);
    height: var(--radius);
    background: radial-gradient(circle at bottom left, transparent calc(var(--radius) - 0.5px), var(--bg-white) var(--radius));
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #1f1f1f;
    color: white;
    text-decoration: none;
    padding: 10px 10px 10px 25px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.connect-btn .arrow {
    width: 35px;
    height: 35px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.connect-btn:hover {
    background-color: #000;
}

.connect-btn:hover .arrow {
    background-color: #555;
    transform: rotate(45deg);
}

/* STICKY DESKTOP HEADER */
.sticky-desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sdh-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-desktop-header.visible {
    transform: translateY(0);
}

.sdh-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sdh-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.sdh-nav {
    display: flex;
    gap: 40px;
}

.sdh-nav a {
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sdh-nav a:hover {
    color: #ff6a00;
}

/* --- NAVIGATION --- */
.top-nav {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 45px;
    position: relative;
    z-index: 5;
}

.top-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: #aaa;
}

/* --- HERO CONTENT --- */
.hero-content {
    text-align: center;
    margin-top: 130px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 25px 0;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-accent-line {
    width: 60px;
    height: 5px;
    background-color: #ff6a00;
    margin: 0 auto 25px auto;
}

.hero-highlight-text {
    color: #ff6a00;
    font-weight: 700;
    font-size: 1.1em;
}

.hero-content p {
    color: #999;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto 40px auto;
    max-width: 600px;
    font-weight: 300;
}

/* EXPLORE BUTTON */
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff8c00, #ff6a00);
    color: white;
    text-decoration: none;
    padding: 10px 10px 10px 30px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
}

.explore-btn .arrow {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 106, 0, 0.4);
}

.explore-btn:hover .arrow {
    transform: rotate(45deg);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    animation: fadeUp 0.8s ease forwards;
}

.hero-content p {
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.explore-btn {
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}



/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .top-nav {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .sofa-placeholder {
        width: 80%;
    }
}

@media (max-width: 768px) {
    :root {
        --radius: 25px;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ff6a00;
        padding: 15px 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .sticky-desktop-header {
        display: none !important;
    }

    .mh-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        color: white;
    }

    .mh-icon {
        background: white;
        color: #ff6a00;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        border-radius: 6px;
    }

    .mh-text {
        font-weight: 700;
        font-size: 18px;
        letter-spacing: 1px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Hamburger active state (X) */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .mobile-nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #1b1c1e;
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        z-index: 998;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .mobile-nav-menu.active {
        transform: translateY(0);
    }

    .mobile-nav-menu a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 12px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-family: 'Outfit', sans-serif;
    }

    .mobile-nav-menu .mobile-connect-btn {
        margin-top: 15px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #ff6a00;
        border-bottom: none;
        padding: 12px 25px;
        border-radius: 30px;
        width: max-content;
        color: white;
    }

    .top-nav,
    .logo-area,
    .action-area {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        text-align: left;
        margin-top: 100px;
        padding: 0 20px;
    }

    .hero-accent-line {
        margin: 0 0 25px 0;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-content p {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    :root {
        --radius: 20px;
    }

    body {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .mh-text {
        font-size: 16px;
    }

    .mh-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
}

/* --- ABOUT SECTION --- */
.about-section {
    display: flex;
    gap: 80px;
    padding: 120px 20px;
    align-items: center;
    background-color: var(--bg-white);
    max-width: 1500px;
    margin: 0 auto;
}

/* IMAGE COLUMN (Left) */
.about-image-column {
    flex: 1;
    position: relative;
    max-width: 32%;
}

.stepped-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: url('img/imgi_108_anti-smog-gun-in-gurugram-500x500.jpg') center/cover;
    border-radius: var(--radius);
    position: relative;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); */
}

/* Cutouts for Stepped Image */
.tl-cutout {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 35%;
    height: 15%;
    background-color: var(--bg-white);
    border-bottom-right-radius: var(--radius);
    z-index: 2;
}

.tl-cutout::after {
    content: '';
    position: absolute;
    top: 0;
    right: calc(var(--radius) * -1);
    width: var(--radius);
    height: var(--radius);
    background: radial-gradient(circle at bottom right, transparent calc(var(--radius) - 0.5px), var(--bg-white) var(--radius));
}

.tl-cutout::before {
    content: '';
    position: absolute;
    bottom: calc(var(--radius) * -1);
    left: 0;
    width: var(--radius);
    height: var(--radius);
    background: radial-gradient(circle at bottom right, transparent calc(var(--radius) - 0.5px), var(--bg-white) var(--radius));
}

.br-cutout {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 40%;
    height: 12%;
    background-color: var(--bg-white);
    border-top-left-radius: var(--radius);
    z-index: 2;
}

.br-cutout::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(var(--radius) * -1);
    width: var(--radius);
    height: var(--radius);
    background: radial-gradient(circle at top left, transparent calc(var(--radius) - 0.5px), var(--bg-white) var(--radius));
}

.br-cutout::before {
    content: '';
    position: absolute;
    top: calc(var(--radius) * -1);
    right: 0;
    width: var(--radius);
    height: var(--radius);
    background: radial-gradient(circle at top left, transparent calc(var(--radius) - 0.5px), var(--bg-white) var(--radius));
}

/* CONTENT COLUMN (Right) */
.about-content-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-tag {
    display: inline-block;
    color: #ff6a00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border: 1.5px solid rgba(255, 106, 0, 0.3);
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 25px;
}

.about-content-column h2 {
    font-size: 46px;
    color: #111;
    line-height: 1.15;
    margin: 0 0 35px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-content-column h2 .highlight {
    color: #ff6a00;
}

.about-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.about-tab {
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    color: #555;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.about-tab.active {
    background: #ff6a00;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

.about-details-row {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
}

.about-small-image {
    width: 180px;
    height: 180px;
    border-radius: 24px;
    background: url('img/imgi_109_anti-smog-gun-in-gurgaon-500x500.jpg') center/cover;
    flex-shrink: 0;
}

.about-details-text {
    flex: 1;
}

.about-details-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 25px 0;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #222;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.about-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #ff6a00;
    color: white;
    border-radius: 50%;
    font-size: 11px;
}

.about-action-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-know-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 8px 8px 8px 25px;
    border: 1px solid #ddd;
    border-radius: 40px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.about-know-more .arrow {
    width: 40px;
    height: 40px;
    background: #ff6a00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.about-know-more:hover {
    border-color: #ff6a00;
}

.about-know-more:hover .arrow {
    transform: rotate(45deg);
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-contact .icon {
    width: 45px;
    height: 45px;
    background: #111;
    color: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about-contact-text {
    display: flex;
    flex-direction: column;
}

.about-contact-text .label {
    font-size: 13px;
    color: #ff6a00;
    font-weight: 600;
    margin-bottom: 3px;
}

.about-contact-text .phone {
    font-size: 16px;
    color: #111;
    font-weight: 700;
}

/* ABOUT RESPONSIVE */
@media (max-width: 1200px) {
    .about-section {
        gap: 40px;
        padding: 100px 20px;
    }

    .about-image-column {
        max-width: 40%;
    }

    .about-content-column h2 {
        font-size: 38px;
    }
}

@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        padding: 80px 20px;
    }

    .about-image-column {
        max-width: 80%;
        margin: 0 auto 50px auto;
    }
}

@media (max-width: 768px) {
    .about-content-column h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .about-details-row {
        flex-direction: column;
        gap: 20px;
    }

    .about-small-image {
        width: 100%;
        height: 300px;
    }

    .about-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 15px;
    }

    .about-image-column {
        max-width: 100%;
    }

    .about-content-column h2 {
        font-size: 28px;
    }

    .about-tab {
        padding: 10px 20px;
        font-size: 12px;
        flex: 1 1 auto;
        text-align: center;
    }

    .about-small-image {
        height: 200px;
    }

    .about-details-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-know-more {
        width: 100%;
        justify-content: center;
    }

    .about-action-row {
        width: 100%;
    }
}

/* --- REAL ESTATE SECTION --- */
.real-estate-section {
    padding: 120px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--bg-white);
    color: #111;
}

.re-main-heading {
    text-align: center;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 80px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.re-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
}

.re-left-col,
.re-right-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.re-intro h3 {
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 20px 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.re-intro p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

.re-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: background 0.3s ease;
}

.re-btn:hover {
    background: #333;
}

.re-partners {
    margin-top: 40px;
}

.re-partners .label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #777;
}

.re-partners .logos {
    display: flex;
    gap: 25px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.re-partners .logos span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.re-partners .logos span::before {
    content: '◎';
    font-size: 18px;
    color: #555;
}

.re-center-col .re-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
}

.re-feature-item {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.re-feature-item h4 {
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.re-feature-item p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.re-reviews {
    margin-top: 20px;
}

.re-reviews .label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.review-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-right: -15px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.avatars img:nth-child(2) {
    z-index: 2;
}

.avatars img:nth-child(3) {
    z-index: 3;
}

.avatars .more-avatars {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 3px solid #fff;
    position: relative;
    z-index: 4;
    margin-right: 0;
}

.rating {
    display: flex;
    flex-direction: column;
}

.rating .score {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.rating .text {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* REAL ESTATE RESPONSIVE */
@media (max-width: 1024px) {
    .re-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .re-left-col,
    .re-right-col {
        gap: 40px;
        padding: 0;
    }

    .re-center-col .re-image {
        height: 500px;
    }

    .re-main-heading {
        font-size: 48px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .re-main-heading {
        font-size: 36px;
    }

    .re-center-col .re-image {
        height: 400px;
    }

    .re-partners .logos {
        flex-wrap: wrap;
    }
}

/* --- PRODUCTS SECTION --- */
.products-section {
    padding: 100px 20px;
    max-width: 1500px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.ph-tag {
    display: block;
    color: #ff6a00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ph-title {
    font-size: 40px;
    font-weight: 800;
    color: #2a3342;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.ph-title .highlight {
    color: #ff6a00;
}

.view-all-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #ff6a00;
    border-radius: 6px;
    color: #ff6a00;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #ff6a00;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid #eef0f2;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.pc-image-wrapper {
    height: 180px;
    background: #ebedf0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.pc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 15px;
    background: #fff;
    border-top: 1px solid #eef0f2;
}

.pc-title {
    font-size: 13px;
    font-weight: 700;
    color: #3a4352;
}

.pc-arrow {
    color: #ff6a00;
    font-weight: bold;
    font-size: 16px;
}

/* PRODUCTS RESPONSIVE */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* --- HIGHLIGHTS BANNER --- */
.highlights-banner {
    background-color: #fff8f3;
    padding: 30px 0;
    border-top: 1px solid #ffeedd;
    border-bottom: 1px solid #ffeedd;
}

.hb-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.hb-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.hb-icon {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 106, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
}

.hb-icon svg {
    width: 28px;
    height: 28px;
}

.hb-text {
    font-size: 15px;
    font-weight: 700;
    color: #1b2742;
    line-height: 1.4;
}

.hb-divider {
    width: 2px;
    height: 40px;
    background-color: rgba(255, 106, 0, 0.2);
}

@media (max-width: 1024px) {
    .hb-container {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        padding: 20px;
    }

    .hb-item {
        flex: 1 1 40%;
        justify-content: flex-start;
    }

    .hb-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .hb-item {
        flex: 1 1 100%;
    }
}

/* --- STATS / ABOUT SECTION --- */
.stats-about-section {
    background-color: #fcfcf8;
    padding: 120px 20px;
}

.sa-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sa-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.sa-tag .dot {
    width: 6px;
    height: 6px;
    background-color: #111;
    border-radius: 50%;
}

.sa-top {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.sa-top .sa-tag {
    flex: 0 0 160px;
    padding-top: 10px;
    /* align with first line of text */
    align-items: flex-start;
}

.sa-top .sa-tag .dot {
    margin-top: 4px;
}

.sa-content {
    flex: 1;
    max-width: 1000px;
}

.sa-main-text {
    font-size: 34px;
    line-height: 1.35;
    color: #1e2925;
    font-weight: 500;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}

.sa-know-more {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1.5px solid #111;
    padding-bottom: 4px;
}

.sa-know-more .icon {
    font-size: 16px;
    font-weight: 400;
}

.sa-bottom {
    display: flex;
    flex-direction: column;
}

.sa-bottom .sa-tag {
    margin-bottom: 30px;
}

.sa-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background-color: #f3f1e8;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 4/5;
}

.stat-number {
    font-size: 64px;
    font-weight: 600;
    color: #1a2c24;
    line-height: 1;
    letter-spacing: -2px;
    font-family: 'Outfit', sans-serif;
}

.stat-number .plus {
    color: #f27c38;
    font-weight: 400;
    font-size: 50px;
}

.stat-info {
    margin-top: auto;
}

.stat-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a2c24;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.stat-desc {
    font-size: 13px;
    color: #7b807d;
    line-height: 1.6;
    margin: 0;
}

/* STATS RESPONSIVE */
@media (max-width: 1024px) {
    .sa-top {
        flex-direction: column;
        gap: 20px;
    }

    .sa-top .sa-tag {
        flex: none;
        align-items: center;
    }

    .sa-top .sa-tag .dot {
        margin-top: 0;
    }

    .sa-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        aspect-ratio: auto;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .sa-main-text {
        font-size: 26px;
    }

    .sa-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 56px;
    }
}

/* --- DREAM HOME SECTION --- */
.dream-home-section {
    background-color: #fcfcf8;
    /* Matches the previous section cream color */
    padding: 100px 20px;
}

.dh-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #111;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.dh-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.dh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.dh-card {
    padding: 0 40px 60px 40px;
    border-right: 1px solid #e8e7e1;
    border-bottom: 1px solid #e8e7e1;
}

.dh-card:nth-child(3n) {
    border-right: none;
}

.dh-card:nth-child(n+4) {
    border-bottom: none;
}

/* Adding top padding for the second row so they aren't touching the line */
.dh-card:nth-child(n+4) {
    padding-top: 60px;
    padding-bottom: 0;
}

.dh-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 20px;
}

.dh-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dh-image:hover img {
    transform: scale(1.03);
}

.dh-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dh-info-left h3 {
    font-size: 16px;
    color: #111;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.dh-info-left p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.dh-info-right a {
    font-size: 13px;
    color: #111;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-top: 2px;
    display: block;
    transition: color 0.2s;
}

.dh-info-right a:hover {
    color: #ff6a00;
}

/* DREAM HOME RESPONSIVE */
@media (max-width: 1024px) {
    .dh-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dh-card:nth-child(3n) {
        border-right: 1px solid #e8e7e1;
    }

    .dh-card:nth-child(2n) {
        border-right: none;
    }

    .dh-card {
        padding: 30px !important;
    }

    /* Reset padding */
    .dh-card:nth-child(n+3) {
        border-bottom: 1px solid #e8e7e1;
    }

    .dh-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .dh-title {
        font-size: 32px;
    }

    .dh-grid {
        grid-template-columns: 1fr;
    }

    .dh-card {
        border-right: none !important;
        border-bottom: 1px solid #e8e7e1 !important;
        padding: 30px 10px !important;
    }

    .dh-card:last-child {
        border-bottom: none !important;
    }
}

/* --- FOUNDER & VALUES SECTION --- */
.founder-values-section {
    background-color: #f5f4ef;
    border-top: 1px solid #e8e6df;
}

.fv-container {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
}

.fv-image-col {
    flex: 0 0 33.333%;
}

.fv-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fv-story-col {
    flex: 0 0 33.333%;
    padding: 100px 70px;
    border-right: 1px solid #e8e6df;
}

.fv-values-col {
    flex: 0 0 33.333%;
    padding: 100px 70px;
}

/* Typography & Elements */
.fv-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.fv-heading {
    font-size: 42px;
    font-weight: 400;
    color: #222;
    line-height: 1.2;
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
}

.fv-heading .italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #444;
}

.fv-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.fv-signature {
    display: flex;
    flex-direction: column;
}

.fv-signature .name {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    margin-bottom: 4px;
}

.fv-signature .role {
    font-size: 13px;
    color: #888;
    margin-left: 15px;
}

/* Values List */
.fv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fv-values-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.fv-values-list li:last-child {
    margin-bottom: 0;
}

.val-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.val-icon svg {
    width: 24px;
    height: 24px;
    stroke: #666;
}

.val-text h4 {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    margin: 0 0 6px 0;
}

.val-text p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1400px) {

    .fv-story-col,
    .fv-values-col {
        padding: 60px 40px;
    }

    .fv-heading {
        font-size: 34px;
    }
}

@media (max-width: 992px) {
    .fv-container {
        flex-direction: column;
    }

    .fv-image-col {
        height: 500px;
        flex: none;
        width: 100%;
    }

    .fv-story-col {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e8e6df;
    }

    .fv-values-col {
        flex: none;
        width: 100%;
    }
}

/* --- TESTIMONIALS & NEWSLETTER SECTION --- */
.testimonial-newsletter-section {
    width: 100%;
}

.testimonials-wrapper {
    background-color: #152c25;
    position: relative;
    width: 100%;
    min-height: 500px;
}

.testi-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: url('img/imgi_110_product-jpeg-500x500.jpg') center/cover;
}

.testi-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 250px;
    background: linear-gradient(to right, #152c25 0%, transparent 100%);
}

.testi-inner-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
}

.testi-content {
    width: 45%;
    padding: 100px 20px;
    color: white;
}

.testi-tag {
    font-size: 11px;
    font-weight: 700;
    color: #d69f4c;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.testi-heading {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 20px 0;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: #d69f4c;
    line-height: 0;
    margin: 40px 0 20px 0;
    height: 30px;
}

.testi-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 450px;
}

.testi-author h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.testi-author span {
    font-size: 13px;
    color: #aaa;
}

.testi-dots {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}

.testi-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.testi-dots .dot:hover,
.testi-dots .dot.active {
    background: #d69f4c;
}

/* Newsletter Bar */
.newsletter-bar {
    background-color: #d89f4b;
    padding: 40px 0;
}

.nl-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nl-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nl-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nl-icon svg {
    width: 32px;
    height: 32px;
}

.nl-text h3 {
    font-size: 20px;
    color: white;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.nl-text p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.nl-right {
    flex: 0 0 450px;
}

.nl-form {
    display: flex;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    padding: 6px;
}

.nl-form input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 14px;
    outline: none;
    color: #333;
}

.nl-form button {
    background: #152c25;
    color: white;
    border: none;
    padding: 0 30px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 0.5px;
}

.nl-form button:hover {
    background: #1a362d;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .testi-content {
        width: 60%;
    }

    .testi-bg-image {
        width: 50%;
    }

    .nl-container {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .nl-right {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {
    .testi-content {
        width: 100%;
    }

    .testi-bg-image {
        display: none;
    }

    .nl-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 10px;
    }

    .nl-form input {
        border-radius: 6px;
    }

    .nl-form button {
        padding: 15px;
        border-radius: 6px;
    }
}

/* --- FOOTER SECTION --- */
.site-footer {
    position: relative;
    color: #fff;
    background-color: #0f1814;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    background: url('img/imgi_112_whatsapp-image-2022-07-01-at-12-04-51-pm-500x500.jpg') center top/cover;
    z-index: 1;
}

.footer-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 24, 20, 0.1) 0%, rgba(15, 24, 20, 0.85) 60%, #0f1814 100%);
}

.footer-top {
    position: relative;
    z-index: 2;
    padding-top: 350px;
    padding-bottom: 60px;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    min-width: 130px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.social-col {
    display: flex;
    align-items: flex-end;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: #0f1814;
}

.contact-col {
    text-align: right;
}

.contact-col h4 {
    min-width: auto;
}

.contact-col h4::after {
    display: none;
}

.contact-col p {
    font-size: 13px;
    color: #ddd;
    line-height: 2;
    margin: 0;
    text-align: right;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    background-color: #0b110e;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.fb-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.fb-logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.fb-links {
    display: flex;
    gap: 20px;
}

.fb-links a {
    color: #aaa;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.fb-links a:hover {
    color: #fff;
}

.fb-center {
    display: flex;
    gap: 8px;
}

.pay-pill {
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fb-right p {
    font-size: 11px;
    color: #888;
    margin: 0;
}

/* FOOTER RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
        text-align: left;
    }

    .footer-col h4::after {
        width: 60px;
    }

    .contact-col {
        text-align: left;
    }

    .contact-col p {
        text-align: left;
    }

    .social-col {
        align-items: flex-start;
    }

    .bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .fb-left {
        flex-direction: column;
        gap: 15px;
    }
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #ff6a00;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* PRODUCT POPUP MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay .modal-content {
    background-color: #fff;
    border-radius: var(--radius);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-overlay .modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    font-size: 36px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-overlay .modal-close:hover {
    color: #ff6a00;
}

.modal-overlay .modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-image-col {
    flex: 1 1 350px;
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius) 0 0 var(--radius);
    min-height: 400px;
}

.modal-text-col {
    flex: 1 1 300px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-text-col h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111;
    font-family: 'Playfair Display', serif;
}

.modal-text-col p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.get-quote-btn {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .modal-image-col img {
        border-radius: var(--radius) var(--radius) 0 0;
        min-height: 250px;
    }
    .modal-text-col {
        padding: 30px 20px;
    }
}