/* =====================================================
   ROOT
===================================================== */

:root {

    --blue: #075a91;
    --blue-dark: #033d65;
    --blue-light: #eaf6fc;

    --green: #159447;
    --green-dark: #087538;
    --green-light: #eaf8ef;

    --text: #15232d;
    --muted: #65747d;

    --white: #ffffff;
    --off-white: #f7faf8;

    --border: #dce7e2;

    --shadow:
        0 20px 50px rgba(10, 48, 70, 0.10);

    --radius: 22px;

    --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(255,255,255,0.94);

    backdrop-filter: blur(16px);

    border-bottom:
        1px solid rgba(7,90,145,0.08);
}

.navbar {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* Brand */

.brand {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 190px;
}

.logo {

    width: 52px;

    height: 52px;

    object-fit: contain;
}

.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}

.brand-text strong {

    font-family: "Poppins", sans-serif;

    color: var(--blue);

    font-size: 22px;

    letter-spacing: 1px;
}

.brand-text span {

    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-top: 5px;
}


/* Navigation */

.nav-links {

    display: flex;

    align-items: center;

    gap: 28px;

    list-style: none;
}

.nav-links a {

    font-size: 14px;

    font-weight: 600;

    color: #3d4c55;

    transition: 0.3s;
}

.nav-links a:hover {

    color: var(--green);
}


/* Navigation button */

.nav-button {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px 18px;

    border-radius: 100px;

    background: var(--blue);

    color: white;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s;
}

.nav-button:hover {

    background: var(--green);

    transform: translateY(-2px);
}


/* Mobile */

.menu-toggle {

    display: none;

    border: none;

    background: none;

    font-size: 24px;

    color: var(--blue);

    cursor: pointer;
}


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

.hero {

    min-height: 760px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding-top: 82px;

    background:

        linear-gradient(
            110deg,
            rgba(2, 48, 78, 0.96),
            rgba(5, 83, 117, 0.82),
            rgba(10, 127, 65, 0.68)
        ),

        url(
            "https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?auto=format&fit=crop&w=1800&q=90"
        );

    background-size: cover;

    background-position: center;
}

.hero::after {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    right: -250px;

    bottom: -350px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.09);
}

.hero-content {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    align-items: center;

    gap: 80px;
}


/* Hero text */

.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #c9f3d8;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

.eyebrow span {

    width: 34px;

    height: 3px;

    background: #5fda8d;

    border-radius: 10px;
}

.hero h1 {

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    line-height: 1.04;

    letter-spacing: -3px;

    color: white;

    margin-bottom: 26px;
}

.hero h1 span {

    color: #7ce6a0;
}

.hero-text > p {

    max-width: 620px;

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

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* Buttons */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 35px;
}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 24px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 800;

    transition: 0.3s;
}

.btn-primary {

    background: var(--green);

    color: white;

    box-shadow:
        0 12px 30px rgba(21,148,71,0.3);
}

.btn-primary:hover {

    background: #1aab54;

    transform: translateY(-3px);
}

.btn-outline {

    color: white;

    border: 1px solid rgba(255,255,255,0.45);

    background:
        rgba(255,255,255,0.08);
}

.btn-outline:hover {

    background: white;

    color: var(--blue);
}


/* Location */

.hero-location {

    display: flex;

    align-items: center;

    gap: 10px;

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

    font-size: 13px;
}

.hero-location i {

    color: #79df9b;
}


/* Hero card */

.hero-card {

    background:
        rgba(255,255,255,0.12);

    border:
        1px solid rgba(255,255,255,0.24);

    backdrop-filter: blur(18px);

    padding: 42px;

    border-radius: 30px;

    color: white;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.15);

    position: relative;
}

.floating-icon {

    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    border-radius: 20px;

    background:
        rgba(124,230,160,0.18);

    color: #8bf0aa;

    font-size: 30px;

    margin-bottom: 28px;
}

.hero-card h3 {

    font-family: "Poppins", sans-serif;

    font-size: 34px;

    line-height: 1.15;

    margin-bottom: 15px;
}

.hero-card h3 span {

    color: #7ce6a0;
}

.hero-card p {

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

    line-height: 1.7;

    margin-bottom: 35px;
}

.hero-mini-stats {

    display: grid;

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

    gap: 10px;

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

    padding-top: 25px;
}

.hero-mini-stats div {

    display: flex;

    flex-direction: column;

    gap: 2px;
}

.hero-mini-stats strong {

    color: #83e7a3;

    font-size: 20px;
}

.hero-mini-stats small {

    color: rgba(255,255,255,0.65);
}


/* =====================================================
   INTRO STRIP
===================================================== */

.intro-strip {

    background: white;

    border-bottom:
        1px solid var(--border);
}

