/* =========================================================
   CARE PLAN HOME CARE SERVICES
   COMPLETE WEBSITE STYLES
   ========================================================= */

:root {
    --navy: #0b2d4d;
    --blue: #1267a5;
    --light-blue: #eaf6fc;
    --sky: #dff2fb;
    --white: #ffffff;
    --text: #193247;
    --muted: #607485;
    --border: #dce8ef;
    --soft: #f7fbfd;
    --shadow: 0 15px 40px rgba(11, 45, 77, 0.08);
    --radius: 18px;
    --container: 1180px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   GENERAL
   ========================================================= */

.container {
    width: 92%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
}

/* =========================================================
   TOP COMPANY BAR
   ========================================================= */

.company-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.company-bar-content {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* LOGO */

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-main {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.logo-sub {
    color: var(--blue);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 6px;
    white-space: nowrap;
}

/* =========================================================
   NAVIGATION BAR
   ========================================================= */

.navigation-bar {
    background: var(--soft);
    border-bottom: 1px solid var(--border);
}

.navigation-content {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--blue);
}

/* =========================================================
   PHONE CONTACT
   ========================================================= */

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    white-space: nowrap;
}

.header-phone-label {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-phone a {
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.header-phone a:hover {
    color: var(--blue);
}

.header-phone a + a::before {
    content: "|";
    color: var(--border);
    margin-right: 12px;
}

/* =========================================================
   REQUEST CARE BUTTON
   ========================================================= */

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 9px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
    transition: 0.2s ease;
}

.header-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(18, 103, 165, 0.22);
}

/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: 0.25s ease;
}

/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 4%;
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 700;
    border-bottom: 1px solid #edf3f6;
}

.mobile-nav a:hover {
    color: var(--blue);
}

/* MOBILE PHONE */

.mobile-phone-contact {
    padding: 14px 0;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-phone-title {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.mobile-phone-contact a {
    border-bottom: none !important;
    padding: 3px 0 !important;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 800;
}

/* MOBILE REQUEST BUTTON */

.mobile-request-button {
    margin-top: 10px;
    padding: 13px 18px !important;
    background: var(--blue);
    color: var(--white) !important;
    border-radius: 10px;
    text-align: center;
    border: none !important;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(18, 103, 165, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f9fdff 0%,
            #eaf6fc 100%
        );
    padding: 90px 0 80px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(18, 103, 165, 0.06);
    top: -180px;
    right: -100px;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid #cfe5f0;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 22px;
}

.hero h1 {
    color: var(--navy);
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -2px;
    max-width: 780px;
}

.hero h1 span {
    color: var(--blue);
}

.hero-text > p {
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 25px 0 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    font-weight: 800;
    transition: 0.2s ease;
}

.primary-button {
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(18, 103, 165, 0.22);
}

.secondary-button {
    background: var(--white);
    color: var(--navy);
    border: 1px solid #bcd4e1;
}

.secondary-button:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 45px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    color: var(--navy);
    font-size: 0.9rem;
}

.hero-trust span {
    color: var(--muted);
    font-size: 0.8rem;
}

.hero-card {
    position: relative;
    background: var(--white);
    border-radius: 26px;
    padding: 45px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(18, 103, 165, 0.10);
}

.hero-card-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--light-blue);
    color: var(--blue);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.hero-card h2 {
    color: var(--navy);
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-card p {
    color: var(--muted);
    margin-bottom: 25px;
}

.card-link {
    display: inline-block;
    color: var(--blue);
    font-weight: 800;
    transition: color 0.2s ease, transform 0.2s ease;
}

.card-link:hover {
    color: var(--navy);
    transform: translateX(2px);
}

/* =========================================================
   ANDROID APP DOWNLOAD BUTTON
   ========================================================= */

.app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 18px;
    padding: 11px 17px;

    background: var(--white);
    color: var(--navy);

    border: 1px solid #bcd4e1;
    border-radius: 10px;

    font-size: 0.84rem;
    font-weight: 800;

    box-shadow: 0 5px 15px rgba(11, 45, 77, 0.06);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.app-download-link:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(18, 103, 165, 0.18);
}

.app-download-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background: var(--white);
}

/* SERVICE CATEGORY */

.service-category {
    margin-bottom: 60px;
}

.service-category:last-of-type {
    margin-bottom: 0;
}

.service-category-heading {
    margin-bottom: 25px;
}

.service-category-heading .section-label {
    margin-bottom: 10px;
}

