/* =========================================================
   REFINED GREEN THEME
   Green is now used as the brand/surface color only.
   Dark body text remains neutral for a cleaner premium look.
========================================================= */

/* =========================================================
   GLOBAL
========================================================= */
:root {
    --color-black: #111;
    --color-dark: #043B34;
    --brand-green: #087F73;
    --brand-green-dark: #06665D;
    --brand-green-deep: #043B34;
    --brand-green-soft: #E5F5F2;
    --color-white: #fff;
    --color-text: #555;
    --color-muted: #8d8d8d;
    --color-soft: #9a9a9a;
    --color-line: #b08a44;
    --color-accent: #c8a96a;
    --color-border: #8a8a8a;

    --font-body: "Inter", sans-serif;
    --font-display: "Playfair Display", serif;
    --font-brand: "Sackers Gothic", sans-serif;

    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-body);
}

/* =========================================================
   REUSABLE
========================================================= */
.sub-heading {
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: #333;
}

.btn {
    display: inline-block;
    padding: 14px 42px;
    border: 1px solid var(--color-border);
    color: var(--color-white);
    font-size: 12px;
    letter-spacing: 3px;
    transition: all var(--transition);
}

.btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-dark);
}

.section-header,
.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-header .line,
.testimonial-header .line {
    width: 60px;
    height: 1px;
    background: var(--color-line);
}

.section-header h4,
.testimonial-header h4 {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-line);
}

/* =========================================================
   HERO
========================================================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, #0B6B60 0%, #043B34 62%);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 70px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-content {
    max-width: 520px;
}

.hero h1 {
    margin-bottom: 18px;
    color: var(--color-white);
    font-family: var(--font-brand);
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 3px;
}

.hero-text {
    margin-bottom: 45px;
    color: var(--color-soft);
    font-size: 15px;
    font-family: var(--font-body);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    height: 92vh;
    margin-top: 50px;
    object-fit: contain;
}

.hero-indicators {
    position: absolute;
    top: 50%;
    right: 34px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-50%);
}

.hero-dot {
    width: 3px;
    height: 28px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.45);
}

.hero-dot.active {
    height: 42px;
    background: var(--color-white);
}

/* =========================================================
   QUOTE SECTION
========================================================= */
.quote-section {
    padding: 100px 20px 40px;
    background: var(--color-white);
}

.quote-container {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-black);
}

.quote-mark {
    position: absolute;
    top: -40px;
    left: 50px;
    font-size: 80px;
    line-height: 1;
    color: var(--color-black);
    font-family: var(--font-display);
}

.quote-text {
    margin-bottom: 55px;
    padding: 0 20px;
    color: #222;
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: 1.6px;
    font-family: var(--font-display);
}

