:root {
    --primary: #105461;
    --secondary: #7DB467;
    --accent: #3585C6;
    --accent-dark: #599741;
    --highlight: #8DCACD;
    --orange: #7DB467;

    --bg: #FCFCFA;
    --section: #F4FBF9;
    --white: #FFFFFF;

    --text: #2F3A3D;
    --gray: #6B7280;
    --muted: #555555;

    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 16px;

    --container-padding: 8%;
    --transition: 0.3s ease;
}



/* ========================================
   RESET / GLOBAL
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* ========================================
   HEADER / NAVIGATION
======================================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 var(--container-padding);

    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.logo img {
    height: 110px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a,
.dropbtn {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    transition: color var(--transition);
}

nav a:hover,
.dropbtn:hover {
    color: var(--accent);
}


/* ========================================
   DROPDOWN
======================================== */

.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 10px 0;

    background: none;
    border: 0;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;

    min-width: 240px;

    background: var(--white);
    border-radius: 10px;
    overflow: hidden;

    box-shadow: var(--shadow-lg);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.dropdown-content a {
    display: block;
    padding: 13px 20px;

    color: var(--text);
    font-size: 15px;

    transition:
        background var(--transition),
        color var(--transition);
}

.dropdown-content a:hover {
    background: var(--section);
    color: var(--primary);
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ========================================
   HERO
======================================== */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    padding: 90px var(--container-padding);

    background: linear-gradient(
        135deg,
        #f7fbfd,
        #eaf6ff
    );

    flex-wrap: wrap;
}

.hero > * {
    flex: 1 1 400px;
}

.hero h1 {
    color: var(--primary);
    font-size: clamp(38px, 5vw, 54px);
    line-height: 1.2;
    font-weight: 700;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    max-width: 650px;
    margin: 20px 0;

    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero img.heroimg {
    width: 100%;
    max-width: 520px;
    margin-left: auto;

    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* ========================================
   BUTTON
======================================== */

.btn {
    display: inline-block;

    padding: 14px 32px;

    color: var(--white);
    font-weight: 600;

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    border-radius: var(--radius-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 92, 104, 0.2);
}


/* ========================================
   SECTIONS
======================================== */

section {
    padding: 80px var(--container-padding);
}

h2 {
    margin-bottom: 15px;

    color: var(--primary);
    text-align: center;
    font-size: 36px;
    line-height: 1.3;
}

h2::after {
    content: "";

    display: block;

    width: 80px;
    height: 4px;

    margin: 15px auto;

    background: var(--accent);
    border-radius: 4px;
}


/* ========================================
   SECTION SUBTITLE
======================================== */

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 50px;

    color: var(--gray);
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
}


/* ========================================
   GRID
======================================== */

.grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(240px, 1fr)
    );

    gap: 25px;
    margin-top: 40px;
}


/* ========================================
   CARD
======================================== */

.card {
    padding: 30px;

    background: var(--white);

    border-top: 5px solid var(--accent);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-md);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.card p {
    color: var(--gray);
    line-height: 1.7;
}


/* ========================================
   ABOUT
======================================== */

.about p {
    max-width: 900px;
    margin: 0 auto;

    color: var(--gray);
    text-align: center;
    line-height: 1.8;
}


/* ========================================
   WHY CHOOSE US
======================================== */

.why-us {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(280px, 1fr)
    );

    gap: 30px;
}

.why-card {
    padding: 30px;

    background: var(--white);

    border-top: 5px solid var(--accent);
    border-radius: 15px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(22, 92, 104, 0.08);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(22, 92, 104, 0.15);
}

.why-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    color: var(--white);
    font-size: 30px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border-radius: 50%;
}

.why-card h3 {
    margin-bottom: 15px;

    color: var(--primary);
    font-size: 20px;
}

.why-card p {
    color: var(--gray);
    line-height: 1.7;
}


/* ========================================
   CONTACT
======================================== */