.intro-grid {

    display: grid;

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

.intro-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px 15px;

    border-right:
        1px solid var(--border);
}

.intro-item:last-child {

    border-right: none;
}

.intro-item > i {

    font-size: 22px;

    color: var(--green);
}

.intro-item strong {

    display: block;

    font-size: 13px;
}

.intro-item span {

    display: block;

    font-size: 11px;

    color: var(--muted);

    margin-top: 2px;
}


/* =====================================================
   SECTIONS
===================================================== */

.section {

    padding: 110px 0;
}

.section-heading {

    display: grid;

    grid-template-columns:
        1fr 0.75fr;

    align-items: end;

    gap: 60px;

    margin-bottom: 55px;
}

.section-label {

    display: block;

    color: var(--green);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.section-heading h2,
.center-heading h2,
.about-content h2,
.contact-content h2 {

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        34px,
        4vw,
        52px
    );

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.section-heading h2 span,
.center-heading h2 span,
.about-content h2 span,
.contact-content h2 span {

    color: var(--green);
}

.section-heading > p {

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}

.center-heading {

    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}

.center-heading > p {

    color: var(--muted);

    margin-top: 14px;
}


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

.services-section {

    background:
        linear-gradient(
            180deg,
            #f8fbfa,
            #ffffff
        );
}

.service-grid {

    display: grid;

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

    gap: 24px;
}

.service-card {

    position: relative;

    padding: 38px;

    background: white;

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

    border-radius: var(--radius);

    box-shadow:
        0 10px 35px rgba(10,48,70,0.05);

    overflow: hidden;

    transition: 0.35s;
}

.service-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);
}

.service-card.featured {

    border-top:
        4px solid var(--green);
}

.service-number {

    position: absolute;

    right: 25px;

    top: 18px;

    font-family: "Poppins", sans-serif;

    font-size: 50px;

    font-weight: 800;

    color: #edf4f1;
}

.service-icon {

    width: 65px;

    height: 65px;

    display: grid;

    place-items: center;

    border-radius: 18px;

    font-size: 25px;

    margin-bottom: 30px;
}

.service-icon.dry {

    background: var(--blue-light);

    color: var(--blue);
}

.service-icon.wet {

    background: var(--green-light);

    color: var(--green);
}

.service-icon.packaging {

    background: #eef5ff;

    color: #3569a4;
}

.service-card h3 {

    font-family: "Poppins", sans-serif;

    font-size: 21px;

    line-height: 1.3;

    margin-bottom: 15px;
}

.service-card p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.service-card a {

    color: var(--blue);

    font-size: 13px;

    font-weight: 800;

    display: inline-flex;

    gap: 8px;

    align-items: center;
}

.service-card a:hover {

    color: var(--green);
}


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

.about-section {

    padding: 110px 0;

    background:
        var(--blue-dark);

    color: white;

    overflow: hidden;
}

.about-grid {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.about-visual {

    position: relative;
}

.about-image {

    border-radius: 30px;

    overflow: hidden;

    border:
        7px solid rgba(255,255,255,0.1);
}

.about-image img {

    width: 100%;

    height: 520px;

    object-fit: cover;
}

.about-badge {

    position: absolute;

    right: -30px;

    bottom: 35px;

    width: 150px;

    height: 150px;

    display: grid;

    place-items: center;

    text-align: center;

    border-radius: 50%;

    background: var(--green);

    color: white;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.25);
}

.about-badge i {

    font-size: 25px;

    margin-bottom: 5px;
}

.about-badge strong {

    font-family: "Poppins", sans-serif;
}

.about-content .section-label {

    color: #76df98;
}

.about-content h2 {

    color: white;

    margin-bottom: 28px;
}

.about-content .lead {

    font-size: 19px;

    line-height: 1.7;

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

    margin-bottom: 20px;
}

.about-content > p:not(.lead) {

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

    line-height: 1.8;

    margin-bottom: 15px;
}

.about-highlight {

    display: flex;

    gap: 18px;

    padding: 20px;

    margin-top: 30px;

    background:
        rgba(255,255,255,0.07);

    border:
        1px solid rgba(255,255,255,0.1);

    border-radius: 16px;
}

.about-highlight > i {

    color: #76df98;

    font-size: 24px;
}

.about-highlight strong {

    display: block;

    margin-bottom: 5px;
}

.about-highlight p {

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

    font-size: 13px;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {

    background: white;
}

.product-grid {

    display: grid;

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

    gap: 25px;
}

.product-card {

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

    border-radius: 22px;

    overflow: hidden;

    background: white;

    transition: 0.35s;
}

.product-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);
}

.product-image {

    height: 260px;

    overflow: hidden;

    background: #edf5f2;
}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.product-card:hover
.product-image img {

    transform: scale(1.05);
}