.service-category-heading h3 {
    color: var(--navy);
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.service-category-heading p {
    color: var(--muted);
    max-width: 720px;
    font-size: 0.95rem;
}

/* SERVICES GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #bfdce9;
}

.service-number {
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.service-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

/* =========================================================
   PRICE LIST
   ========================================================= */

.price-list {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.price-row span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.price-row strong {
    color: var(--navy);
    font-size: 0.95rem;
    white-space: nowrap;
}

/* =========================================================
   SINGLE SERVICE PRICE
   ========================================================= */

.service-price {
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.35;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.service-price span {
    color: var(--blue);
    font-size: 0.86rem;
    font-weight: 800;
}

.price-note {
    margin-top: 10px;
    margin-bottom: 0 !important;
    font-size: 0.78rem !important;
    line-height: 1.5;
}

/* =========================================================
   SERVICE CARD LINKS
   ========================================================= */

.service-card .card-link {
    margin-top: 20px;
}

/* =========================================================
   ADDITIONAL SUPPORT
   ========================================================= */

.secondary-services {
    margin-top: 10px;
}

.secondary-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* =========================================================
   SERVICE NOTE
   ========================================================= */

.services-note {
    margin-top: 28px;
    padding: 22px 24px;
    background: var(--light-blue);
    border: 1px solid #cfe5f0;
    border-radius: 14px;
    color: var(--text);
    font-size: 0.9rem;
}

.services-note strong {
    display: block;
    color: var(--navy);
    margin-bottom: 5px;
}

.services-note p {
    color: var(--muted);
    margin-bottom: 16px;
    max-width: 850px;
}

.services-note .primary-button {
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.88rem;
}

/* =========================================================
   WHY CARE PLAN
   ========================================================= */

.why-section {
    background: var(--light-blue);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.why-text h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 25px;
}

.why-text > p {
    color: var(--muted);
    margin-bottom: 18px;
}

.benefits {
    margin-top: 35px;
    display: grid;
    gap: 20px;
}

.benefit {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit > span {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
}

.benefit strong {
    color: var(--navy);
}

.benefit p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 3px;
}

.why-card {
    min-height: 420px;
    padding: 50px;
    border-radius: 30px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow);
}

.why-card-top {
    color: #9fd9f2;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.why-card h3 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.why-card p {
    color: #c8d9e5;
    margin-top: 30px;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--blue);
    font-size: 1.2rem;
    font-weight: 900;
}

.process-step h3 {
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* =========================================================
   SERVICE AREA
   ========================================================= */

.area-section {
    background: var(--navy);
    padding: 70px 0;
}

.area-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.area-content .section-label {
    color: #9fd9f2;
}

.area-content h2 {
    color: var(--white);
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 12px;
}

.area-content p {
    color: #c8d9e5;
    max-width: 650px;
}

.area-content .primary-button {
    background: var(--white);
    color: var(--navy);
    flex-shrink: 0;
}

/* =========================================================
   REQUEST FORM
   ========================================================= */

.request-section {
    background: var(--soft);
}

.request-content {
    max-width: 900px;
}

.care-form {
    background: var(--white);
    padding: 40px;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #cddde6;
    border-radius: 10px;
    padding: 14px 15px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8a9aa6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(18, 103, 165, 0.10);
}

.form-button {
    width: fit-content;
}

.form-note {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: -10px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #071f35;
    color: var(--white);
}

.footer-content {
    padding: 65px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand .logo-main {
    color: var(--white);
}

.footer-brand .logo-sub {
    color: #9fd9f2;
}

.footer-brand > p {
    color: #b8cad6;
    max-width: 350px;
    margin-top: 18px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
    color: #b8cad6;
    font-size: 0.88rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom .container {
    padding: 20px 0;
}

.footer-bottom p {
    color: #91a9b8;
    font-size: 0.78rem;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 0;
    height: 46px;
    padding: 0 16px;

    background: #25d366;
    color: #ffffff;

    border-radius: 24px;

    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.25);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;
    flex-shrink: 0;

    background: #ffffff;
    color: #25d366;

    border-radius: 50%;

    font-size: 16px;
    font-weight: 900;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .navigation-content {
        gap: 18px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 0.82rem;
    }

    .header-phone {
        gap: 7px;
    }

    .header-phone-label {
        display: none;
    }

    .header-phone a {
        font-size: 0.69rem;
    }

    .header-phone a + a::before {
        margin-right: 7px;
    }

    .header-button {
        padding: 0 14px;
    }

    .hero-content {
        gap: 45px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .secondary-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-content {
        gap: 45px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .section {
        padding: 75px 0;
    }

    /* TOP COMPANY BAR */

    .company-bar-content {
        min-height: 72px;
        justify-content: space-between;
    }

    .logo-main {
        font-size: 1.25rem;
    }

    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 1.7px;
    }

    /* HIDE DESKTOP NAVIGATION BAR */

    .navigation-bar {
        display: none;
    }

    /* SHOW HAMBURGER */

    .mobile-menu-button {
        display: flex;
    }

    /* HAMBURGER ACTIVE STATE */

    .mobile-menu-button.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* SHOW MOBILE NAV */

    .mobile-nav.active {
        display: block;
    }

    /* HERO */

    .hero {
        padding: 65px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 35px;
    }

    /* ANDROID APP BUTTON */

    .app-download-link {
        width: fit-content;
        max-width: 100%;
        font-size: 0.82rem;
        padding: 11px 15px;
    }

    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .secondary-services .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-category {
        margin-bottom: 50px;
    }

    .service-category-heading h3 {
        font-size: 1.45rem;
    }

    /* WHY */

    .why-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    /* AREA */

    .area-content {
        flex-direction: column;
        align-items: flex-start;
    }

    /* FORM */

    .care-form {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .form-note {
        grid-column: auto;
    }

    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-trust {
        gap: 18px;
    }

    .services-grid,
    .secondary-services .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-category-heading h3 {
        font-size: 1.35rem;
    }

    .service-card {
        padding: 25px;
    }

    .price-row {
        align-items: flex-start;
    }

    .price-row strong {
        text-align: right;
    }

    .services-note {
        padding: 20px;
    }

    .why-card {
        min-height: 350px;
        padding: 35px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    /* ANDROID APP BUTTON */

    .app-download-link {
        display: inline-flex;
        width: auto;
        max-width: 100%;
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    /* WHATSAPP */

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 48px;
        height: 48px;
        padding: 0;
        border-radius: 50%;
    }

    .floating-whatsapp > span:last-child {
        display: none;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}