.contact {
    color: var(--white);
    text-align: center;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}

.contact h2 {
    color: var(--white);
}

.contact .btn {
    background: var(--accent);
}

.contact .btn:hover {
    background: var(--accent-dark);
}


/* ========================================
   FOOTER
======================================== */

footer {
    padding: 30px var(--container-padding);

    color: var(--white);
    text-align: center;

    background: var(--primary);
}

footer img {
    width: auto;
    height: 42px;
    margin: 0 auto 10px;
}


/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    color: var(--white);
    font-size: 28px;

    background: #25D366;
    border-radius: 50%;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 992px) {

    header {
        padding: 0 5%;
    }

    nav {
        gap: 20px;
    }

    .hero {
        padding: 70px 5%;
        gap: 35px;
    }

    section {
        padding: 70px 5%;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    header {
        position: relative;

        flex-direction: column;
        gap: 10px;

        padding: 10px 5% 15px;
    }

    .logo img {
        height: 80px;
    }

    nav {
        width: 100%;

        justify-content: center;
        flex-wrap: wrap;

        gap: 15px 20px;
    }

    nav a,
    .dropbtn {
        font-size: 14px;
    }

    .dropdown-content {
        left: 50%;
        transform: translate(-50%, 10px);
    }

    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        transform: translate(-50%, 0);
    }

    .hero {
        padding: 60px 5%;
        text-align: center;
    }

    .hero > * {
        flex: 1 1 100%;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .hero img.heroimg {
        margin: 20px auto 0;
        max-width: 450px;
    }

    section {
        padding: 60px 5%;
    }

    h2 {
        font-size: 30px;
    }

    .section-subtitle {
        margin-bottom: 35px;
        font-size: 15px;
    }

    .grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .why-card {
        padding: 25px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .logo img {
        height: 70px;
    }

    nav {
        gap: 10px 15px;
    }

    nav a,
    .dropbtn {
        font-size: 13px;
    }

    .hero {
        padding: 45px 5%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 13px 20px;
    }

    h2 {
        font-size: 27px;
    }

    .whatsapp {
        right: 15px;
        bottom: 15px;

        width: 52px;
        height: 52px;

        font-size: 24px;
    }
}


/* ========================================
   ACCESSIBILITY
======================================== */

:focus-visible {
    outline: 3px solid var(--highlight);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* ========================================
   HOMEPAGE ABOUT
======================================== */

.about-home {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.about-home::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;

    width: 300px;
    height: 300px;

    background: rgba(124, 196, 155, 0.12);
    border-radius: 50%;
}

.about-home-inner {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;

    max-width: 1400px;
    margin: 0 auto;
}

.about-home-content {
    max-width: 650px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-tag::before {
    content: "";

    width: 35px;
    height: 3px;

    background: var(--accent);
    border-radius: 5px;
}

.about-home h2 {
    margin-bottom: 25px;

    text-align: left;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
}

.about-home h2::after {
    display: none;
}

.about-home h2 span {
    color: var(--accent);
}

.about-home-content p {
    margin-bottom: 18px;

    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

.about-home-content .about-intro {
    color: var(--text);
    font-size: 18px;
    line-height: 1.8;
}


/* Features */

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 15px;

    background: var(--section);
    border-radius: 10px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 28px;
    height: 28px;

    color: var(--white);
    font-size: 14px;
    font-weight: 700;

    background: var(--primary);
    border-radius: 50%;
}

.about-feature strong {
    display: block;

    margin-bottom: 3px;

    color: var(--primary);
    font-size: 13px;
}

.about-feature span {
    display: block;

    color: var(--gray);
    font-size: 11px;
    line-height: 1.4;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.about-btn span {
    font-size: 20px;
    transition: transform var(--transition);
}

.about-btn:hover span {
    transform: translateX(5px);
}


/* Image */

.about-home-visual {
    position: relative;

    min-height: 520px;
}

.about-image-wrapper {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 2;

    width: 85%;
    height: 480px;

    overflow: hidden;

    border-radius: 25px;

    box-shadow: 0 25px 60px rgba(22, 92, 104, 0.18);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}


/* Badge */

.about-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;

    padding: 18px 22px;

    color: var(--white);

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border-radius: 12px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.about-badge strong {
    font-size: 20px;
}

.about-badge span {
    font-size: 12px;
    opacity: 0.9;
}


/* Decorative Pattern */

.about-pattern {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 70%;
    height: 70%;

    border: 3px solid var(--accent);
    border-radius: 25px;

    opacity: 0.35;
}


/* Responsive */

@media (max-width: 992px) {

    .about-home-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-home-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .section-tag {
        justify-content: center;
    }

    .about-home h2 {
        text-align: center;
    }

    .about-home-visual {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }
}


@media (max-width: 768px) {

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature {
        text-align: left;
    }

    .about-home-visual {
        min-height: 400px;
    }

    .about-image-wrapper {
        right: 10px;

        width: 90%;
        height: 370px;
    }

    .about-pattern {
        width: 80%;
        height: 75%;
    }
}


@media (max-width: 480px) {

    .about-home-visual {
        min-height: 350px;
    }

    .about-image-wrapper {
        width: 92%;
        height: 320px;
    }

    .about-badge {
        left: 15px;
        bottom: 15px;
        padding: 14px 16px;
    }
}

/* ========================================
   ABOUT PAGE HERO
======================================== */

.about-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 480px;

    padding: 80px 8%;

    background:
        linear-gradient(
            90deg,
            rgba(22, 92, 104, 0.94),
            rgba(22, 92, 104, 0.65)
        ),
        url("../images/about-hero.jpg") center / cover no-repeat;

    color: var(--white);
}

.about-hero-content {
    max-width: 750px;
}

.about-hero .section-tag {
    color: var(--highlight);
}

.about-hero h1 {
    margin: 15px 0 20px;

    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.15;
}

.about-hero h1 span {
    display: block;
    color: var(--accent);
}

.about-hero p {
    max-width: 650px;

    font-size: 18px;
    line-height: 1.8;

    opacity: 0.95;
}


/* ========================================
   STORY
======================================== */

.story-section {
    background: var(--white);
}

.story-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;

    max-width: 1300px;
    margin: 0 auto;
}

.story-image {
    overflow: hidden;

    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(22, 92, 104, 0.15);
}

.story-image img {
    width: 100%;
    min-height: 500px;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.04);
}

.story-content {
    max-width: 650px;
}

.story-content h2,
.approach-content h2 {
    margin-bottom: 25px;

    text-align: left;
    font-size: clamp(34px, 4vw, 48px);
}

.story-content h2::after,
.approach-content h2::after {
    display: none;
}

.story-content h2 span,
.approach-content h2 span {
    color: var(--accent);
}

.story-content p {
    margin-bottom: 18px;

    color: var(--gray);
    line-height: 1.85;
}


/* ========================================
   VALUES
======================================== */

.values-section {
    background: var(--section);
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 50px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 20px;
}

.section-heading h2::after {
    display: none;
}

.section-heading h2 span {
    color: var(--accent);
}

.section-heading p {
    color: var(--gray);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    padding: 35px 25px;

    background: var(--white);

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(22, 92, 104, 0.07);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(22, 92, 104, 0.13);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    color: var(--white);
    font-size: 25px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border-radius: 50%;
}

.value-card h3 {
    margin-bottom: 12px;

    color: var(--primary);
    font-size: 20px;
}

.value-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   APPROACH
======================================== */

.approach-section {
    background: var(--white);
}

.approach-container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 80px;

    max-width: 1300px;
    margin: 0 auto;
}

.approach-content > p {
    max-width: 600px;
    margin-bottom: 30px;

    color: var(--gray);
}

.approach-list {
    display: grid;
    gap: 20px;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.approach-item > span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    color: var(--white);
    font-size: 13px;
    font-weight: 700;

    background: var(--primary);

    border-radius: 50%;
}

.approach-item h3 {
    margin-bottom: 4px;

    color: var(--primary);
}

.approach-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.approach-image {
    overflow: hidden;

    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(22, 92, 104, 0.15);
}

.approach-image img {
    width: 100%;
    min-height: 550px;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.approach-image:hover img {
    transform: scale(1.04);
}


/* ========================================
   CTA
======================================== */

.about-cta {
    position: relative;
    overflow: hidden;

    padding: 90px 8%;

    color: var(--white);
    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
}

.about-cta > div {
    position: relative;
    z-index: 2;

    max-width: 750px;
    margin: auto;
}

.about-cta .section-tag {
    color: var(--highlight);
    justify-content: center;
}

.about-cta h2 {
    margin: 15px 0;

    color: var(--white);
    font-size: clamp(34px, 4vw, 48px);
}

.about-cta h2::after {
    display: none;
}

.about-cta h2 span {
    color: var(--accent);
}

.about-cta p {
    max-width: 650px;
    margin: 0 auto 30px;

    line-height: 1.8;
}

.about-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: var(--accent);
}

.about-cta .btn:hover {
    background: var(--accent-dark);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1100px) {

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-container,
    .approach-container {
        gap: 50px;
    }
}


@media (max-width: 900px) {

    .story-container,
    .approach-container {
        grid-template-columns: 1fr;
    }

    .story-content,
    .approach-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .story-content h2,
    .approach-content h2 {
        text-align: center;
    }

    .story-image {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .approach-image {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }
}


@media (max-width: 600px) {

    .about-hero {
        min-height: 420px;
        padding: 60px 5%;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-image img,
    .approach-image img {
        min-height: 380px;
    }

    .about-cta {
        padding: 70px 5%;
    }
}

/* ========================================
   CONTACT HERO
======================================== */

.contact-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 430px;

    padding: 80px 8%;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(22, 92, 104, 0.95),
            rgba(22, 92, 104, 0.68)
        ),
        url("../images/contact-hero.jpg") center / cover no-repeat;
}

.contact-hero-content {
    max-width: 750px;
}

.contact-hero .section-tag {
    color: var(--highlight);
}

.contact-hero h1 {
    margin: 15px 0 20px;

    font-size: clamp(40px, 6vw, 62px);
    line-height: 1.15;
}

.contact-hero h1 span {
    display: block;
    color: var(--accent);
}

.contact-hero p {
    max-width: 650px;

    font-size: 18px;
    line-height: 1.8;
}


/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
    background: var(--section);
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(450px, 1.15fr);
    gap: 60px;

    width: 100%;
    max-width: 1300px;
    margin: 0 auto;

    align-items: start;
}


