/* ================================
   EMM GAS & WATER
   Global Styles
================================ */

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

:root {
    --primary-blue: #075985;
    --dark-blue: #063B5C;
    --accent-teal: #0F9D8A;

    --dark: #17212B;
    --text: #4B5563;

    --white: #FFFFFF;
    --off-white: #F7FAFC;
    --light-blue: #EAF6FA;
}
body.dark-mode {
    --white: #16222b;
    --off-white: #10181e;
    --light-blue: #1d303b;
    --dark: #f2f6f8;
    --text: #c5d0d6;

    --primary-blue: #4da8d8;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

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


/* ================================
   NAVIGATION
================================ */

header {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid #E5E7EB;
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 18px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);

    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-teal);

    margin-top: 5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.order-btn {
    background: var(--primary-blue);
    color: var(--white);

    padding: 12px 22px;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.order-btn:hover {
    background: var(--dark-blue);
}


/* ================================
   HERO
================================ */

.hero {
    max-width: 1200px;
    min-height: 650px;

    margin: auto;
    padding: 70px 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    align-items: center;
}

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

.eyebrow {
    color: var(--accent-teal);
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;

    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: var(--primary-blue);
}

.hero-text {
    color: var(--text);
    font-size: 18px;
    max-width: 500px;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 25px;
    border-radius: 6px;

    font-weight: 600;
    font-size: 15px;

    transition: 0.3s;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-blue);
}

.btn-secondary {
    border: 1px solid #CBD5E1;
    color: var(--dark);
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}


/* ================================
   HERO IMAGE PLACEHOLDER
================================ */

.hero-image {
    height: 520px;

    border-radius: 20px;

    overflow: hidden;

    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.6s ease;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;

    background: var(--light-blue);

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-blue);
    font-weight: 600;
}


/* ================================
   RESPONSIVE
================================ */


.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    gap: 15px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}
@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

  

    .hero {
        grid-template-columns: 1fr;
        padding-top: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        height: 400px;
    }
}


@media (max-width: 500px) {

    nav {
        padding: 15px 20px;
    }

    .order-btn {
        padding: 10px 15px;
    }

    .hero {
        padding: 45px 20px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .hero-image {
        height: 300px;
    }
}
/* ================================
   WHAT WE DELIVER
================================ */

.services {
    background: var(--off-white);

    padding: 120px 30px;
}

.section-heading {
    max-width: 650px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-heading h2 {
    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.section-heading h2 span {
    display: block;

    color: var(--primary-blue);
}

.section-heading > p:last-child {
    color: var(--text);

    font-size: 17px;
}


/* ================================
   SERVICE CARDS
================================ */

.service-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.service-card {
    display: block;

    overflow: hidden;

    border-radius: 20px;

    background: var(--dark-blue);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 50px rgba(6, 59, 92, 0.15);
}


/* IMAGE AREA */

.service-image {
    height: 540px;

    position: relative;

    overflow: hidden;
}

.service-image .image-placeholder {
    position: absolute;

    inset: 0;

    border-radius: 0;

    background: var(--light-blue);

    transition:
        transform 0.6s ease;
}

.service-card:hover
.service-image .image-placeholder {
    transform: scale(1.04);
}


/* OVERLAY */

.service-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 35%,
            rgba(6, 59, 92, 0.88) 100%
        );
}


/* CONTENT */

.service-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 40px;

    color: var(--white);
}

.service-label {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #A7E8DF;

    margin-bottom: 12px;
}

.service-content h3 {
    font-size: 42px;

    line-height: 1;

    margin-bottom: 10px;
}

.service-content > p {
    font-size: 17px;

    color: rgba(255, 255, 255, 0.85);

    margin-bottom: 25px;
}

.service-link {
    display: inline-block;

    font-size: 14px;

    font-weight: 700;

    color: var(--white);
}


/* ================================
   SERVICE RESPONSIVE
================================ */