.product-info {

    padding: 27px;
}

.product-info > span {

    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.product-info h3 {

    font-family: "Poppins", sans-serif;

    font-size: 23px;

    margin: 8px 0 10px;
}

.product-info p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   EXCHANGE
===================================================== */

.exchange-section {

    padding: 100px 0;

    background:

        linear-gradient(
            120deg,
            var(--green-dark),
            var(--green),
            var(--blue)
        );

    color: white;

    position: relative;

    overflow: hidden;
}

.exchange-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -200px;

    top: -250px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.07);
}

.exchange-header {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 0.7fr;

    align-items: end;

    gap: 60px;

    margin-bottom: 50px;
}

.section-label.light {

    color: #bdf4cf;
}

.exchange-header h2 {

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        35px,
        4vw,
        52px
    );

    line-height: 1.1;
}

.exchange-header h2 span {

    color: #a6f2bf;
}

.exchange-header > p {

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

    line-height: 1.8;
}

.exchange-grid {

    position: relative;

    z-index: 2;

    display: grid;

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

    gap: 22px;
}

.exchange-card {

    padding: 35px;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.1);

    border:
        1px solid rgba(255,255,255,0.17);

    backdrop-filter: blur(10px);

    transition: 0.3s;
}

.exchange-card:hover {

    transform:
        translateY(-7px);

    background:
        rgba(255,255,255,0.15);
}

.bag-icon {

    width: 65px;

    height: 65px;

    display: grid;

    place-items: center;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.14);

    font-size: 26px;

    margin-bottom: 25px;
}

.exchange-card h3 {

    font-family: "Poppins", sans-serif;

    font-size: 23px;

    margin-bottom: 10px;
}

.exchange-card p {

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

    line-height: 1.7;

    font-size: 14px;

    margin-bottom: 20px;
}

.eco-tag {

    display: inline-block;

    padding: 5px 10px;

    border-radius: 50px;

    background:
        rgba(255,255,255,0.13);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.exchange-bottom {

    position: relative;

    z-index: 2;

    margin-top: 30px;
}

.exchange-message {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px 25px;

    background:
        rgba(255,255,255,0.1);

    border-radius: 15px;
}

.exchange-message > i {

    font-size: 25px;

    color: #bdf4cf;
}

.exchange-message strong {

    display: block;

    font-size: 15px;
}

.exchange-message p {

    margin-top: 3px;

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

    font-size: 12px;
}


/* =====================================================
   WHY
===================================================== */

.why-section {

    background: #f7faf8;
}

.why-grid {

    display: grid;

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

    gap: 20px;
}

.why-item {

    padding: 30px;

    background: white;

    border-radius: 18px;

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

    text-align: center;

    transition: 0.3s;
}

.why-item:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);
}

.why-item > div {

    width: 65px;

    height: 65px;

    display: grid;

    place-items: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--green-light);

    color: var(--green);

    font-size: 23px;
}

.why-item h3 {

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    margin-bottom: 8px;
}

.why-item p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


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

.cta-section {

    padding: 75px 0;

    background:
        var(--blue-dark);

    color: white;
}

.cta-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}

.cta-container > div > span {

    color: #77df98;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.cta-container h2 {

    font-family: "Poppins", sans-serif;

    font-size: 42px;

    line-height: 1.15;

    margin: 12px 0;
}

.cta-container h2 strong {

    color: #78e39b;
}

.cta-container p {

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

    font-size: 14px;
}

.btn-white {

    background: white;

    color: var(--blue);

    white-space: nowrap;
}

.btn-white:hover {

    background: var(--green);

    color: white;

    transform: translateY(-3px);
}


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

.contact-section {

    padding: 100px 0;

    background: white;
}

.contact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.contact-content h2 {

    margin-bottom: 20px;
}

.contact-content > p {

    max-width: 500px;

    color: var(--muted);

    line-height: 1.8;
}

.address-card {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-top: 30px;

    padding: 22px;

    max-width: 500px;

    background: #f5faf7;

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

    border-radius: 18px;
}

.address-icon {

    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    background: var(--green);

    color: white;

    border-radius: 14px;
}

.address-card strong {

    display: block;

    margin-bottom: 5px;
}

.address-card p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.location-visual {

    min-height: 400px;

    border-radius: 30px;

    background:

        linear-gradient(
            rgba(3,61,101,0.72),
            rgba(21,148,71,0.72)
        ),

        url(
            "https://images.unsplash.com/photo-1473445361085-b9a07f55608b?auto=format&fit=crop&w=1200&q=85"
        );

    background-size: cover;

    background-position: center;

    display: grid;

    place-items: center;

    padding: 30px;
}