/* ========================================
   CONTACT INFORMATION
======================================== */

.contact-info {
    padding-top: 38px;
}

.contact-info h2 {
    margin-bottom: 20px;

    text-align: left;
    font-size: clamp(34px, 4vw, 46px);
}

.contact-info h2::after {
    display: none;
}

.contact-info h2 span {
    color: var(--accent);
}

.contact-intro {
    margin-bottom: 35px;

    color: var(--gray);
    line-height: 1.8;
}


/* Contact Items */

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 25px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 55px;
    height: 55px;

    color: var(--white);
    font-size: 22px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border-radius: 50%;
}

.contact-item span {
    display: block;

    margin-bottom: 3px;

    color: var(--gray);
    font-size: 13px;
}

.contact-item a {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;

    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-item p {
    margin: 0;

    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}


/* ========================================
   TYPEFORM WRAPPER
======================================== */

.contact-form-wrapper {
    width: 100%;
    min-width: 0;

    padding: 40px;

    background: var(--white);

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(16, 84, 97, 0.10);

    overflow: hidden;
}

.form-header {
    margin-bottom: 25px;
}

.form-header .section-tag {
    margin-bottom: 8px;
}

.form-header h2 {
    margin-bottom: 10px;

    text-align: left;
    font-size: 30px;
}

.form-header h2::after {
    display: none;
}

.form-header p {
    margin: 0;

    color: var(--gray);
    font-size: 14px;
}


/* ========================================
   TYPEFORM EMBED
======================================== */

.contact-form-wrapper [data-tf-live] {
    width: 100%;
    height: 650px;

    overflow: hidden;
    position: relative;
}


/* Typeform iframe */

.contact-form-wrapper [data-tf-live] iframe {
    display: block;

    width: 100% !important;
    height: 650px !important;

    max-width: 100%;

    border: 0;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;

        max-width: 800px;
    }

    .contact-info {
        padding-top: 0;
        text-align: center;
    }

    .contact-info h2 {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }
}