.quote-footer {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* =========================================================
   COLLECTION SECTION
========================================================= */
.collection-section {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 100px;
    background: var(--color-white);
}

.collection-bg-title {
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 0;
    width: max-content;
    color: rgba(0, 0, 0, 0.03);
    font-size: 105px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 12px;
    white-space: nowrap;
    pointer-events: none;
    transform: translateX(-50%);
}

.collection-grid {
    position: relative;
    z-index: 1;
    display: grid;
    width: 85%;
    max-width: 1400px;
    grid-template-columns: 2.3fr 1fr 2.5fr;
    grid-template-rows: 420px 420px 420px;
    gap: 3px;
}

.collection-grid .senator {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.collection-grid .kaftan {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.collection-grid .suit {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.collection-grid .agbada {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.collection-grid .native {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.grid-item {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--color-dark);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.grid-item:hover img {
    transform: scale(1.06);
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 22px 24px;
    background: linear-gradient(
        to top,
        rgba(4, 59, 52, 0.76),
        rgba(8, 127, 115, 0.18),
        transparent
    );
}

.overlay span {
    color: var(--color-white);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* image framing */
.collection-grid .senator img { object-position: 50% 18%; }
.collection-grid .kaftan img { object-position: 50% 20%; }
.collection-grid .suit img { object-position: 50% 18%; }
.collection-grid .native img { object-position: 50% 30%; }
.collection-grid .agbada img { object-position: 50% 12%; }

/* =========================================================
   HOW IT WORKS
========================================================= */
.how-section {
    padding: 40px 60px;
    text-align: center;
    background: var(--color-white);
}

.section-header {
    margin-bottom: 90px;
    gap: 25px;
}

.steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 140px;
}

.steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    z-index: 0;
    width: 270px;
    height: 270px;
    background: url('/images/vector.png') no-repeat center center;
    background-size: contain;
    opacity: 0.9;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.step {
    position: relative;
    z-index: 1;
}

.step h3 {
    margin-bottom: 15px;
    color: rgba(0, 0, 0, 1);
    font-size: 20px;
    font-family: var(--font-display);
}

.step h5 {
    margin-bottom: 15px;
    color: rgba(0, 0, 0, 1);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.step p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}

.signature-header {
    margin-bottom: 70px;
}

.view-more {
    margin-top: 50px;
}

.view-more a {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--color-black);
    color: var(--color-black);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
}

.view-more a:hover {
    background: var(--brand-green);
    color: var(--color-white);
}

/* =========================================================
   PRODUCT GRID
========================================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-grid a {
    display: block;
}

.product-card {
    width: 100%;
}

.product-image {
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
}

.product-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-card h3 {
    margin-top: 14px;
    margin-bottom: 8px;
    color: var(--color-black);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-card p {
    color: var(--color-black);
    font-size: 15px;
    font-weight: 700;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials {
    position: relative;
    padding: 130px 20px;
    text-align: center;
    background: var(--color-white);
}

.testimonial-header {
    margin-bottom: 70px;
}

.testimonial-content {
    max-width: 420px;
    margin: 0 auto;
}

.testimonial-text {
    margin-bottom: 10px;
    color: #222;
    font-size: 16px;
    line-height: 1.8;
}

.divider {
    width: 50px;
    height: 2px;
    margin: 0 auto 30px;
    background: #222;
}

.client-name {
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 1);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.client-location {
    margin-bottom: 30px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bbb;
}

.dot.active {
    background: #222;
}

.big-quote {
    position: absolute;
    right: 100px;
    bottom: 10px;
    color: var(--color-black);
    font-size: 120px;
    font-family: var(--font-display);
}
/* ================= TESTIMONIAL SLIDER FIX ================= */
.testimonial-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    min-height: 240px;
}

/* each slide */
.testimonial-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

/* active slide */
.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}
.testimonial-item {
    transform: translateY(20px);
}

.testimonial-item.active {
    transform: translateY(0);
}
/* spacing fix */
.testimonial-item .testimonial-content {
    max-width: 400px;
    margin: 0 auto;
}
/* =========================================================
   CTA / LAUNDRY SECTION
========================================================= */
.laundry-section {
    padding: 120px 50px 50px;
    background: var(--color-white);
}

.laundry-container {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1100px;
    margin: auto;
}

.laundry-image {
    flex: 1;
    height: 450px;
    overflow: hidden;
}

.laundry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.4s ease;
}

.laundry-content {
    flex: 1;
}

.laundry-content h2 {
    margin-bottom: 30px;
    color: var(--color-black);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-brand);
}

.laundry-content p {
    max-width: 450px;
    margin-bottom: 25px;
    color: var(--color-text);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--font-body);
}

.laundry-service {
    display: inline-block;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 1);
    background: var(--color-white);
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 300;
    font-family: var(--font-brand);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.laundry-service:hover {
    background: var(--brand-green);
    color: var(--color-white);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1280px) {
    .collection-grid {
        width: 92%;
    }
}