.map-card {

    padding: 35px;

    text-align: center;

    background:
        rgba(255,255,255,0.95);

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.15);

    color: var(--blue);
}

.map-card i {

    display: block;

    font-size: 38px;

    color: var(--green);

    margin-bottom: 15px;
}

.map-card span {

    display: block;

    font-family: "Poppins", sans-serif;

    font-weight: 800;
}

.map-card small {

    display: block;

    color: var(--muted);

    margin-top: 6px;
}


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

.footer {

    background: #071c28;

    color: white;

    padding-top: 65px;
}

.footer-grid {

    display: grid;

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

    gap: 50px;

    padding-bottom: 55px;
}

.footer-logo img {

    width: 65px;

    height: 65px;

    object-fit: contain;

    margin-bottom: 15px;

    background: white;

    border-radius: 12px;

    padding: 5px;
}

.footer-brand h3 {

    font-family: "Poppins", sans-serif;

    font-size: 20px;
}

.footer-brand p {

    color: #7ce6a0;

    font-size: 11px;

    font-weight: 700;

    margin: 5px 0 15px;
}

.footer-brand > span {

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

    font-size: 12px;
}

.footer-links h4,
.footer-address h4 {

    color: white;

    margin-bottom: 20px;

    font-size: 14px;
}

.footer-links a {

    display: block;

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

    font-size: 12px;

    margin-bottom: 11px;

    transition: 0.3s;
}

.footer-links a:hover {

    color: #7ce6a0;

    transform: translateX(4px);
}

.footer-address p {

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

    font-size: 12px;

    line-height: 1.8;
}

.footer-address i {

    color: #7ce6a0;

    margin-right: 7px;
}

.footer-bottom {

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

    padding: 18px 0;
}

.footer-bottom .container {

    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {

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

    font-size: 10px;
}


/* =====================================================
   SCROLL BUTTON
===================================================== */

.scroll-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border: none;

    border-radius: 50%;

    background: var(--green);

    color: white;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: 0.3s;

    z-index: 500;
}

.scroll-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


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

@media (max-width: 1000px) {

    .nav-links {

        gap: 15px;
    }

    .nav-button {

        display: none;
    }

    .hero-content {

        grid-template-columns: 1fr;

        gap: 50px;

        padding-top: 50px;

        padding-bottom: 70px;
    }

    .hero {

        min-height: auto;
    }

    .hero-card {

        max-width: 500px;
    }

    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image img {

        height: 400px;
    }

    .why-grid {

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

    .footer-grid {

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

}


@media (max-width: 760px) {

    .navbar {

        height: 72px;
    }

    .logo {

        width: 45px;

        height: 45px;
    }

    .brand-text strong {

        font-size: 19px;
    }

    .menu-toggle {

        display: block;

        margin-left: auto;
    }

    .nav-links {

        position: absolute;

        top: 72px;

        left: 0;

        width: 100%;

        background: white;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        max-height: 0;

        overflow: hidden;

        box-shadow:
            0 20px 30px rgba(0,0,0,0.08);

        transition: 0.35s;
    }

    .nav-links.active {

        max-height: 450px;
    }

    .nav-links li {

        border-bottom:
            1px solid var(--border);
    }

    .nav-links a {

        display: block;

        padding: 17px 25px;
    }

    .hero {

        padding-top: 72px;
    }

    .hero h1 {

        font-size: 47px;

        letter-spacing: -2px;
    }

    .hero-text > p {

        font-size: 15px;
    }

    .hero-card {

        padding: 30px;
    }

    .intro-grid {

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

    .intro-item {

        border-bottom:
            1px solid var(--border);
    }

    .section {

        padding: 80px 0;
    }

    .section-heading {

        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }

    .service-grid,
    .product-grid,
    .exchange-grid {

        grid-template-columns: 1fr;
    }

    .about-image img {

        height: 320px;
    }

    .about-badge {

        width: 110px;

        height: 110px;

        right: 15px;

        bottom: 20px;
    }

    .about-content h2,
    .section-heading h2,
    .center-heading h2 {

        font-size: 36px;
    }

    .exchange-header {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .why-grid {

        grid-template-columns: 1fr;
    }

    .cta-container {

        flex-direction: column;

        align-items: flex-start;
    }

    .cta-container h2 {

        font-size: 34px;
    }

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .location-visual {

        min-height: 320px;
    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom .container {

        flex-direction: column;
    }

}


@media (max-width: 480px) {

    .container {

        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .hero h1 {

        font-size: 40px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .btn {

        width: 100%;
    }

    .intro-grid {

        grid-template-columns: 1fr;
    }

    .intro-item {

        border-right: none;
    }

    .hero-card {

        padding: 25px;
    }

}