@media (max-width: 700px) {

    .contact-hero {
        min-height: 400px;
        padding: 60px 5%;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper [data-tf-live],
    .contact-form-wrapper iframe {
        height: 700px !important;
    }
}


@media (max-width: 480px) {

    .contact-form-wrapper {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .contact-form-wrapper [data-tf-live],
    .contact-form-wrapper iframe {
        height: 720px !important;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .contact-bottom {
        padding: 70px 5%;
    }
}

/* ========================================
   CUSTOM CONTACT FORM
======================================== */

.contact-form-wrapper {
    width: 100%;
    min-width: 0;

    padding: 40px;

    background: var(--white);

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(16, 84, 97, 0.10);
}


/* Form Header */

.form-header {
    margin-bottom: 30px;
}

.form-header .section-tag {
    margin-bottom: 8px;
}

.form-header h2 {
    margin-bottom: 10px;

    text-align: left;
    font-size: 30px;
}

.form-header h2::after {
    display: none;
}

.form-header p {
    margin: 0;

    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}


/* Form Row */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


/* Form Group */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.form-group label span {
    color: #d9534f;
}


/* Inputs */

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 13px 15px;

    color: var(--text);
    font-family: inherit;
    font-size: 14px;

    background: var(--white);

    border: 1px solid #d9e2e4;
    border-radius: 8px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group input,
.form-group select {
    height: 50px;
}

.form-group textarea {
    min-height: 130px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(16, 84, 97, 0.10);
}


/* Phone */

.phone-field {
    display: grid;

    grid-template-columns: 120px 1fr;

    gap: 10px;
}

.phone-field select {
    cursor: pointer;
}


/* Help Text */

.form-help {
    display: block;

    margin-top: 5px;

    color: var(--gray);
    font-size: 11px;
}


/* Validation */

.form-error {
    display: block;

    min-height: 0;

    margin-top: 5px;

    color: #d9534f;
    font-size: 12px;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #d9534f;

    background: #fffafa;
}

.form-group.has-success input,
.form-group.has-success textarea,
.form-group.has-success select {
    border-color: #7DB467;
}


/* ========================================
   CONSENT
======================================== */

.form-consent {
    margin: 5px 0 22px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: var(--gray);
    font-size: 12px;
    line-height: 1.5;

    cursor: pointer;
}

.form-consent input {
    width: 16px;
    height: 16px;

    margin-top: 1px;

    flex-shrink: 0;

    accent-color: var(--primary);

    cursor: pointer;
}


/* ========================================
   HONEYPOT
======================================== */

.form-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;

    white-space: nowrap !important;

    border: 0 !important;
}


/* ========================================
   SUBMIT BUTTON
======================================== */

.submit-btn {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    min-height: 52px;

    padding: 14px 20px;

    color: var(--white);

    background: var(--primary);

    border: 0;
    border-radius: 8px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.submit-btn:hover {
    background: var(--primary-dark, #0D4A56);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(16, 84, 97, 0.18);
}

.submit-btn:disabled {
    opacity: 0.7;

    cursor: not-allowed;

    transform: none;
}

.btn-arrow {
    font-size: 20px;

    transition: transform 0.25s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}


/* Loader */

.btn-loader {
    display: none;

    width: 18px;
    height: 18px;

    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: var(--white);

    border-radius: 50%;

    animation: formLoader 0.7s linear infinite;
}

.submit-btn.loading .btn-loader {
    display: block;
}

.submit-btn.loading .btn-arrow {
    display: none;
}

.submit-btn.loading .btn-text {
    opacity: 0.9;
}

@keyframes formLoader {
    to {
        transform: rotate(360deg);
    }
}


/* ========================================
   FORM MESSAGE
======================================== */

.form-message {
    display: none;

    margin-top: 18px;

    padding: 13px 15px;

    border-radius: 8px;

    font-size: 13px;
    line-height: 1.5;
}

.form-message.success {
    display: block;

    color: #166534;

    background: #dcfce7;

    border: 1px solid #bbf7d0;
}

.form-message.error {
    display: block;

    color: #991b1b;

    background: #fee2e2;

    border: 1px solid #fecaca;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 700px) {

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }
}


@media (max-width: 480px) {

    .contact-form-wrapper {
        padding: 25px 15px;

        border-radius: 15px;
    }

    .phone-field {
        grid-template-columns: 105px 1fr;
    }
}

 /* ========================================
    HOMEPAGE SERVICES
 ======================================== */

.services-home {
    background: var(--section);
}

.services-heading {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.services-heading h2 {
    margin-bottom: 18px;
}

.services-heading h2::after {
    display: none;
}

.services-heading h2 span {
    display: block;
    color: var(--accent);
}

.services-heading > p {
    color: var(--gray);
    line-height: 1.8;
}


.services-home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    max-width: 1100px;
    margin: 0 auto;
}


.service-card {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 25px;

    padding: 35px;

    background: var(--white);

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(22, 92, 104, 0.07);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(22, 92, 104, 0.13);
}


.service-card.featured {
    border-top: 5px solid var(--accent);
}


.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 70px;
    height: 70px;

    font-size: 32px;

    background: var(--section);

    border-radius: 18px;
}


.service-label {
    display: block;

    margin-bottom: 5px;

    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.service-content h3 {
    margin-bottom: 10px;

    color: var(--primary);
    font-size: 24px;
}


.service-content p {
    margin-bottom: 15px;

    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}


.service-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);
    font-size: 14px;
    font-weight: 600;

    transition: color var(--transition);
}


.service-content a span {
    transition: transform var(--transition);
}


.service-content a:hover {
    color: var(--accent);
}


.service-content a:hover span {
    transform: translateX(5px);
}


.services-home-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    margin-top: 40px;

    text-align: center;
}