@media (max-width: 1100px) {
    .hero-slide {
        padding: 0 60px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-image img {
        max-width: 420px;
        height: 80vh;
        margin-top: 30px;
    }

    .collection-section {
        padding: 110px 0 80px;
    }

    .collection-bg-title {
        top: 32px;
        font-size: 72px;
        letter-spacing: 8px;
    }

    .collection-grid {
        width: 90%;
        grid-template-rows: 270px 220px 220px;
    }
}

@media (max-width: 1024px) {
    .hero {
        position: relative;
        display: block;
        height: 100vh;
        padding: 0;
        overflow: hidden;
        background: radial-gradient(circle at 60% 35%, #0B6B60 0%, #043B34 72%);
    }

    .hero::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        height: 45%;
        background: linear-gradient(to top, rgba(4, 59, 52, .88), rgba(8, 127, 115, .22), transparent);
    }

    .hero-content {
        position: absolute;
        right: 0;
        bottom: 60px;
        left: 0;
        z-index: 3;
        max-width: 100%;
        padding: 0 28px;
        text-align: center;
    }

    .hero-image {
        position: absolute;
        inset: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        width: auto;
        max-width: 92vw;
        height: 88vh;
        margin: 0;
        object-fit: contain;
        transform: translateY(40px);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text {
        font-size: 14px;
    }

    .btn {
        padding: 12px 38px;
    }

    .how-section {
        padding: 60px 24px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-bottom: 90px;
    }

    .steps::before {
        left: 50%;
        width: 220px;
        height: 220px;
        opacity: 0.12;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .product-image img {
        height: 280px;
    }

    .product-card h3 {
        font-size: 13px;
        letter-spacing: 1.8px;
    }

    .product-card p {
        font-size: 14px;
    }

    .laundry-container {
        flex-direction: column;
        gap: 35px;
    }

    .laundry-image,
    .laundry-content {
        width: 100%;
    }

    .laundry-content {
        text-align: center;
    }

    .laundry-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 900px) {
    .hero-indicators {
        right: 14px;
    }
}

@media (max-width: 768px) {
    .main-navbar {
        position: absolute;
        padding: 18px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo img {
        width: 110px;
        margin: 0 auto;
    }

    .hero {
        position: relative;
        height: 100vh;
        padding: 0;
        overflow: hidden;
        background: radial-gradient(circle at 55% 30%, #0B6B60 0%, #043B34 72%);
    }

    .hero::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        height: 45%;
        background: linear-gradient(to top, rgba(4, 59, 52, .88), rgba(8, 127, 115, .26), transparent);
    }

    .hero-content {
        position: absolute;
        right: 0;
        bottom: 50px;
        left: 0;
        z-index: 3;
        padding: 0 20px;
        text-align: center;
    }

    .hero-image {
        position: absolute;
        inset: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        width: auto;
        max-width: none;
        min-height: 600px;
        height: 50vh;
        margin: 0 auto;
        object-fit: cover;
        transform: translateY(30px);
    }

    .sub-heading {
        margin-bottom: 14px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 3px;
    }

    .hero h1 {
        margin-bottom: 10px;
        font-size: 30px;
        letter-spacing: 2px;
    }

    .hero-text {
        margin-bottom: 22px;
        font-size: 13px;
    }

    .btn {
        padding: 12px 34px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .quote-section {
        padding: 90px 18px 45px;
    }

    .quote-container {
        max-width: 520px;
    }

    .quote-mark {
        top: -34px;
        left: 18px;
        font-size: 70px;
    }

    .quote-text {
        margin-bottom: 35px;
        font-size: 16px;
        line-height: 2.05;
    }

    .collection-section {
        padding: 55px 0 40px;
    }

    .collection-bg-title {
        top: 10px;
        font-size: 28px;
        letter-spacing: 3px;
        display: block;
    }

    .collection-grid {
        width: calc(100% - 20px);
        max-width: none;
        margin: 0 10px;
        grid-template-rows: 145px 145px 145px;
        gap: 2px;
    }

    .overlay {
        padding: 10px 12px;
        background: linear-gradient(
            to top,
            rgba(4, 59, 52, 0.74),
            rgba(8, 127, 115, 0.16),
            transparent
        );
    }

    .overlay span {
        font-size: 8px;
        line-height: 1.1;
        letter-spacing: 1.4px;
        text-align: right;
    }

    .how-section {
        padding: 60px 18px;
    }

    .section-header {
        gap: 16px;
        margin-bottom: 55px;
    }

    .section-header .line {
        width: 45px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 80px;
    }

    .steps::before {
        top: 50%;
        left: 50%;
        width: 180px;
        height: 180px;
        opacity: 0.15;
    }

    .step h3 {
        font-size: 18px;
    }

    .step h5 {
        font-size: 12px;
        letter-spacing: 2.5px;
    }

    .step p {
        font-size: 13px;
        line-height: 1.75;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px;
        width: 100%;
    }

    .product-grid a,
    .product-card,
    .product-image {
        width: 100%;
        min-width: 0;
    }

    .product-image img {
        height: 210px;
    }

    .product-card h3 {
        font-size: 10px;
        line-height: 1.4;
        letter-spacing: 1.4px;
    }

    .product-card p {
        font-size: 12px;
    }

    .testimonials {
        padding: 90px 18px;
    }

    .testimonial-content {
        max-width: 340px;
    }

    .big-quote {
        right: 20px;
        bottom: 20px;
        font-size: 90px;
    }

    .laundry-section {
        padding: 70px 18px 30px;
    }

    .laundry-image {
        height: 300px;
    }

    .laundry-content h2 {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .laundry-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .laundry-service {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 12px 22px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 26px;
    }

    .collection-grid {
        width: 95%;
        max-width: 360px;
        grid-template-rows: 115px 115px 115px;
    }

    .overlay {
        padding: 8px 10px;
    }

    .overlay span {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .collection-bg-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .steps {
        gap: 26px;
    }

    .steps::before {
        width: 170px;
        height: 170px;
        opacity: 0.12;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .product-image img {
        height: 190px;
    }

    .product-card h3 {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .product-card p {
        font-size: 11px;
    }
}


/* ================= HEADER ================= */
/* ================= HEADER ================= */
.main-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 60px;
    z-index: 50;
}

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

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    position: relative;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    transition: 0.3s ease;
}

.nav-left a::after,
.nav-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

.logo {
    flex-shrink: 0;
    text-align: center;
}

.logo img {
    width: 120px;
    display: block;
}

.logo-text {
    font-size: 18px;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 60;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: 0.3s ease;
}

.main-navbar.menu-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.main-navbar.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
}

.main-navbar.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(4, 59, 52, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
}

.main-navbar.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 24px 20px 30px;
    gap: 18px;
}

.mobile-menu-inner a {
    color: #fff;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================= FOOTER ================= */
.main-footer {
    background: var(--brand-green-deep);
    color: #fff;
    padding: 100px 60px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 20px;
}

.footer-description {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.9;
    color: #aaa;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.footer-social a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-center a {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    transition: 0.3s ease;
}

.footer-center a:hover {
    color: #fff;
}

.footer-right h4 {
    margin-bottom: 15px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.footer-right p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.8;
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
}

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

.footer-bottom-container p {
    font-size: 12px;
    color: #777;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-policy a {
    font-size: 12px;
    color: #777;
    transition: 0.3s ease;
}

.footer-policy a:hover {
    color: #fff;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .main-navbar {
        padding: 22px 28px;
    }

    .nav-left,
    .nav-right {
        gap: 18px;
    }

    .nav-left a,
    .nav-right a {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .main-footer {
        padding: 80px 28px 24px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-left {
        grid-column: 1 / -1;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .main-navbar {
        padding: 18px 20px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo {
        flex: 1;
        text-align: left;
    }

    .logo img {
        width: 105px;
    }

    .hamburger {
        display: block;
    }

    .main-footer {
        padding: 70px 20px 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .footer-description {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-center {
        align-items: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-policy {
        justify-content: center;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
    .logo img {
        width: 92px;
    }

    .mobile-menu-inner {
        padding: 20px 16px 24px;
        gap: 14px;
    }

    .footer-social a,
    .footer-center a,
    .footer-policy a,
    .footer-bottom-container p {
        font-size: 11px;
    }
}


/* enquiry */
/* ================= ENQUIRY SECTION ================= */
.foot__enquiry {
    padding: 110px 50px 60px;
    background: #fff;
}

.foot__enquiry-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 520px;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

.enquiry-image {
    position: relative;
    width: 100%;
    height: 520px;
}

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

.enquiry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 59, 52, 0.74) 0%,
        rgba(6, 102, 93, 0.44) 35%,
        rgba(8, 127, 115, 0.14) 65%,
        rgba(8, 127, 115, 0.05) 100%
    );
    z-index: 1;
}

.foot__enquiry-left {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
}

.foot__enquiry-left .sub-heading {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8a96a;
    margin-bottom: 18px;
    font-family: "Inter", sans-serif;
}

.foot__enquiry-title {
    margin-bottom: 20px;
    color: #fff;
    font-size: 34px;
    line-height: 1.35;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Sackers Gothic", sans-serif;
}

.foot__enquiry-text {
    max-width: 500px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.9;
    font-family: "Inter", sans-serif;
}

.enquiry-btn {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.enquiry-btn:hover {
    background: #c8a96a;
    color: #111;
    border-color: #c8a96a;
}

/* ================= ENQUIRY RESPONSIVE ================= */
@media (max-width: 1024px) {
    .foot__enquiry {
        padding: 80px 24px 40px;
    }

    .foot__enquiry-content {
        min-height: 460px;
    }

    .enquiry-image {
        height: 460px;
    }

    .foot__enquiry-left {
        max-width: 100%;
        padding: 40px;
    }

    .foot__enquiry-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .foot__enquiry {
        padding: 70px 18px 30px;
    }

    .foot__enquiry-content {
        min-height: 420px;
    }

    .enquiry-image {
        height: 420px;
    }

    .enquiry-overlay {
        background: linear-gradient(
            180deg,
            rgba(4, 59, 52, 0.32) 0%,
            rgba(4, 59, 52, 0.68) 55%,
            rgba(4, 59, 52, 0.84) 100%
        );
    }

    .foot__enquiry-left {
        inset: auto 0 0 0;
        max-width: 100%;
        padding: 28px 22px;
        text-align: center;
        align-items: center;
    }

    .foot__enquiry-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .foot__enquiry-text {
        font-size: 14px;
        line-height: 1.8;
        max-width: 100%;
    }

    .enquiry-btn {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 12px 22px;
    }
}
/* ================= ABOUT HERO ================= */
.about-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 59, 52, 0.60);
}

.about-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 42px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: "Sackers Gothic", sans-serif;
}

.about-hero-content p {
    font-size: 15px;
    max-width: 600px;
    color: #ddd;
}


/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 120px 60px;
    background: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.about-image {
    height: 500px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: "Sackers Gothic", sans-serif;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}


/* ================= COMMITMENT ================= */
.commitment-section {
    padding: 110px 40px;
    text-align: center;
    background: #fff;
}

.commitment-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
}

.commitment-title .line {
    width: 60px;
    height: 1px;
    background: #b08a44;
}

.commitment-title h4 {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b08a44;
}

.commitment-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.commitment-box {
    padding: 40px;
    border: 1px solid #eee;
}

.commitment-box h2 {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.commitment-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}


/* ================= STANDOUT ================= */
.standout-section {
    padding: 120px 60px;
    background: #fff;
}

.standout-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.standout-title .line {
    width: 60px;
    height: 1px;
    background: #b08a44;
}

.standout-title h4 {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b08a44;
}

.standout-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.standout-box {
    text-align: center;
}

.standout-box .number {
    font-size: 18px;
    letter-spacing: 3px;
    color: #b08a44;
    display: block;
    margin-bottom: 10px;
}

.standout-box h3 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.standout-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .commitment-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 28px;
    }

    .about-section {
        padding: 80px 20px;
    }

    .standout-section {
        padding: 80px 20px;
    }

    .standout-container {
        grid-template-columns: 1fr;
    }

    .commitment-section {
        padding: 80px 20px;
    }
}
/* ================= CONTACT HERO ================= */
.contact-hero {
    position: relative;
    height: 50vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 59, 52, 0.64);
}

.contact-hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 36px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-hero-content p {
    color: #ddd;
}


/* ================= CONTACT ================= */
.contact-section {
    padding: 120px 60px;
    background: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}


/* FORM */
.contact-form-wrapper h2 {
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b08a44;
}

.contact-btn {
    padding: 14px 30px;
    border: 1px solid #111;
    background: transparent;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: var(--brand-green);
    color: #fff;
}


/* INFO */
.contact-info h2 {
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info p {
    color: #666;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

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

.contact-item span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b08a44;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    color: #333;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 28px;
    }
}
/* ================= GALLERY HERO ================= */
.gallery-hero {
    position: relative;
    height: 60vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 59, 52, 0.62);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.gallery-hero-content h1 {
    margin-bottom: 14px;
    font-size: 40px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: "Sackers Gothic", sans-serif;
}

.gallery-hero-content p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
    padding: 110px 10% 90px;
    background: #fff;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
}

.gallery-header .line {
    width: 60px;
    height: 1px;
    background: #b08a44;
}

.gallery-header h4 {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b08a44;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 50px;
}

.gallery-tab {
    padding: 12px 20px;
    border: 1px solid #ddd;
    background: transparent;
    color: #111;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

.gallery-panel {
    display: none;
}

.gallery-panel.active {
    display: block;
}

/* ================= COMPLETED + CLEANING GRID ================= */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
    gap: 10px;
}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item.tall {
    grid-row: span 4;
}

.gallery-item.short {
    grid-row: span 2;
}

/* ================= BEFORE & AFTER ================= */
.before-after-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.before-after-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.before-after-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #f4f4f4;
}

.before-after-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.before-after-row:hover img {
    transform: scale(1.03);
}

.ba-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    background: rgba(17, 17, 17, 0.9);
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.before-block::after,
.after-block::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(4,59,52,0.20), transparent 35%);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-section {
        padding: 90px 28px 70px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .gallery-hero {
        height: 48vh;
    }

    .gallery-hero-content h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }

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

    .gallery-section {
        padding: 75px 18px 50px;
    }

    .gallery-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }

    .gallery-tab {
        font-size: 11px;
        letter-spacing: 1.5px;
        padding: 10px 14px;
    }

    /* completed + cleaning */
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 95px;
        gap: 8px;
    }

    .gallery-item {
        border-radius: 10px;
    }

    /* clean mobile rhythm */
    .gallery-item.tall {
        grid-row: span 3;
    }

    .gallery-item.short {
        grid-row: span 2;
    }

    .gallery-item img {
        object-position: center;
    }

    /* before & after */
    .before-after-list {
        gap: 18px;
    }

    .before-after-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .before-after-image {
        border-radius: 10px;
    }

    .before-after-image img {
        height: 220px;
    }

    .ba-badge {
        left: 12px;
        bottom: 12px;
        padding: 6px 10px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-auto-rows: 78px;
        gap: 6px;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .gallery-item.tall {
        grid-row: span 3;
    }

    .gallery-item.short {
        grid-row: span 2;
    }

    .before-after-image img {
        height: 180px;
    }
}
/* default visibility */
.desktop-gallery {
    display: grid;
}