@media (max-width: 700px) {

    .services {
        padding: 85px 20px;
    }

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

    .service-image {
        height: 450px;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h3 {
        font-size: 36px;
    }

}
/* ================================
   WHY EMM SECTION
================================ */

.why-emm {
    background: var(--white);

    padding: 120px 30px;
}

.why-layout {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


/* IMAGE */

.why-image {
    height: 620px;

    border-radius: 20px;

    overflow: hidden;
}

.why-image .image-placeholder {
    width: 100%;
    height: 100%;

    background: var(--light-blue);

    border-radius: 20px;
}


/* CONTENT */

.why-content {
    max-width: 570px;
}

.why-content h2 {
    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.why-content h2 span {
    display: block;

    color: var(--primary-blue);
}

.why-intro {
    color: var(--text);

    font-size: 17px;

    line-height: 1.7;

    max-width: 500px;

    margin-bottom: 45px;
}


/* WHY POINTS */

.why-points {
    border-top: 1px solid #E5E7EB;
}

.why-point {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 15px;

    padding: 22px 0;

    border-bottom: 1px solid #E5E7EB;
}

.point-number {
    color: var(--accent-teal);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}

.why-point h3 {
    font-size: 17px;

    margin-bottom: 5px;
}

.why-point p {
    color: var(--text);

    font-size: 14px;
}


/* ================================
   WHY EMM RESPONSIVE
================================ */

@media (max-width: 850px) {

    .why-emm {
        padding: 90px 20px;
    }

    .why-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .why-image {
        height: 450px;
    }

    .why-content {
        max-width: 100%;
    }

}


@media (max-width: 500px) {

    .why-image {
        height: 350px;
    }

    .why-content h2 {
        font-size: 42px;
    }

}
/* ================================
   HOW IT WORKS
================================ */

.how-it-works {
    background: var(--off-white);

    padding: 110px 30px;
}

.how-heading {
    max-width: 650px;

    margin: 0 auto 70px;

    text-align: center;
}

.how-heading h2 {
    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.how-heading h2 span {
    color: var(--primary-blue);
}

.how-heading > p:last-child {
    color: var(--text);

    font-size: 17px;
}


/* STEPS */

.steps {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.step {
    padding-right: 35px;
}

.step-top {
    display: flex;

    align-items: center;

    height: 35px;

    margin-bottom: 30px;
}

.step-number {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-blue);

    color: var(--white);

    font-size: 11px;

    font-weight: 700;
}

.step-line {
    height: 1px;

    background: #CBD5E1;

    flex: 1;

    margin-left: 15px;
}

.step h3 {
    font-size: 21px;

    margin-bottom: 10px;
}

.step p {
    color: var(--text);

    font-size: 15px;

    max-width: 210px;
}


/* CTA */

.how-cta {
    text-align: center;

    margin-top: 60px;
}


/* ================================
   HOW IT WORKS RESPONSIVE
================================ */

@media (max-width: 800px) {

    .steps {
        grid-template-columns: 1fr 1fr;

        row-gap: 45px;
    }

    .step {
        padding-right: 20px;
    }

    .step-line {
        display: none;
    }

}


@media (max-width: 500px) {

    .how-it-works {
        padding: 80px 20px;
    }

    .how-heading {
        margin-bottom: 50px;
    }

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

    .step {
        padding-right: 0;
    }

    .step-top {
        margin-bottom: 18px;
    }

}
.service-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}
/* ================================
   FINAL CTA
================================ */

.final-cta {
    background: var(--primary-blue);

    padding: 110px 30px;

    text-align: center;

    color: var(--white);
}

.cta-content {
    max-width: 700px;

    margin: auto;
}

.final-cta .eyebrow {
    color: #A7E8DF;
}

.final-cta h2 {
    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.final-cta h2 span {
    display: block;

    color: #A7E8DF;
}

.final-cta p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.85);

    font-size: 17px;

    margin-bottom: 35px;
}

.btn-light {
    background: var(--white);

    color: var(--primary-blue);
}

.btn-light:hover {
    background: #EAF6FA;
}
/* ================================
   FOOTER
================================ */

.footer {
    background: #062F49;

    color: var(--white);

    padding: 70px 30px 25px;
}

.footer-main {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.5fr;

    gap: 50px;

    padding-bottom: 60px;
}


/* FOOTER BRAND */

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: inline-flex;

    flex-direction: column;

    font-size: 30px;

    font-weight: 800;

    line-height: 1;

    margin-bottom: 18px;
}

.footer-logo span {
    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #A7E8DF;

    margin-top: 5px;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    line-height: 1.7;
}


/* FOOTER COLUMNS */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h3 {
    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 8px;

    color: #A7E8DF;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;

    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}


/* FOOTER BOTTOM */

.footer-bottom {
    max-width: 1200px;

    margin: auto;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}


/* ================================
   FOOTER RESPONSIVE
================================ */

@media (max-width: 800px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

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

}


@media (max-width: 500px) {

    .footer {
        padding: 60px 20px 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 45px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}
.why-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}
/* ================================
   GAS PAGE
================================ */

.gas-hero {
    max-width: 1200px;

    margin: auto;

    padding: 90px 30px;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;
}

.gas-hero-content {
    max-width: 600px;
}

.gas-hero-content h1 {
    font-size: clamp(50px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.gas-hero-content h1 span {
    display: block;

    color: var(--primary-blue);
}

.gas-hero-content > p:not(.eyebrow) {
    max-width: 500px;

    color: var(--text);

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 35px;
}

.gas-hero-image {
    height: 560px;

    border-radius: 20px;

    overflow: hidden;
}

.gas-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* ================================
   GAS BRANDS SECTION
================================ */

.gas-brands {
    background: var(--off-white);

    padding: 110px 30px;
}

.gas-section-heading {
    max-width: 650px;

    margin: 0 auto 60px;

    text-align: center;
}

.gas-section-heading h2 {
    font-size: clamp(40px, 4vw, 56px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.gas-section-heading h2 span {
    display: block;

    color: var(--primary-blue);
}

.gas-section-heading > p:last-child {
    color: var(--text);

    font-size: 17px;

    line-height: 1.6;
}


/* ================================
   GAS BRAND GROUPS
================================ */

.gas-brand-group {
    max-width: 1100px;
    margin: 0 auto 55px;
}

.brand-name {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
}


/* ================================
   GAS SIZE CARDS
================================ */

.gas-size-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.gas-size-card {
    background: var(--white);

    border: 1px solid #E2E7EA;

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.gas-size-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(6, 59, 92, 0.11);
}


/* ================================
   GAS PRODUCT IMAGE
================================ */

.gas-size-card .brand-image {
    height: 280px;

    overflow: hidden;

    background: var(--light-blue);

    display: flex;

    align-items: center;

    justify-content: center;
}


.gas-size-card .brand-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    transition:
        transform 0.6s ease;
}


.gas-size-card:hover .brand-image img {
    transform: scale(1.04);
}


/* ================================
   GAS PRODUCT DETAILS
================================ */

.gas-size-card .brand-details {
    padding: 22px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}


.gas-size-card .brand-details h4 {
    font-size: 20px;

    line-height: 1.2;

    margin-bottom: 15px;

    color: var(--dark);
}


.gas-size-card .brand-order {
    font-size: 13px;

    font-weight: 700;

    color: var(--primary-blue);

    transition:
        transform 0.3s ease;
}


.gas-size-card .brand-order:hover {
    transform: translateX(4px);
}


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

@media (max-width: 600px) {

    .gas-brands {
        padding: 80px 20px;
    }

    .gas-size-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .gas-size-card .brand-image {
        height: 190px;
    }

    .gas-size-card .brand-details {
        padding: 14px;
    }

    .brand-name {
        font-size: 23px;
    }

    .gas-size-card .brand-details h4 {
        font-size: 15px;

        margin-bottom: 10px;
    }

    .gas-size-card .brand-order {
        font-size: 11px;
    }

}
/* ================================
   GAS ACCESSORIES
================================ */

.gas-accessories {
    background: var(--white);
    padding: 110px 30px;
}

.accessory-group {
    max-width: 1100px;
    margin: 0 auto 55px;
}

.accessory-name {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
}

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


/* ================================
   ACCESSORY CARDS
================================ */

.accessory-card {
    background: var(--white);

    border: 1px solid #E2E7EA;

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.accessory-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(6, 59, 92, 0.11);
}


/* ================================
   ACCESSORY IMAGE
================================ */

.accessory-image {
    height: 250px;

    background: var(--light-blue);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.accessory-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition:
        transform 0.6s ease;
}

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


/* ================================
   ACCESSORY DETAILS
================================ */

.accessory-details {
    padding: 22px;
}

.accessory-details h4 {
    font-size: 19px;
    color: var(--dark);

    margin-bottom: 15px;
}

.accessory-details .brand-order {
    display: inline-block;
}


/* ================================
   ACCESSORY MOBILE
================================ */

@media (max-width: 700px) {

    .gas-accessories {
        padding: 80px 20px;
    }

    .accessory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .accessory-image {
        height: 190px;
    }

    .accessory-details {
        padding: 14px;
    }

    .accessory-name {
        font-size: 23px;
    }

    .accessory-details h4 {
        font-size: 14px;
    }

    .accessory-details .brand-order {
        font-size: 11px;
    }

}

@media (max-width: 450px) {

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

}
.gas-description {
    color: var(--text);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.gas-exchange {
    color: var(--text);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 18px;
    font-style: italic;
}
.accessory-description {
    color: var(--text);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* BRAND DETAILS */

.brand-details {
    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}

.brand-label {
    color: var(--accent-teal);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    margin-bottom: 12px;
}

.brand-details h3 {
    font-size: 28px;

    line-height: 1;

    margin-bottom: 10px;
}

.brand-details > p:not(.brand-label) {
    color: var(--text);

    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 20px;
}

.brand-order {
    font-size: 13px;

    font-weight: 700;

    color: var(--primary-blue);

    transition:
        transform 0.3s ease;
}

.brand-order:hover {
    transform: translateX(4px);
}


/* ================================
   GAS ORDER CTA
================================ */

.gas-order-cta {
    background: var(--primary-blue);

    color: var(--white);

    padding: 75px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding-left: max(30px, calc((100vw - 1140px) / 2));

    padding-right: max(30px, calc((100vw - 1140px) / 2));
}

.gas-order-cta h2 {
    font-size: clamp(34px, 4vw, 48px);

    margin-bottom: 10px;
}

.gas-order-cta > div > p:last-child {
    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;
}


/* ================================
   GAS PAGE RESPONSIVE
================================ */

@media (max-width: 850px) {

    .gas-hero {
        grid-template-columns: 1fr;

        padding: 70px 20px;

        gap: 45px;
    }

    .gas-hero-image {
        height: 450px;
    }

    .gas-brand-grid {
        grid-template-columns: 1fr;
    }

    .gas-order-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 500px) {

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

    .gas-hero-image {
        height: 380px;
    }

    .gas-brands {
        padding: 80px 20px;
    }

    .gas-brand-card {
        grid-template-columns: 1fr;
    }

    .brand-image {
        height: 230px;

        min-height: 230px;
    }

    .brand-details {
        padding: 25px;
    }

}
/* ================================
   WATER PAGE
================================ */

.water-hero {
    max-width: 1200px;

    margin: auto;

    padding: 90px 30px;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;
}

.water-hero-content {
    max-width: 600px;
}

.water-hero-content h1 {
    font-size: clamp(50px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.water-hero-content h1 span {
    display: block;

    color: var(--primary-blue);
}

.water-hero-content > p:not(.eyebrow) {
    max-width: 500px;

    color: var(--text);

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 35px;
}

.water-hero-image {
    height: 560px;

    border-radius: 20px;

    overflow: hidden;
}

.water-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ================================
   WATER BRANDS
================================ */

.water-brands {
    background: var(--off-white);

    padding: 110px 30px;
}

.water-section-heading {
    max-width: 650px;

    margin: 0 auto 60px;

    text-align: center;
}

.water-section-heading h2 {
    font-size: clamp(40px, 4vw, 56px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.water-section-heading h2 span {
    display: block;

    color: var(--primary-blue);
}

.water-section-heading > p:last-child {
    color: var(--text);

    font-size: 17px;

    line-height: 1.6;
}


/* ================================
   WATER BRAND CARDS
================================ */

.water-brand-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.water-brand-card {
    display: grid;

    grid-template-columns: 42% 58%;

    min-height: 240px;

    background: var(--white);

    border: 1px solid #E2E7EA;

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.water-brand-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(6, 59, 92, 0.11);
}


/* WATER IMAGE */

.water-brand-image {
    min-height: 240px;

    overflow: hidden;

    background: var(--light-blue);
}

.water-brand-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

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


/* WATER DETAILS */

.water-brand-details {
    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}

.water-brand-label {
    color: var(--accent-teal);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    margin-bottom: 12px;
}

.water-brand-details h3 {
    font-size: 28px;

    line-height: 1;

    margin-bottom: 10px;
}

.water-brand-details > p:not(.water-brand-label) {
    color: var(--text);

    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 20px;
}

.water-order {
    font-size: 13px;

    font-weight: 700;

    color: var(--primary-blue);

    transition:
        transform 0.3s ease;
}

.water-order:hover {
    transform: translateX(4px);
}


/* ================================
   WATER ORDER CTA
================================ */

.water-order-cta {
    background: var(--primary-blue);

    color: var(--white);

    padding: 75px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding-left: max(30px, calc((100vw - 1140px) / 2));

    padding-right: max(30px, calc((100vw - 1140px) / 2));
}

.water-order-cta h2 {
    font-size: clamp(34px, 4vw, 48px);

    margin-bottom: 10px;
}

.water-order-cta > div > p:last-child {
    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;
}


/* ================================
   WATER RESPONSIVE
================================ */

@media (max-width: 850px) {

    .water-hero {
        grid-template-columns: 1fr;

        padding: 70px 20px;

        gap: 45px;
    }

    .water-hero-image {
        height: 450px;
    }

    .water-brand-grid {
        grid-template-columns: 1fr;
    }

    .water-order-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 500px) {

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

    .water-hero-image {
        height: 380px;
    }

    .water-brands {
        padding: 80px 20px;
    }

    .water-brand-card {
        grid-template-columns: 1fr;
    }

    .water-brand-image {
        height: 230px;

        min-height: 230px;
    }

    .water-brand-details {
        padding: 25px;
    }

}
/* ================================
   RICE PAGE
================================ */


/* ================================
   RICE HERO
================================ */

.rice-hero {
    max-width: 1200px;

    margin: auto;

    padding: 90px 30px;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;
}


.rice-hero-content {
    max-width: 600px;
}


.rice-hero-content h1 {
    font-size: clamp(50px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 25px;
}


.rice-hero-content h1 span {
    display: block;

    color: var(--primary-blue);
}


.rice-hero-content > p:not(.eyebrow) {
    max-width: 500px;

    color: var(--text);

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 35px;
}


/* ================================
   RICE HERO OVERLAPPING IMAGES
================================ */

.rice-hero-images {
    position: relative;

    width: 100%;

    height: 560px;
}


.rice-hero-main-image {
    position: absolute;

    top: 0;

    right: 0;

    width: 82%;

    height: 500px;

    border-radius: 20px;

    overflow: hidden;

    z-index: 1;
}


.rice-hero-main-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


.rice-hero-secondary-image {
    position: absolute;

    bottom: 0;

    left: 0;

    width: 48%;

    height: 260px;

    border-radius: 16px;

    overflow: hidden;

    border: 8px solid var(--white);

    z-index: 2;

    box-shadow:
        0 18px 40px rgba(6, 59, 92, 0.15);
}


.rice-hero-secondary-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}



/* ================================
   RICE PRODUCTS SECTION
================================ */

.rice-products {
    background: var(--off-white);

    padding: 110px 30px;
}


.rice-section-heading {
    max-width: 650px;

    margin: 0 auto 80px;

    text-align: center;
}


.rice-section-heading h2 {
    font-size: clamp(40px, 4vw, 56px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.rice-section-heading h2 span {
    display: block;

    color: var(--primary-blue);
}


.rice-section-heading > p:last-child {
    color: var(--text);

    font-size: 17px;

    line-height: 1.6;
}



/* ================================
   RICE PRODUCT FEATURE
================================ */

.rice-product {
    max-width: 1100px;

    margin: 0 auto 100px;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 80px;

    align-items: center;
}


.rice-product:last-child {
    margin-bottom: 0;
}


.rice-product-reverse {
    grid-template-columns: 0.9fr 1.1fr;
}


.rice-product-reverse
.rice-product-gallery {
    order: 2;
}


.rice-product-reverse
.rice-product-content {
    order: 1;
}



/* ================================
   MAIN PRODUCT IMAGE
================================ */

.rice-product-gallery {
    width: 100%;
}


.rice-main-image {
    width: 100%;

    height: 480px;

    border-radius: 18px;

    overflow: hidden;

    background: var(--light-blue);
}


.rice-main-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
     transition: opacity 0.25s ease;
}



/* ================================
   PRODUCT PHOTO STRIP
================================ */

.rice-thumbnails {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    margin-top: 14px;
}


.rice-thumbnails img {
    width: 100%;

    height: 150px;

    object-fit: cover;

    display: block;

    border-radius: 10px;

    opacity: 1;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.rice-thumbnails img:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(6, 59, 92, 0.12);
}
.rice-thumbnails img {
    cursor: pointer;

    border: 2px solid transparent;
}


.rice-thumbnails img.active-rice-image {
    border: 2px solid var(--primary-blue);

    opacity: 1;

    transform: translateY(-3px);
}


/* KORIE HAS TWO PHOTOS */

.rice-product-reverse
.rice-thumbnails {
    grid-template-columns: repeat(2, 1fr);
}


.rice-product-reverse
.rice-thumbnails img {
    height: 180px;
}



/* ================================
   PRODUCT INFORMATION
================================ */

.rice-product-content {
    max-width: 450px;
}


.rice-product-number {
    color: var(--accent-teal);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    margin-bottom: 15px;
}


.rice-product-content h3 {
    font-size: clamp(40px, 4vw, 55px);

    line-height: 0.98;

    letter-spacing: -2px;

    margin-bottom: 25px;
}


.rice-product-content h3 span {
    display: block;

    color: var(--primary-blue);
}


.rice-product-content >
p:not(.rice-product-number) {
    color: var(--text);

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 30px;
}


.rice-order {
    font-size: 14px;

    font-weight: 700;

    color: var(--primary-blue);

    transition:
        transform 0.3s ease;
}


.rice-order:hover {
    transform: translateX(5px);
}



/* ================================
   RICE CTA
================================ */

.rice-order-cta {
    background: var(--primary-blue);

    color: var(--white);

    padding: 75px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding-left:
        max(30px, calc((100vw - 1140px) / 2));

    padding-right:
        max(30px, calc((100vw - 1140px) / 2));
}


.rice-order-cta h2 {
    font-size: clamp(34px, 4vw, 48px);

    margin-bottom: 10px;
}


.rice-order-cta > div > p:last-child {
    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;
}



/* ================================
   RICE RESPONSIVE
================================ */

@media (max-width: 850px) {

    .rice-hero {
        grid-template-columns: 1fr;

        padding: 70px 20px;

        gap: 45px;
    }


    .rice-hero-images {
        height: 430px;
    }


    .rice-hero-main-image {
        width: 85%;

        height: 370px;
    }


    .rice-hero-secondary-image {
        width: 48%;

        height: 190px;
    }


    .rice-product,
    .rice-product-reverse {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .rice-product-reverse
    .rice-product-gallery {
        order: 1;
    }


    .rice-product-reverse
    .rice-product-content {
        order: 2;
    }


    .rice-order-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}



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

@media (max-width: 500px) {

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


    .rice-hero-images {
        height: 390px;
    }


    .rice-hero-main-image {
        width: 88%;

        height: 330px;
    }


    .rice-hero-secondary-image {
        width: 50%;

        height: 165px;

        border-width: 6px;
    }


    .rice-products {
        padding: 80px 20px;
    }


    .rice-main-image {
        height: 380px;
    }


    .rice-thumbnails {
        gap: 10px;
    }


    .rice-thumbnails img {
        height: 110px;
    }


    .rice-product-reverse
    .rice-thumbnails img {
        height: 130px;
    }

}
/* ================================
   AREAS PAGE
================================ */


/* HERO */

.areas-hero {
    max-width: 1200px;

    margin: auto;

    padding: 90px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;
}


.areas-hero-content {
    max-width: 680px;
}


.areas-hero-content h1 {
    font-size: clamp(50px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 25px;
}


.areas-hero-content h1 span {
    display: block;

    color: var(--primary-blue);
}


.areas-hero-content > p:not(.eyebrow) {
    max-width: 560px;

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 35px;
}


.areas-hero-stat {
    min-width: 210px;

    height: 210px;

    border-radius: 50%;

    background: var(--light-blue);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}


.areas-hero-stat span {
    font-size: 50px;

    font-weight: 800;

    line-height: 1;

    color: var(--primary-blue);
}


.areas-hero-stat p {
    margin-top: 10px;

    font-size: 13px;

    line-height: 1.4;
}



/* ================================
   MAP SECTION
================================ */

.areas-map-section {
    background: var(--off-white);

    padding: 100px 30px;
}


.areas-section-heading {
    max-width: 650px;

    margin: 0 auto 50px;

    text-align: center;
}


.areas-section-heading h2 {
    font-size: clamp(40px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.areas-section-heading h2 span {
    display: block;

    color: var(--primary-blue);
}


.areas-section-heading > p:last-child {
    color: var(--text);

    font-size: 16px;

    line-height: 1.7;
}


.areas-map {
    max-width: 1100px;

    height: 500px;

    margin: auto;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 15px 45px rgba(6, 59, 92, 0.12);
}


.areas-map iframe {
    width: 100%;

    height: 100%;

    border: 0;

    display: block;
}



/* ================================
   SERVICE AREAS
================================ */

.service-areas {
    padding: 110px 30px;
}


.areas-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.area-card {
    background: var(--white);

    border: 1px solid rgba(6, 59, 92, 0.08);

    border-radius: 16px;

    padding: 35px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.area-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(6, 59, 92, 0.08);
}


.area-card h3 {
    font-size: 22px;

    margin-bottom: 25px;

    color: var(--primary-blue);
}


.area-list {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.area-list span {
    background: var(--light-blue);

    padding: 9px 14px;

    border-radius: 30px;

    font-size: 13px;

    color: var(--primary-blue);

    transition:
        background 0.3s ease;
}


.area-list span:hover {
    background: rgba(6, 59, 92, 0.12);
}



/* ================================
   AREAS CTA
================================ */

.areas-cta {
    background: var(--primary-blue);

    color: var(--white);

    padding: 75px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding-left:
        max(30px, calc((100vw - 1140px) / 2));

    padding-right:
        max(30px, calc((100vw - 1140px) / 2));
}


.areas-cta h2 {
    font-size: clamp(34px, 4vw, 48px);

    margin-bottom: 10px;
}


.areas-cta > div > p:last-child {
    max-width: 500px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;

    line-height: 1.6;
}



/* ================================
   AREAS RESPONSIVE
================================ */

@media (max-width: 850px) {

    .areas-hero {
        flex-direction: column;

        align-items: flex-start;

        padding: 70px 20px;
    }


    .areas-hero-stat {
        width: 180px;

        height: 180px;

        min-width: 180px;
    }


    .areas-hero-stat span {
        font-size: 42px;
    }


    .areas-map-section,
    .service-areas {
        padding: 80px 20px;
    }


    .areas-map {
        height: 430px;
    }


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


    .areas-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 500px) {

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


    .areas-map {
        height: 380px;

        border-radius: 14px;
    }


    .area-card {
        padding: 25px;
    }


    .areas-cta {
        padding: 60px 20px;
    }

}
/* ================================
   REVIEWS PAGE
================================ */


/* ================================
   REVIEWS HERO
================================ */

.reviews-hero {
    max-width: 1200px;

    margin: auto;

    padding: 100px 30px;

    display: grid;

    grid-template-columns: 1fr 320px;

    gap: 80px;

    align-items: center;
}


.reviews-hero-content {
    max-width: 700px;
}


.reviews-hero-content h1 {
    font-size: clamp(50px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 25px;
}


.reviews-hero-content h1 span {
    display: block;

    color: var(--primary-blue);
}


.reviews-hero-content > p:not(.eyebrow) {
    max-width: 560px;

    font-size: 17px;

    line-height: 1.7;
}


/* ================================
   RATING
================================ */

.reviews-rating {
    background: var(--light-blue);

    border-radius: 22px;

    padding: 45px 30px;

    text-align: center;
}


.rating-number {
    font-size: 72px;

    line-height: 1;

    font-weight: 800;

    color: var(--primary-blue);
}


.review-stars,
.stars {
    color: #f5a623;

    letter-spacing: 4px;

    font-size: 20px;

    margin: 15px 0;
}


.reviews-rating p {
    font-weight: 700;

    margin-bottom: 5px;
}


.reviews-rating span {
    font-size: 13px;

    opacity: 0.65;
}



/* ================================
   REVIEWS SECTION
================================ */

.reviews-section {
    background: var(--off-white);

    padding: 110px 30px;
}


.reviews-heading {
    max-width: 650px;

    margin: 0 auto 65px;

    text-align: center;
}


.reviews-heading h2 {
    font-size: clamp(40px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -2px;
}


.reviews-heading h2 span {
    color: var(--primary-blue);
}



/* ================================
   REVIEW GRID
================================ */

.reviews-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


.review-card {
    background: var(--white);

    border-radius: 18px;

    padding: 35px;

    border: 1px solid rgba(6, 59, 92, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.review-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(6, 59, 92, 0.09);
}


.review-card-featured {
    background: var(--primary-blue);

    color: var(--white);
}


.review-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}


.review-top > span {
    font-size: 11px;

    opacity: 0.45;

    font-weight: 700;
}


.review-text {
    font-size: 18px;

    line-height: 1.7;

    min-height: 120px;

    margin-bottom: 30px;
}


.review-author {
    display: flex;

    align-items: center;

    gap: 12px;
}


.review-avatar {
    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: var(--light-blue);

    color: var(--primary-blue);

    display: flex;

    justify-content: center;

    align-items: center;

    font-weight: 800;
}


.review-card-featured
.review-avatar {
    background: rgba(255,255,255,0.15);

    color: var(--white);
}


.review-author strong {
    display: block;

    font-size: 14px;
}


.review-author span {
    display: block;

    font-size: 11px;

    opacity: 0.55;

    margin-top: 3px;
}



/* ================================
   TRUST STRIP
================================ */

.reviews-trust {
    max-width: 1100px;

    margin: 0 auto;

    padding: 80px 30px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    text-align: center;
}


.trust-item {
    padding: 20px;

    border-right:
        1px solid rgba(6, 59, 92, 0.1);
}


.trust-item:last-child {
    border-right: none;
}


.trust-item strong {
    display: block;

    color: var(--primary-blue);

    font-size: 25px;

    margin-bottom: 6px;
}


.trust-item span {
    font-size: 12px;

    opacity: 0.6;
}



/* ================================
   REVIEWS CTA
================================ */

.reviews-cta {
    background: var(--primary-blue);

    color: var(--white);

    padding: 75px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding-left:
        max(30px, calc((100vw - 1140px) / 2));

    padding-right:
        max(30px, calc((100vw - 1140px) / 2));
}


.reviews-cta h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1;

    margin-bottom: 12px;
}


.reviews-cta > div > p:last-child {
    color: rgba(255,255,255,0.75);

    font-size: 15px;
}



/* ================================
   RESPONSIVE
================================ */

@media (max-width: 850px) {

    .reviews-hero {
        grid-template-columns: 1fr;

        padding: 70px 20px;

        gap: 40px;
    }


    .reviews-rating {
        max-width: 320px;
    }


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


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


    .reviews-trust {
        grid-template-columns:
            repeat(2, 1fr);

        padding: 60px 20px;
    }


    .trust-item:nth-child(2) {
        border-right: none;
    }


    .reviews-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 500px) {

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


    .reviews-trust {
        grid-template-columns: 1fr;
    }


    .trust-item {
        border-right: none;

        border-bottom:
            1px solid rgba(6, 59, 92, 0.1);
    }


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


    .review-card {
        padding: 28px;
    }


    .review-text {
        font-size: 16px;

        min-height: auto;
    }


    .reviews-cta {
        padding: 60px 20px;
    }

}
/* ================================
   CONTACT PAGE
================================ */


/* ================================
   CONTACT HERO
================================ */

.contact-hero {
    max-width: 1200px;

    margin: auto;

    padding: 100px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;
}


.contact-hero-content {
    max-width: 700px;
}


.contact-hero-content h1 {
    font-size: clamp(50px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 25px;
}


.contact-hero-content h1 span {
    display: block;

    color: var(--primary-blue);
}


.contact-hero-content > p:not(.eyebrow) {
    max-width: 570px;

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 35px;
}


.contact-hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


.contact-hero-note {
    width: 230px;

    height: 230px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--light-blue);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 35px;
}


.contact-note-icon {
    font-size: 28px;

    color: var(--primary-blue);

    margin-bottom: 15px;
}


.contact-hero-note p {
    font-size: 13px;

    line-height: 1.5;
}



/* ================================
   CONTACT DETAILS
================================ */

.contact-details {
    background: var(--off-white);

    padding: 100px 30px;
}


.contact-section-heading {
    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;
}


.contact-section-heading h2 {
    font-size: clamp(40px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -2px;
}


.contact-section-heading h2 span {
    display: block;

    color: var(--primary-blue);
}


.contact-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.contact-card {
    display: flex;

    align-items: center;

    gap: 20px;

    background: var(--white);

    border-radius: 18px;

    padding: 30px;

    border: 1px solid rgba(6, 59, 92, 0.07);

    text-decoration: none;

    color: inherit;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.contact-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(6, 59, 92, 0.08);
}


.contact-card-icon {
    width: 55px;

    height: 55px;

    flex-shrink: 0;

    border-radius: 14px;

    background: var(--light-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    color: var(--primary-blue);
}


.contact-card-label {
    display: block;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: var(--primary-blue);

    margin-bottom: 6px;
}


.contact-card h3 {
    font-size: 19px;

    margin-bottom: 5px;
}


.contact-card p {
    font-size: 13px;

    opacity: 0.6;

    line-height: 1.5;
}



/* ================================
   CONTACT LOCATION
================================ */

.contact-location {
    max-width: 1200px;

    margin: auto;

    padding: 110px 30px;

    display: grid;

    grid-template-columns: 1.3fr 1fr;

    gap: 70px;

    align-items: center;
}


.contact-map {
    height: 500px;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 15px 45px rgba(6, 59, 92, 0.12);
}


.contact-map iframe {
    width: 100%;

    height: 100%;

    border: 0;

    display: block;
}


.contact-location-info {
    max-width: 450px;
}


.contact-location-info h2 {
    font-size: clamp(40px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.contact-location-info h2 span {
    display: block;

    color: var(--primary-blue);
}


.contact-location-info > p:not(.eyebrow) {
    line-height: 1.7;

    margin-bottom: 30px;
}


.contact-hours {
    border-top:
        1px solid rgba(6, 59, 92, 0.1);

    border-bottom:
        1px solid rgba(6, 59, 92, 0.1);

    margin-bottom: 30px;
}


.contact-hours div {
    padding: 18px 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;
}


.contact-hours div + div {
    border-top:
        1px solid rgba(6, 59, 92, 0.08);
}


.contact-hours strong {
    font-size: 14px;
}


.contact-hours span {
    font-size: 14px;

    opacity: 0.6;
}


.text-link {
    color: var(--primary-blue);

    font-weight: 700;

    text-decoration: none;

    font-size: 14px;
}


.text-link:hover {
    text-decoration: underline;
}



/* ================================
   CONTACT CTA
================================ */

.contact-cta {
    background: var(--primary-blue);

    color: var(--white);

    padding: 75px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding-left:
        max(30px, calc((100vw - 1140px) / 2));

    padding-right:
        max(30px, calc((100vw - 1140px) / 2));
}


.contact-cta h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1;

    margin-bottom: 12px;
}


.contact-cta h2 span {
    color: rgba(255,255,255,0.65);
}


.contact-cta > div > p:last-child {
    color: rgba(255,255,255,0.75);

    font-size: 15px;

    line-height: 1.6;
}



/* ================================
   CONTACT RESPONSIVE
================================ */

@media (max-width: 850px) {

    .contact-hero {
        flex-direction: column;

        align-items: flex-start;

        padding: 70px 20px;
    }


    .contact-hero-note {
        width: 180px;

        height: 180px;

        align-self: center;
    }


    .contact-details {
        padding: 80px 20px;
    }


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


    .contact-location {
        grid-template-columns: 1fr;

        padding: 80px 20px;

        gap: 50px;
    }


    .contact-location-info {
        max-width: 100%;
    }


    .contact-map {
        height: 430px;
    }


    .contact-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 500px) {

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


    .contact-card {
        padding: 24px;

        gap: 14px;
    }


    .contact-card-icon {
        width: 48px;

        height: 48px;

        font-size: 19px;
    }


    .contact-card h3 {
        font-size: 16px;
    }


    .contact-map {
        height: 380px;

        border-radius: 14px;
    }


    .contact-cta {
        padding: 60px 20px;
    }

}
/* ================================
   ABOUT PAGE
================================ */


/* ================================
   ABOUT HERO
================================ */

.about-hero {
    max-width: 1200px;

    margin: auto;

    padding: 100px 30px;

    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 80px;

    align-items: center;
}


.about-hero-content {
    max-width: 680px;
}


.about-hero-content h1 {
    font-size: clamp(50px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 25px;
}


.about-hero-content h1 span {
    display: block;

    color: var(--primary-blue);
}


.about-hero-content > p:not(.eyebrow) {
    max-width: 560px;

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 35px;
}


.about-hero-visual {
    position: relative;

    min-height: 470px;
}


.about-visual-main {
    width: 100%;

    height: 470px;

    border-radius: 24px;

    overflow: hidden;
}


.about-visual-main img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


.about-visual-tag {
    position: absolute;

    bottom: -25px;

    left: -25px;

    background: var(--primary-blue);

    color: var(--white);

    padding: 22px 25px;

    border-radius: 15px;

    display: flex;

    gap: 15px;

    align-items: center;

    box-shadow:
        0 15px 35px rgba(6, 59, 92, 0.18);
}


.about-visual-tag span,
.about-visual-tag strong {
    font-size: 13px;
}


.about-visual-tag span + span::before,
.about-visual-tag strong + span::before {
    content: "•";

    margin-right: 15px;

    opacity: 0.4;
}



/* ================================
   ABOUT INTRO
================================ */

.about-intro {
    max-width: 1100px;

    margin: auto;

    padding: 110px 30px;

    display: grid;

    grid-template-columns: 0.35fr 1fr;

    gap: 80px;
}


.about-intro-content {
    max-width: 700px;
}


.about-intro-content h2 {
    font-size: clamp(40px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 30px;
}


.about-intro-content h2 span {
    display: block;

    color: var(--primary-blue);
}


.about-intro-content p {
    font-size: 16px;

    line-height: 1.8;

    max-width: 650px;

    margin-bottom: 20px;
}



/* ================================
   ABOUT SERVICES
================================ */

.about-services {
    background: var(--off-white);

    padding: 110px 30px;
}


.about-section-heading {
    max-width: 650px;

    margin: 0 auto 60px;

    text-align: center;
}


.about-section-heading h2 {
    font-size: clamp(40px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -2px;
}


.about-section-heading h2 span {
    display: block;

    color: var(--primary-blue);
}


.about-services-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.about-service-card {
    background: var(--white);

    padding: 30px;

    border-radius: 18px;

    min-height: 310px;

    display: flex;

    flex-direction: column;

    border: 1px solid rgba(6, 59, 92, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.about-service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(6, 59, 92, 0.09);
}


.about-service-number {
    font-size: 11px;

    color: var(--primary-blue);

    font-weight: 800;

    margin-bottom: 20px;

    opacity: 0.5;
}


.about-service-icon {
    font-size: 28px;

    margin-bottom: 20px;
}


.about-service-card h3 {
    font-size: 20px;

    margin-bottom: 12px;
}


.about-service-card p {
    font-size: 13px;

    line-height: 1.6;

    opacity: 0.65;

    margin-bottom: 20px;
}


.about-service-card a {
    margin-top: auto;

    color: var(--primary-blue);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;
}


.about-service-card a:hover {
    text-decoration: underline;
}



/* ================================
   ABOUT VALUES
================================ */

.about-values {
    max-width: 1100px;

    margin: auto;

    padding: 110px 30px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


.about-values-content {
    max-width: 520px;
}


.about-values-content h2 {
    font-size: clamp(40px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 25px;
}


.about-values-content h2 span {
    display: block;

    color: var(--primary-blue);
}


.about-values-content > p:last-child {
    font-size: 16px;

    line-height: 1.7;

    opacity: 0.7;
}


.about-values-list {
    display: flex;

    flex-direction: column;
}


.about-value {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom:
        1px solid rgba(6, 59, 92, 0.1);
}


.about-value:first-child {
    border-top:
        1px solid rgba(6, 59, 92, 0.1);
}


.about-value > span {
    font-size: 11px;

    font-weight: 800;

    color: var(--primary-blue);

    padding-top: 5px;

    opacity: 0.55;
}


.about-value h3 {
    font-size: 19px;

    margin-bottom: 6px;
}


.about-value p {
    font-size: 13px;

    line-height: 1.6;

    opacity: 0.6;
}



/* ================================
   ABOUT CTA
================================ */

.about-cta {
    background: var(--primary-blue);

    color: var(--white);

    padding: 75px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding-left:
        max(30px, calc((100vw - 1140px) / 2));

    padding-right:
        max(30px, calc((100vw - 1140px) / 2));
}


.about-cta h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1;

    margin-bottom: 12px;
}


.about-cta h2 span {
    color: rgba(255,255,255,0.65);
}


.about-cta > div > p:last-child {
    color: rgba(255,255,255,0.75);

    font-size: 15px;

    line-height: 1.6;
}



/* ================================
   ABOUT RESPONSIVE
================================ */

@media (max-width: 950px) {

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


    .about-values {
        gap: 50px;
    }

}


@media (max-width: 850px) {

    .about-hero {
        grid-template-columns: 1fr;

        padding: 70px 20px;

        gap: 50px;
    }


    .about-hero-visual {
        width: 100%;

        max-width: 600px;

        margin: auto;
    }


    .about-intro {
        grid-template-columns: 1fr;

        padding: 80px 20px;

        gap: 30px;
    }


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


    .about-values {
        grid-template-columns: 1fr;

        padding: 80px 20px;
    }


    .about-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 600px) {

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


    .about-hero-visual {
        min-height: 350px;
    }


    .about-visual-main {
        height: 350px;
    }


    .about-visual-tag {
        left: 10px;

        bottom: -20px;

        padding: 18px;
    }


    .about-services-grid {
        grid-template-columns: 1fr;
    }


    .about-service-card {
        min-height: 260px;
    }


    .about-cta {
        padding: 60px 20px;
    }

}
.about-logo-visual {
    background: var(--off-white);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 60px;
}


.about-logo-visual img {
    width: 75%;

    height: auto;

    object-fit: contain;
}
/* ================================
   NAVBAR LOGO
================================ */

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: inherit;
}


.logo img {
    width: 42px;

    height: 42px;

    object-fit: contain;

    display: block;
}


.logo-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.logo-text strong {
    font-size: 19px;

    font-weight: 800;

    letter-spacing: -0.5px;
}


.logo-text span {
    font-size: 9px;

    margin-top: 5px;

    letter-spacing: 1px;

    text-transform: uppercase;

    opacity: 0.6;
}
@media (max-width: 768px) {

    .brand-image {
        height: 220px;
    }

}
/* MOBILE MENU */


/* MOBILE */
@media (max-width: 900px) {

    .nav-links {
        display: none;
    }



    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        gap: 15px;
        background: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }
}
/* =========================
   MOBILE NAVIGATION
========================= */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
}

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

@media (max-width: 900px) {

    nav {
        position: relative;
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block !important;
        position: absolute;
        right: 125px;
        top: 50%;
        transform: translateY(-50%);

        background: none;
        border: none;
        color: var(--dark);

        font-size: 26px;
        line-height: 1;
        padding: 5px;

        cursor: pointer;
        z-index: 9999;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        flex-direction: column;
        gap: 0;

        background: var(--white);
        padding: 15px 20px;

        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .nav-links.active li {
        width: 100%;
    }

    .nav-links.active a {
        display: block;
        padding: 12px 0;
    }

  .order-btn {
    padding: 10px 15px;
    font-size: 13px;
    position: relative;
    left: 10px;
}
}
/* ================================
   DARK MODE TOGGLE
================================ */

.theme-toggle {
    background: none;

    border: 1px solid var(--dark);

    border-radius: 6px;

    padding: 9px 14px;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    color: var(--dark);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);

    background: var(--dark);

    color: var(--white);
}