.services-home-bottom p {
    color: var(--gray);
    font-size: 15px;
}


.services-home-bottom .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


@media (max-width: 768px) {

    .services-home-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px;
    }

    .services-home-bottom {
        flex-direction: column;
        gap: 12px;
    }
}


@media (max-width: 480px) {

    .service-card {
        flex-direction: column;
        padding: 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .service-content h3 {
        font-size: 21px;
    }
}

/* ========================================
   SERVICE PAGE HERO
======================================== */

.service-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 560px;

    padding: 90px 8%;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(22, 92, 104, 0.96),
            rgba(22, 92, 104, 0.65)
        ),
        url("../images/cleaning-hero.jpg")
        center / cover no-repeat;
}

.linen-hero {
    background:
        linear-gradient(
            90deg,
            rgba(22, 92, 104, 0.96),
            rgba(22, 92, 104, 0.62)
        ),
        url("../images/linen-hero.jpg")
        center / cover no-repeat;
}

.service-hero-content {
    max-width: 800px;
}

.service-hero .section-tag {
    color: var(--highlight);
}

.service-hero h1 {
    margin: 15px 0 20px;

    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.12;
}

.service-hero h1 span {
    display: block;
    color: var(--accent);
}

.service-hero p {
    max-width: 700px;

    margin-bottom: 30px;

    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}