.mobile-gallery {
    display: none;
}

/* mobile-only alternate layout */
.mobile-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 90px;
    gap: 8px;
}

.mobile-gallery-item {
    overflow: hidden;
    border-radius: 10px;
    background: #f6f6f6;
}

.mobile-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.mobile-gallery-item:hover img {
    transform: scale(1.04);
}

.mobile-gallery-item.large {
    grid-row: span 3;
}

.mobile-gallery-item.small {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .desktop-gallery {
        display: none;
    }

    .mobile-gallery {
        display: grid;
    }
}

@media (max-width: 480px) {
    .mobile-gallery-grid {
        grid-auto-rows: 72px;
        gap: 6px;
    }

    .mobile-gallery-item.large {
        grid-row: span 3;
    }

    .mobile-gallery-item.small {
        grid-row: span 2;
    }
}


/* apply for cleaner */
/* ================= INQUIRY PAGE ================= */
.inquiry-page {
    background: var(--color-white);
}

/* HERO */
.inquiry-hero {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-hero-image {
    position: absolute;
    inset: 0;
}

.inquiry-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiry-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 59, 52, 0.78) 0%,
        rgba(6, 102, 93, 0.56) 35%,
        rgba(8, 127, 115, 0.20) 65%,
        rgba(8, 127, 115, 0.07) 100%
    );
}