/* ========================================
   INTRO
======================================== */

.service-intro {
    background: var(--white);
}

.service-intro > div {
    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}

.service-intro h2 {
    margin-bottom: 25px;
}

.service-intro h2::after {
    display: none;
}

.service-intro h2 span {
    color: var(--accent);
}

.service-intro p {
    margin-bottom: 18px;

    color: var(--gray);
    line-height: 1.85;
}


/* ========================================
   SECTION HEADING
======================================== */

.service-options {
    background: var(--section);
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 50px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading h2::after {
    display: none;
}

.section-heading h2 span {
    color: var(--accent);
}

.section-heading p {
    color: var(--gray);
    line-height: 1.7;
}


/* ========================================
   SERVICE CARDS
======================================== */

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    max-width: 1200px;
    margin: 0 auto;
}

.large-service-card {
    position: relative;

    padding: 35px;

    background: var(--white);

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(22, 92, 104, 0.06);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.large-service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 40px rgba(22, 92, 104, 0.12);
}

.large-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin-bottom: 20px;

    font-size: 30px;

    background: var(--section);

    border-radius: 16px;
}

.large-service-card h3 {
    margin-bottom: 12px;

    color: var(--primary);
    font-size: 23px;
}

.large-service-card > p {
    margin-bottom: 18px;

    color: var(--gray);
    font-size: 14px;
    line-height: 1.75;
}

.large-service-card ul {
    padding: 0;

    list-style: none;
}

.large-service-card li {
    position: relative;

    margin-bottom: 8px;
    padding-left: 22px;

    color: var(--text);
    font-size: 13px;
}

.large-service-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--accent);
    font-weight: 700;
}


/* ========================================
   BENEFITS
======================================== */

.service-benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid > div {
    padding: 25px;

    border-left: 3px solid var(--accent);
}

.benefits-grid strong {
    color: var(--accent);
    font-size: 13px;
}

.benefits-grid h3 {
    margin: 8px 0;

    color: var(--primary);
}

.benefits-grid p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
}


/* ========================================
   CTA
======================================== */

.service-cta {
    padding: 90px 8%;

    color: var(--white);
    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
}

.service-cta .section-tag {
    color: var(--highlight);
    justify-content: center;
}

.service-cta h2 {
    margin: 15px 0;

    color: var(--white);
    font-size: clamp(34px, 4vw, 48px);
}

.service-cta h2::after {
    display: none;
}

.service-cta h2 span {
    color: var(--accent);
}

.service-cta p {
    max-width: 650px;

    margin: 0 auto 30px;

    line-height: 1.8;
}

.service-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: var(--accent);
}

.service-cta .btn:hover {
    background: var(--accent-dark);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .service-cards {
        grid-template-columns: 1fr;
        max-width: 750px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .service-hero {
        min-height: 480px;
        padding: 70px 5%;
    }

    .service-hero h1 {
        font-size: 42px;
    }

    .service-hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .large-service-card {
        padding: 28px;
    }
}


@media (max-width: 500px) {

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-hero h1 {
        font-size: 36px;
    }

    .large-service-card {
        padding: 24px;
    }
}

/* ========================================
   CONTACT FORM MESSAGE
======================================== */

.form-message {
    display: none;
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.form-message.success {
    display: block;
    background: #eaf8f0;
    border: 1px solid #b8e2c8;
    color: #176b3a;
}

.form-message.error {
    display: block;
    background: #fff1f1;
    border: 1px solid #efb5b5;
    color: #b42318;
}

.submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}