.inquiry-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 120px 60px 80px;
}

.inquiry-hero-inner {
    max-width: 620px;
}

.inquiry-hero .sub-heading {
    margin-bottom: 18px;
    color: var(--color-accent);
}

.inquiry-hero h1 {
    margin-bottom: 18px;
    color: var(--color-white);
    font-size: 40px;
    line-height: 1.35;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-brand);
    font-weight: 500;
}

.inquiry-hero p {
    max-width: 560px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.95;
    font-family: var(--font-body);
}

/* INFO SECTION */
.inquiry-info {
    padding: 110px 60px;
    background: var(--color-white);
}

.inquiry-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.inquiry-info-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: start;
}

.inquiry-copy h2,
.inquiry-requirements h2 {
    margin-bottom: 22px;
    color: var(--color-black);
    font-size: 26px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-brand);
    font-weight: 500;
}

.inquiry-copy p {
    margin-bottom: 18px;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.95;
}

.inquiry-requirements {
    padding: 38px 34px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafafa;
}

.inquiry-list {
    display: grid;
    gap: 14px;
    list-style: none;
}

.inquiry-list li {
    position: relative;
    padding-left: 22px;
    color: #444;
    font-size: 14px;
    line-height: 1.8;
}

.inquiry-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* STEPS */
.inquiry-steps {
    padding: 40px 60px 120px;
    background: var(--color-white);
    text-align: center;
}

.inquiry-steps .section-header {
    margin-bottom: 80px;
}

.inquiry-steps-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    max-width: 1200px;
    margin: 0 auto;
}

.inquiry-step {
    position: relative;
    z-index: 1;
}

.inquiry-step-number {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--color-line);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.inquiry-step h3 {
    margin-bottom: 14px;
    color: var(--color-black);
    font-size: 20px;
    font-family: var(--font-display);
    font-weight: 400;
}

.inquiry-step p {
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

/* CTA */
.inquiry-cta {
    padding: 0 60px 120px;
    background: var(--color-white);
}

.inquiry-cta-box {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 60px;
    background: var(--brand-green-deep);
    overflow: hidden;
}

.inquiry-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.03),
        transparent 45%
    );
    pointer-events: none;
}

.inquiry-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.inquiry-cta h2 {
    margin-bottom: 18px;
    color: var(--color-white);
    font-size: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-brand);
    font-weight: 500;
}

.inquiry-cta p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.9;
}

/* BUTTON VARIANT TO MATCH YOUR THEME */
.btn-gold-outline {
    display: inline-block;
    padding: 14px 34px;
    border: 1px solid var(--color-accent);
    color: var(--color-white);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.btn-gold-outline:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .inquiry-hero-content,
    .inquiry-info,
    .inquiry-steps,
    .inquiry-cta {
        padding-left: 28px;
        padding-right: 28px;
    }

    .inquiry-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inquiry-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .inquiry-hero h1 {
        font-size: 34px;
    }

    .inquiry-cta-box {
        padding: 55px 40px;
    }
}

@media (max-width: 768px) {
    .inquiry-hero {
        min-height: 70vh;
    }

    .inquiry-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(4, 59, 52, 0.32) 0%,
            rgba(4, 59, 52, 0.68) 55%,
            rgba(4, 59, 52, 0.86) 100%
        );
    }

    .inquiry-hero-content {
        padding: 110px 20px 50px;
        text-align: center;
    }

    .inquiry-hero-inner {
        max-width: 100%;
    }

    .inquiry-hero h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .inquiry-hero p {
        font-size: 14px;
        line-height: 1.8;
        margin-left: auto;
        margin-right: auto;
    }

    .inquiry-info {
        padding: 75px 20px;
    }

    .inquiry-copy h2,
    .inquiry-requirements h2,
    .inquiry-cta h2 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .inquiry-requirements {
        padding: 28px 22px;
    }

    .inquiry-steps {
        padding: 20px 20px 80px;
    }

    .inquiry-steps-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .inquiry-cta {
        padding: 0 20px 80px;
    }

    .inquiry-cta-box {
        padding: 40px 24px;
    }

    .btn-gold-outline {
        padding: 12px 24px;
        font-size: 11px;
        letter-spacing: 2px;
    }
}

/* =========================================================
   WHITE THEME + HERO VISIBILITY FIX
   Added 2026-09-23
   - Replaces the previous green surface theme with white/dark
   - Keeps gold as the accent
   - Uses neutral dark overlays so photography stays natural
   - Shortens Home and About heroes on mobile
========================================================= */

:root {
    --color-dark: #111111;
    --brand-green: #111111;
    --brand-green-dark: #111111;
    --brand-green-deep: #111111;
    --brand-green-soft: #F5F5F5;
}

html,
body {
    background: #FFFFFF;
    color: #111111;
}


/* ================= WHITE HEADER / NAV ================= */

.main-navbar {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-left a,
.nav-right a,
.logo-text {
    color: #111111;
}

.nav-left a::after,
.nav-right a::after {
    background: #111111;
}

.hamburger span {
    background: #111111;
}

.mobile-menu {
    background: rgba(255, 255, 255, 0.99);
    border-top-color: rgba(17, 17, 17, 0.08);
}

.mobile-menu-inner a {
    color: #111111;
    border-bottom-color: rgba(17, 17, 17, 0.08);
}


/* ================= HOME HERO — DESKTOP ================= */

.hero {
    background: #FFFFFF;
}

.hero h1 {
    color: #111111;
}

.hero .sub-heading {
    color: #555555;
}

.hero-text {
    color: #666666;
}

.hero .btn {
    border-color: #111111;
    color: #111111;
    background: transparent;
}

.hero .btn:hover {
    background: #111111;
    border-color: #111111;
    color: #FFFFFF;
}

.hero-dot {
    background: rgba(17, 17, 17, 0.22);
}

.hero-dot:hover {
    background: rgba(17, 17, 17, 0.42);
}

.hero-dot.active {
    background: #111111;
}


/* ================= DARK PHOTO OVERLAYS ================= */

.overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72),
        rgba(0, 0, 0, 0.18),
        transparent
    );
}

.enquiry-overlay {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.42) 38%,
        rgba(0, 0, 0, 0.14) 68%,
        rgba(0, 0, 0, 0.04) 100%
    );
}

.about-hero-overlay {
    background: rgba(0, 0, 0, 0.48);
}

.contact-hero-overlay {
    background: rgba(0, 0, 0, 0.50);
}

.gallery-hero-overlay {
    background: rgba(0, 0, 0, 0.48);
}

.inquiry-hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.46) 38%,
        rgba(0, 0, 0, 0.16) 70%,
        rgba(0, 0, 0, 0.04) 100%
    );
}


/* ================= WHITE THEME SURFACES ================= */

.quote-section,
.collection-section,
.how-section,
.testimonials,
.laundry-section,
.foot__enquiry,
.about-section,
.commitment-section,
.standout-section,
.contact-section,
.gallery-section,
.inquiry-page,
.inquiry-info,
.inquiry-steps,
.inquiry-cta {
    background: #FFFFFF;
}

.grid-item {
    background: #111111;
}

.view-more a:hover,
.laundry-service:hover,
.contact-btn:hover,
.gallery-tab:hover,
.gallery-tab.active {
    background: #111111;
    border-color: #111111;
    color: #FFFFFF;
}


/* ================= FOOTER — WHITE ================= */

.main-footer {
    background: #FFFFFF;
    color: #111111;
    border-top: 1px solid #E8E8E8;
}

.footer-right h4 {
    color: #111111;
}

.footer-description,
.footer-social a,
.footer-center a,
.footer-right p,
.footer-bottom-container p,
.footer-policy a {
    color: #666666;
}

.footer-social a:hover,
.footer-center a:hover,
.footer-policy a:hover {
    color: #111111;
}

.footer-bottom {
    border-top-color: #E5E5E5;
}


/* ================= TABLET HOME HERO ================= */

@media (max-width: 1024px) {
    .hero {
        background: #FFFFFF;
    }

    .hero::after {
        top: 0;
        height: 100%;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.38) 48%,
            rgba(0, 0, 0, 0.14) 100%
        );
    }

    .hero h1 {
        color: #FFFFFF;
    }

    .hero .sub-heading {
        color: rgba(255, 255, 255, 0.84);
    }

    .hero-text {
        color: rgba(255, 255, 255, 0.88);
    }

    .hero .btn {
        border-color: rgba(255, 255, 255, 0.90);
        color: #FFFFFF;
        background: rgba(0, 0, 0, 0.08);
    }

    .hero .btn:hover {
        background: #FFFFFF;
        border-color: #FFFFFF;
        color: #111111;
    }

    .hero-dot {
        background: rgba(255, 255, 255, 0.34);
    }

    .hero-dot:hover {
        background: rgba(255, 255, 255, 0.60);
    }

    .hero-dot.active {
        background: #FFFFFF;
    }
}


/* ================= MOBILE HERO HEIGHT FIX ================= */

@media (max-width: 768px) {

    /* HOME: no more full-screen 100vh hero */
    .hero {
        height: 68vh;
        height: 68svh;
        min-height: 500px;
        max-height: 620px;
        background: #FFFFFF;
    }

    .hero::after {
        top: 0;
        height: 100%;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.76) 0%,
            rgba(0, 0, 0, 0.40) 48%,
            rgba(0, 0, 0, 0.14) 100%
        );
    }

    .hero-image {
        inset: 0;
    }

    .hero-image img {
        width: 100%;
        max-width: none;
        height: 100%;
        min-height: 0;
        margin: 0;
        object-fit: cover;
        object-position: center;
        transform: none;
    }

    .hero-content {
        bottom: 30px;
        padding: 0 22px;
    }

    .hero h1 {
        margin-bottom: 10px;
        color: #FFFFFF;
        font-size: 28px;
        line-height: 1.18;
        letter-spacing: 1.7px;
    }

    .hero .sub-heading {
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.84);
    }

    .hero-text {
        margin-bottom: 18px;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.6;
    }

    .hero .btn {
        padding: 11px 28px;
        border-color: rgba(255, 255, 255, 0.92);
        color: #FFFFFF;
        background: rgba(0, 0, 0, 0.10);
    }

    /* ABOUT: shorter image hero on mobile */
    .about-hero {
        height: 52vh;
        height: 52svh;
        min-height: 360px;
        max-height: 480px;
    }

    .about-hero-image {
        position: absolute;
        inset: 0;
    }

    .about-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .about-hero-overlay {
        background: rgba(0, 0, 0, 0.48);
    }

    .about-hero-content {
        padding: 60px 22px 20px;
        color: #FFFFFF;
    }

    .about-hero-content h1 {
        margin-bottom: 10px;
        color: #FFFFFF;
        font-size: 27px;
        line-height: 1.2;
        letter-spacing: 2px;
    }

    .about-hero-content p {
        max-width: 520px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    /* Darker neutral overlays on mobile, without hiding the image */
    .enquiry-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.16) 0%,
            rgba(0, 0, 0, 0.48) 56%,
            rgba(0, 0, 0, 0.72) 100%
        );
    }

    .inquiry-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.50) 55%,
            rgba(0, 0, 0, 0.74) 100%
        );
    }

    .overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.14),
            transparent
        );
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width: 420px) {
    .hero {
        min-height: 480px;
        max-height: 570px;
    }

    .hero h1 {
        font-size: 25px;
    }

    .about-hero {
        min-height: 340px;
        max-height: 430px;
    }

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

