@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
    --ink: #172033;
    --ink-soft: #263247;
    --muted: #5f6b7a;
    --muted-light: #8993a2;

    --line: #dbe2ea;
    --line-dark: #c8d1dc;

    --paper: #f7faf7;
    --white: #ffffff;

    --teal: #0b6b62;
    --teal-dark: #084b47;
    --teal-soft: #eaf7f5;

    --amber: #e7a72e;
    --amber-light: #f3c669;
    --amber-soft: #fff7df;

    --coral: #d95d39;
    --coral-dark: #bd4b2d;
    --coral-soft: #fff0eb;

    --leaf: #6a8f3f;
    --leaf-soft: #f0f7e9;

    --success: #198754;
    --success-soft: #eaf7ef;

    --danger: #dc3545;
    --danger-soft: #fff0f1;

    --warning: #d89b18;
    --warning-soft: #fff8e6;

    --info: #0d6efd;
    --info-soft: #edf4ff;

    --dark: #07101f;

    --shadow-xs:
        0 3px 10px rgba(23, 32, 51, 0.05);

    --shadow-sm:
        0 8px 22px rgba(23, 32, 51, 0.07);

    --shadow:
        0 18px 45px rgba(23, 32, 51, 0.12);

    --shadow-lg:
        0 25px 70px rgba(23, 32, 51, 0.16);

    --shadow-xl:
        0 35px 90px rgba(7, 16, 31, 0.22);

    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    --container: 1180px;
    --container-wide: 1280px;

    --transition-fast:
        0.18s ease;

    --transition:
        0.25s ease;

    --transition-slow:
        0.4s ease;
}

/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;

    background: var(--paper);
    color: var(--ink);

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea {
    font-family: "Manrope", sans-serif;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

p {
    color: var(--muted);
    line-height: 1.75;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

::selection {
    color: var(--white);
    background: var(--teal);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.35rem;
}

h4 {
    font-size: 1.05rem;
}

strong {
    font-weight: 800;
}

small {
    font-size: 0.85rem;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid rgba(231, 167, 46, 0.75);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 10000;

    padding: 10px 16px;

    color: var(--white);
    background: var(--teal-dark);

    border-radius: var(--radius-sm);

    font-weight: 800;

    transition: top var(--transition);
}

.skip-link:focus {
    top: 20px;
}


/* =========================================================
   UTILITIES
   ========================================================= */

.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.no-margin {
    margin: 0 !important;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.muted-note {
    margin-top: 12px;
    color: var(--muted);
}

.status-note {
    margin-bottom: 8px;
    color: var(--muted);
}

.form-margin-top {
    margin-top: 18px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-18 {
    margin-top: 18px;
}

.hr-mt {
    margin-top: 24px;
}


/* =========================================================
   PAGE STATES
   ========================================================= */

.page {
    display: none;
}

.content {
    display: block;
}

.error {
    width: min(350px, calc(100% - 32px));

    margin: 45vh auto 0;
    padding: 24px;

    text-align: center;

    color: #721c24;
    background: #f8d7da;

    border: 1px solid #f5c6cb;
    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);
}

.error i {
    display: block;
    margin-bottom: 12px;

    color: var(--danger);

    font-size: 40px;
}


/* =========================================================
   PRELOADER
   ========================================================= */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(231, 167, 46, 0.2),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(11, 107, 98, 0.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--teal-dark),
            var(--teal) 52%,
            var(--coral)
        );

    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}

.preloader-content {
    width: min(300px, calc(100% - 40px));
    text-align: center;
}

.preloader-content img {
    width: 104px;
    height: 104px;

    margin: 0 auto;

    object-fit: contain;

    filter:
        drop-shadow(0 10px 25px rgba(9, 31, 31, 0.35));

    animation:
        bounce 1s ease-in-out infinite alternate;
}

.preloader-content p {
    margin-top: 16px;

    color: var(--white);

    font-size: 0.95rem;
    font-weight: 800;
}

.loader-circle-34 {
    position: relative;

    width: 34px;
    height: 34px;

    margin: 22px auto 0;

    border-radius: 50%;
}

.loader-circle-34::before,
.loader-circle-34::after {
    position: absolute;
    inset: 0;

    content: "";

    border: 5px solid transparent;
    border-radius: 50%;
}

.loader-circle-34::before {
    border-top-color: var(--amber);
    animation: spin 1s linear infinite;
}

.loader-circle-34::after {
    border-bottom-color: var(--coral);
    animation: spin 1s linear infinite reverse;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    from {
        background-position: -500px 0;
    }

    to {
        background-position: 500px 0;
    }
}


/* =========================================
   DIGITAL ACCESS INITIATIVE POPUP
========================================= */

.initiative-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

/* Active state */
.initiative-modal.show {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   BACKDROP
========================================= */

.initiative-overlay {
    position: absolute;
    inset: 0;

    background: rgba(6, 34, 31, 0.72);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


/* =========================================
   POPUP CONTAINER
========================================= */

.initiative-popup {
    position: relative;

    width: min(560px, 100%);
    max-height: 90vh;

    overflow-y: auto;

    background: var(--surface, #ffffff);

    border: 1px solid rgba(11, 107, 98, 0.15);
    border-radius: var(--radius-lg, 20px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);

    transform: translateY(25px) scale(0.96);

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.initiative-modal.show .initiative-popup {
    transform: translateY(0) scale(1);
}


/* =========================================
   CLOSE BUTTON
========================================= */

.initiative-close {
    position: absolute;
    top: 14px;
    right: 14px;

    z-index: 5;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: rgba(11, 107, 98, 0.08);

    color: var(--teal-dark, #0b6b62);

    font-size: 0.9rem;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.initiative-close:hover {
    background: var(--teal-dark, #0b6b62);
    color: #ffffff;

    transform: rotate(90deg);
}


/* =========================================
   DONATE CARD
========================================= */

.initiative-popup .donate-card {
    margin: 0;
    padding: 42px 38px 34px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(11, 107, 98, 0.05),
            rgba(231, 167, 46, 0.06)
        );
}


/* =========================================
   ICON
========================================= */

.initiative-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(11, 107, 98, 0.12),
            rgba(231, 167, 46, 0.14)
        );

    color: var(--teal-dark, #0b6b62);

    font-size: 1.5rem;
}


/* =========================================
   LABEL
========================================= */

.initiative-label {
    display: block;

    margin-bottom: 8px;

    color: var(--muted, #687b78);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================
   HEADING
========================================= */

.initiative-popup h3 {
    margin: 0 0 14px;

    color: var(--teal-dark, #0b6b62);

    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.2;
}


/* =========================================
   DESCRIPTION
========================================= */

.initiative-popup .donate-card > p {
    max-width: 460px;

    margin: 0 auto 22px;

    color: var(--muted, #687b78);

    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.initiative-popup .donation-actions {
    display: flex;
    flex-direction: column;

    align-items: stretch;

    gap: 10px;

    width: 100%;
    max-width: 420px;

    margin: 0 auto;
}


/* WhatsApp / Main action */
.initiative-popup .book-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;

    padding: 13px 18px;

    box-sizing: border-box;

    border-radius: 10px;

    text-decoration: none;

    color: #ffffff;
    background: var(--teal-dark, #0b6b62);

    font-size: 0.9rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.initiative-popup .book-link:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(11, 107, 98, 0.2);
}


/* Community button */
.initiative-popup .btn-secondary-outline {
    width: 100%;

    padding: 12px 18px;

    border: 1px solid rgba(11, 107, 98, 0.2);
    border-radius: 10px;

    background: transparent;

    color: var(--teal-dark, #0b6b62);

    font-size: 0.9rem;
    font-weight: 700;

    cursor: default;
}


/* =========================================
   COMMUNITY NOTE
========================================= */

.initiative-popup .community-note {
    max-width: 420px;

    margin: 20px auto 0 !important;

    padding-top: 16px;

    border-top: 1px solid rgba(11, 107, 98, 0.12);

    font-size: 0.78rem !important;
    line-height: 1.6 !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .initiative-modal {
        padding: 14px;
    }

    .initiative-popup {
        width: 100%;
        max-height: 92vh;

        border-radius: 17px;
    }

    .initiative-popup .donate-card {
        padding: 38px 22px 26px;
    }

    .initiative-close {
        top: 10px;
        right: 10px;

        width: 34px;
        height: 34px;
    }

    .initiative-icon {
        width: 52px;
        height: 52px;

        font-size: 1.3rem;
    }

    .initiative-popup h3 {
        font-size: 1.5rem;
    }

    .initiative-popup .donate-card > p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .initiative-popup .book-link,
    .initiative-popup .btn-secondary-outline {
        font-size: 0.85rem;
    }
}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .initiative-popup .donate-card {
        padding: 34px 17px 22px;
    }

    .initiative-popup h3 {
        font-size: 1.35rem;
    }

    .initiative-popup .donate-card > p {
        font-size: 0.82rem;
    }
}


/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .initiative-modal,
    .initiative-popup,
    .initiative-close,
    .initiative-popup .book-link {
        transition: none;
    }
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    color: var(--white);

    background: rgba(8, 75, 71, 0.96);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 12px 30px rgba(8, 75, 71, 0.18);

    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.top-strip {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 8px 22px;

    padding: 8px 16px;

    color: rgba(255, 255, 255, 0.88);

    background: rgba(0, 0, 0, 0.18);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    font-size: 0.84rem;
}

.top-strip a {
    color: inherit;
    text-decoration: none;
    font-weight: 800;

    transition: color var(--transition-fast);
}

.top-strip a:hover {
    color: var(--amber);
}

.nav-shell {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;

    width: min(var(--container), calc(100% - 40px));
    min-height: 78px;

    margin: 0 auto;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;

    gap: 12px;

    min-width: max-content;

    color: var(--white);
    text-decoration: none;
}

.brand img {
    width: 56px;
    height: 56px;

    padding: 5px;

    object-fit: contain;

    background: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--white);

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.1rem;
    line-height: 1.15;
}

.brand small {
    margin-top: 4px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.78rem;
}

nav ul {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 4px;

    margin: 0;
    padding: 0;

    list-style: none;
}

nav a {
    display: inline-flex;
    align-items: center;

    padding: 9px 11px;

    color: rgba(255, 255, 255, 0.82);

    border-radius: var(--radius-sm);

    font-size: 0.88rem;
    font-weight: 800;

    text-decoration: none;

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}

nav a:hover,
nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.11);
}

nav a:hover {
    transform: translateY(-1px);
}


/* =========================================================
   BUTTON SYSTEM
   ========================================================= */

.nav-cta,
.primary-button,
.secondary-button,
.book-link,
.send {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 44px;

    border: 0;
    border-radius: var(--radius-sm);

    font-weight: 800;
    text-decoration: none;

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        filter var(--transition);
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.book-link:hover,
.send:hover {
    transform: translateY(-2px);
}

.nav-cta {
    padding: 10px 15px;

    color: var(--teal-dark);

    background:
        linear-gradient(
            135deg,
            var(--amber),
            var(--amber-light)
        );

    box-shadow:
        0 12px 24px rgba(231, 167, 46, 0.2);
}

.nav-cta:hover {
    color: var(--teal-dark);

    box-shadow:
        0 16px 30px rgba(231, 167, 46, 0.3);
}

.primary-button {
    padding: 12px 18px;

    color: var(--teal-dark);

    background:
        linear-gradient(
            135deg,
            var(--amber),
            var(--amber-light)
        );

    box-shadow:
        0 14px 30px rgba(231, 167, 46, 0.2);
}

.primary-button:hover {
    color: var(--teal-dark);

    box-shadow:
        0 18px 36px rgba(231, 167, 46, 0.28);
}

.secondary-button {
    padding: 12px 18px;

    color: var(--white);

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.25);
}

.secondary-button:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 92vh;

    padding:
        190px
        22px
        80px;

    color: var(--white);

    background:
        url("./assets/bg1.jpg")
        center / cover
        no-repeat;

    isolation: isolate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(8, 35, 36, 0.92),
            rgba(8, 75, 71, 0.68) 54%,
            rgba(217, 93, 57, 0.38)
        ),
        linear-gradient(
            0deg,
            rgba(23, 32, 51, 0.42),
            rgba(23, 32, 51, 0.08)
        );
}

.hero-content {
    position: relative;
    z-index: 1;

    width: min(980px, 100%);

    margin: 0 auto;

    animation:
        fadeUp 0.7s ease both;
}

.eyebrow {
    margin-bottom: 10px;

    color: var(--coral);

    font-size: 0.78rem;
    font-weight: 900;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.hero-section .eyebrow {
    color: var(--amber);
}

.hero-section h1 {
    max-width: 820px;

    margin-bottom: 22px;

    color: var(--white);

    line-height: 0.92;
}

.hero-copy {
    max-width: 690px;

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.hero-stats {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    max-width: 860px;

    margin-top: 46px;
}

.hero-stats span {
    display: block;

    padding: 16px 18px;

    color: rgba(255, 255, 255, 0.78);

    background: rgba(255, 255, 255, 0.11);

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hero-stats strong {
    display: block;

    margin-bottom: 3px;

    color: var(--white);

    font-size: 1.05rem;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 30px 22px;
    margin-bottom: 20px;
}

.section-heading {
    max-width: 920px;

    margin: 0 auto 38px;

    text-align: center;
}

.section-heading.compact {
    max-width: 760px;
}

.section-heading h2,
.appointment-info h2 {
    margin-bottom: 14px;

    color: var(--ink);

    font-size: clamp(2rem, 4vw, 3.5rem);

    line-height: 1.05;
}

.section-heading p {
    max-width: 700px;
    margin: 0 auto;
}


/* =========================================================
   VALUE PROPOSITION
   ========================================================= */

.value-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    width: min(var(--container), calc(100% - 20px));

    margin: 0 auto;
}

.value-grid article {
    position: relative;

    padding: 30px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.value-grid article::after {
    position: absolute;
    right: -40px;
    bottom: -40px;

    width: 110px;
    height: 110px;

    content: "";

    background: var(--teal-soft);

    border-radius: 50%;

    opacity: 0.65;
}

.value-grid article:hover {
    transform: translateY(-5px);

    border-color:
        rgba(11, 107, 98, 0.22);

    box-shadow: var(--shadow);
}

.value-grid i,
.service-icon {
    position: relative;
    z-index: 1;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin-bottom: 18px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--teal-dark)
        );

    border-radius: var(--radius-sm);

    font-size: 1.35rem;

    box-shadow:
        0 10px 22px rgba(11, 107, 98, 0.16);
}

.value-grid h3 {
    position: relative;
    z-index: 1;

    margin-bottom: 10px;

    font-size: 1.3rem;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background:
        linear-gradient(
            180deg,
            rgba(106, 143, 63, 0.08),
            transparent
        ),
        var(--white);
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    width: min(var(--container), calc(100% - 20px));

    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;

    min-height: 100%;

    padding: 28px;

    background: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(11, 107, 98, 0.2);

    box-shadow: var(--shadow);
}

.service-card.featured {
    border-top:
        5px solid var(--amber);
}

.service-card h3 {
    margin-bottom: 10px;

    font-size: 1.3rem;
}

.service-card p {
    margin-bottom: 16px;
}

.service-card ul {
    display: grid;

    gap: 9px;

    margin: 0 0 24px;

    padding: 0;

    list-style: none;
}

.service-card li {
    position: relative;

    padding-left: 25px;

    color: var(--muted);

    line-height: 1.5;
}

.service-card li::before {
    position: absolute;
    left: 0;
    top: 1px;

    content: "✓";

    color: var(--leaf);

    font-weight: 900;
}

.book-link {
    width: 100%;

    margin-top: auto;

    padding: 11px 15px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--teal-dark)
        );

    box-shadow:
        0 12px 24px rgba(11, 107, 98, 0.15);
}

.book-link:hover {
    color: var(--white);

    box-shadow:
        0 16px 30px rgba(11, 107, 98, 0.22);
}

.mini-book-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 72px;

    padding: 8px 12px;

    color: var(--white);

    background: var(--coral);

    border-radius: var(--radius-sm);

    font-weight: 900;

    text-decoration: none;

    transition:
        transform var(--transition),
        background var(--transition);
}

.mini-book-link:hover {
    color: var(--white);

    background: var(--coral-dark);

    transform: translateY(-2px);
}


/* =========================================================
   AVITECH QUOTEFLOW
   ========================================================= */

.quoteflow-section {
    position: relative;

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin: 80px auto;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(231, 167, 46, 0.2),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(11, 107, 98, 0.4),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            var(--teal-dark),
            #102f35 55%,
            var(--ink)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-xl);

    box-shadow: var(--shadow-xl);
}

.quoteflow-section::before {
    position: absolute;
    top: -80px;
    right: -100px;

    width: 260px;
    height: 260px;

    content: "";

    border:
        1px solid rgba(231, 167, 46, 0.12);

    border-radius: 50%;
}

.quoteflow-shell {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        1.12fr
        0.88fr;

    gap: 50px;

    align-items: center;

    padding: 72px 62px;
}

.quoteflow-copy .eyebrow {
    color: var(--amber);
}

.quoteflow-copy h2 {
    max-width: 720px;

    margin-bottom: 18px;

    color: var(--white);

    font-size: clamp(2.2rem, 4vw, 3.7rem);

    line-height: 1.04;
}

.quote-lead {
    max-width: 680px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.05rem;

    line-height: 1.8;
}

.quote-lead strong {
    color: var(--amber);
}

.quote-highlights {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px 20px;

    margin: 28px 0;
}

.quote-highlights span {
    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 0.92rem;
}

.quote-highlights i {
    color: var(--amber);

    font-size: 1rem;
}

.quoteflow-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}

.quote-note {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.56);

    font-size: 0.82rem;
}

.quote-note i {
    color: var(--amber);
}


/* =========================================================
   QUOTEFLOW PREVIEW CARD
   ========================================================= */

.quoteflow-card {
    position: relative;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.075);

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.3);

    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);

    transition:
        transform var(--transition-slow),
        box-shadow var(--transition-slow);
}

.quoteflow-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.36);
}

.quote-window-bar {
    display: flex;

    align-items: center;

    gap: 7px;

    height: 42px;

    padding: 0 16px;

    background: rgba(0, 0, 0, 0.2);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.09);
}

.quote-window-bar span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.38);
}

.quote-window-content {
    padding: 38px;
}

.quote-brand-mark {
    display: grid;

    place-items: center;

    width: 54px;
    height: 54px;

    margin-bottom: 22px;

    color: var(--amber);

    background:
        rgba(231, 167, 46, 0.12);

    border:
        1px solid rgba(231, 167, 46, 0.18);

    border-radius: 14px;

    font-size: 1.4rem;
}

.quote-window-content .eyebrow {
    color: var(--amber);
}

.quote-window-content h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 1.7rem;
}

.quote-window-content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.66);

    line-height: 1.65;
}

.quote-mini-list {
    display: grid;

    gap: 12px;

    margin: 25px 0;
}

.quote-mini-list div {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px;

    color: rgba(255, 255, 255, 0.84);

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 10px;

    font-size: 0.9rem;
}

.quote-mini-list i {
    color: var(--amber);
}

.quote-status {
    display: flex;

    justify-content: space-between;

    gap: 12px;

    padding-top: 18px;

    color: rgba(255, 255, 255, 0.58);

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    font-size: 0.78rem;
}

.quote-status i {
    margin-right: 5px;

    color: var(--amber);
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing-section {
    background: var(--paper);
}

/* =========================================
   PRICING NOTE
   ========================================= */

.pricing-note {
    margin-top: 14px;
    padding: 10px 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.pricing-note > strong {
    display: block;
    margin-top: 0;
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-note ul {
    margin: 0;
}

.pricing-note li {
    margin-bottom: 5px;
    list-style: none;
    font-size: 1rem;
}

.pricing-note li:last-child {
    margin-bottom: 0;
}

.pricing-guidance {
    margin-top: 32px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(23, 32, 51, 0.06);
}

.pricing-guidance-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-guidance-content > p {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
}

.pricing-guidance ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.pricing-guidance li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.pricing-guidance li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal);
    font-weight: 800;
}

.pricing-guidance li strong {
    color: var(--ink);
    font-weight: 700;
}

.pricing-guidance .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    background: var(--teal);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pricing-guidance .primary-button:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 107, 98, 0.18);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {
    .pricing-guidance {
        margin-top: 24px;
        padding: 18px;
        border-radius: 12px;
    }

    .pricing-guidance-content > p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .pricing-guidance li {
        font-size: 0.8rem;
    }

    .pricing-guidance .primary-button {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .pricing-note {
        margin-top: 18px;
        padding: 14px 15px;
        font-size: 0.8rem;
    }

    .pricing-note ul {
        padding-left: 18px;
    }
}

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    width: min(var(--container), calc(100% - 20px));

    margin: 0 auto 28px;
}

.price-card {
    position: relative;

    padding: 26px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(11, 107, 98, 0.2);

    box-shadow: var(--shadow);
}

.price-card.featured {
    border:
        2px solid var(--amber);
}

.price-card.featured::before {
    position: absolute;
    top: 0;
    right: 0;

    padding: 6px 12px;

    content: "POPULAR";

    color: var(--teal-dark);

    background: var(--amber);

    border-bottom-left-radius: var(--radius-sm);

    font-size: 0.68rem;
    font-weight: 900;
}

.price-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--coral);

    font-size: 0.75rem;
    font-weight: 900;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.price-card h3 {
    min-height: 58px;

    color: var(--teal-dark);

    font-size: 1.4rem;
}


/* =========================================================
   PACKAGE TABLE
   ========================================================= */

.package-table-wrap {
    width: min(var(--container), calc(100% - 20px));

    margin: 0 auto;

    overflow-x: auto;

    background: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius);

    box-shadow: var(--shadow);

    -webkit-overflow-scrolling: touch;
}

.package-table {
    width: 100%;
    min-width: 860px;

    border-collapse: collapse;
}

.package-table th,
.package-table td {
    padding: 17px 18px;

    border-bottom: 1px solid var(--line);

    text-align: left;
    vertical-align: top;
}

.package-table th {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--teal-dark),
            var(--teal)
        );

    font-size: 0.76rem;
    font-weight: 800;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}

.package-table tbody tr {
    transition: background var(--transition-fast);
}

.package-table tbody tr:hover {
    background: #f7fbfa;
}

.package-table tr:last-child td {
    border-bottom: 0;
}

.package-table td:first-child,
.package-table td:last-child {
    color: var(--ink);

    font-weight: 900;
}


/* =========================================================
   DONATIONS / DIGITAL IMPACT
   ========================================================= */

.donate-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(231, 167, 46, 0.06),
            rgba(11, 107, 98, 0.03)
        );
}


/* =========================================================
   SECTION INTRO
   ========================================================= */

.donate-section .section-heading.compact {
    max-width: 980px;
    margin: 0 auto 40px;
    text-align: center;
}

.donate-section .section-heading.compact .eyebrow {
    margin-bottom: 18px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donate-section .section-heading.compact > p {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.8;
}

.donate-section .section-heading.compact > p strong {
    color: var(--ink);
}


/* =========================================================
   DONATION GRID
   ========================================================= */

.donate-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    width: min(var(--container), calc(100% - 20px));
    margin: 0 auto;
    align-items: start;
}


/* =========================================================
   MAIN SUPPORT PANEL
   ========================================================= */

.donate-panel {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.donate-panel h3 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 1.45rem;
}

.donate-panel > p {
    color: var(--muted);
    line-height: 1.7;
}

.donate-panel .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    color: var(--teal);
    background: rgba(11, 107, 98, 0.09);
    border-radius: 13px;
    font-size: 21px;
}


/* ================================
   PAYMENT / MERCHANT SECTION
================================ */

.merchant-box {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 28px;
    margin: 22px 0 14px;
}

/* Airtel Merchant */
.merchant {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;

    padding: 24px;
    text-align: center;

    background: linear-gradient(
        135deg,
        rgba(11, 107, 98, 0.08),
        rgba(231, 167, 46, 0.08)
    );

    border: 1px solid rgba(11, 107, 98, 0.15);
    border-radius: var(--radius-md);

    box-sizing: border-box;
}

.merchant span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.merchant strong {
    color: var(--teal-dark);
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.merchant small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}


/* OR divider */
.or {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--muted);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;

    position: relative;
    padding: 0 4px;
}

/* Optional lines around OR */
.or::before,
.or::after {
    content: "";
    display: block;
    width: 1px;
    height: 35px;
    background: rgba(11, 107, 98, 0.18);
}

.or::before {
    margin-right: 10px;
}

.or::after {
    margin-left: 10px;
}


/* PayPal QR */
.qr {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;
    padding: 20px;

    background: rgba(255, 255, 255, 0.6);

    border: 1px solid rgba(11, 107, 98, 0.15);
    border-radius: var(--radius-md);

    box-sizing: border-box;
    text-align: center;
}

.qr img {
    display: block;
    width: 120px;
    height: 120px;

    object-fit: contain;

    border-radius: 8px;
}

.qr span {
    color: var(--teal-dark);
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 800;
}


/* ================================
   TABLET
================================ */

@media (max-width: 768px) {

    .merchant-box {
        gap: 16px;
    }

    .merchant {
        padding: 20px 14px;
    }

    .merchant strong {
        font-size: 1.6rem;
        letter-spacing: 0.05em;
    }

    .qr {
        padding: 16px 12px;
    }

    .qr img {
        width: 105px;
        height: 105px;
    }

    .qr span {
        font-size: 0.9rem;
    }

    .or {
        font-size: 0.85rem;
    }

    .or::before,
    .or::after {
        height: 25px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .merchant-box {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 18px;
    }

    .merchant {
        width: 100%;
        padding: 20px 16px;
        margin: 0;
    }

    .merchant strong {
        font-size: 1.8rem;
    }

    /* Horizontal OR on mobile */
    .or {
        width: 100%;
        flex-direction: row;
        gap: 10px;
        padding: 2px 0;
        font-size: 0.85rem;
    }

    .or::before,
    .or::after {
        width: auto;
        height: 1px;
        flex: 1;
        background: rgba(11, 107, 98, 0.18);
    }

    .or::before {
        margin: 0;
    }

    .or::after {
        margin: 0;
    }

    .qr {
        width: 100%;
        padding: 20px 16px;
        margin: 0;
    }

    .qr img {
        width: 120px;
        height: 120px;
    }

    .qr span {
        font-size: 0.95rem;
    }
}


/* ================================
   SMALL PHONES
================================ */

@media (max-width: 380px) {

    .merchant strong {
        font-size: 1.5rem;
    }

    .merchant {
        padding: 18px 12px;
    }

    .qr {
        padding: 16px 12px;
    }

    .qr img {
        width: 105px;
        height: 105px;
    }

    .qr span {
        font-size: 0.85rem;
    }
}

/* =========================================================
   DONATION NOTE
   ========================================================= */

.donation-note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.donation-note strong {
    color: var(--teal-dark);
}

.donation-note span {
    color: var(--ink);
    font-weight: 700;
}


/* =========================================================
   SUPPORT BUTTON
   ========================================================= */

.donate-panel .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}


/* =========================================================
   RIGHT-SIDE DONATION CARDS
   ========================================================= */

.donate-info {
    display: grid;
    gap: 18px;
}

.donate-card {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.donate-card:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 107, 98, 0.35);
    box-shadow: var(--shadow-md);
}

.donate-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
    color: var(--teal);
    background: rgba(11, 107, 98, 0.09);
    border-radius: 11px;
    font-size: 19px;
}

.donate-card h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 1.15rem;
    line-height: 1.35;
}

.donate-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.7;
}


/* =========================================================
   WHAT SUPPORT PROVIDES
   ========================================================= */

.donate-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 19px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.donate-card ul li::marker {
    color: var(--teal);
}


/* =========================================================
   TRANSPARENCY VALUES
   ========================================================= */

.donation-values {
    list-style: none !important;
    margin-top: 17px !important;
    padding: 0 !important;
}

.donation-values li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.donation-values li i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--teal);
    font-size: 0.85rem;
}


/* =========================================================
   DONATION ACTIONS
   ========================================================= */

.donation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}


.community-note {
    margin-top: 14px !important;
    color: var(--muted);
    font-size: 0.77rem !important;
    line-height: 1.6 !important;
}


/* =========================================================
   COMING SOON CARD
   ========================================================= */

.donate-card:has(.community-coming-soon) {
    border-color: rgba(231, 167, 46, 0.28);
}

.donate-card:has(.community-coming-soon) > i {
    color: var(--amber);
    background: rgba(231, 167, 46, 0.10);
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 950px) {

    .donate-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .donate-panel {
        padding: 26px;
    }

    .donate-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .donate-info .donate-card:last-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .donate-section .section-heading.compact {
        margin-bottom: 28px;
        text-align: left;
    }

    .donate-section .section-heading.compact > p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .donate-grid {
        width: min(var(--container), calc(100% - 16px));
    }

    .donate-panel,
    .donate-card {
        padding: 21px 18px;
        border-radius: 12px;
    }

    .donate-panel h3 {
        font-size: 1.2rem;
    }

    .merchant-box {
        padding: 17px;
    }

    .merchant-box strong {
        font-size: 1.65rem;
    }

    .donate-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .donate-info .donate-card:last-child {
        grid-column: auto;
    }

    .donation-actions {
        flex-direction: column;
    }

    .donation-actions .mini-book-link {
        width: 100%;
    }

    .community-note {
        font-size: 0.74rem !important;
    }
}


/* =========================================================
   APPOINTMENT / REQUEST QUOTE
   ========================================================= */

.appointment-section {
    background:
        linear-gradient(
            180deg,
            rgba(11, 107, 98, 0.025),
            rgba(231, 167, 46, 0.035)
        );
}

.appointment-section .section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

/* =========================================================
   FORM CONTAINER
   ========================================================= */

.appointment-wrapper {
    width: min(900px, calc(100% - 20px));
    margin: 0 auto;
}

.appointment-form {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}


/* =========================================================
   FORM SECTIONS
   ========================================================= */

.form-section {
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.form-section-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.form-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    color: var(--teal);
    background: rgba(11, 107, 98, 0.08);
    border-radius: 11px;
}

.form-section-heading h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.08rem;
}

.form-section-heading p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.form-row {
    display: grid;
    gap: 18px;
}

.form-row.split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* =========================================================
   FORM FIELDS
   ========================================================= */

.form-field {
    margin-bottom: 18px;
}

.form-row .form-field {
    margin-bottom: 0;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 750;
}

.form-field label span {
    color: #c94b4b;
}

.form-field label small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 500;
}


/* =========================================================
   INPUTS
   ========================================================= */

.form-field input,
.form-field select,
.form-field textarea {
    display: block;
    width: 100%;
    padding: 12px 13px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    outline: none;
    font: inherit;
    font-size: 0.84rem;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9aa4b2;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(11, 107, 98, 0.08);
}

.form-field input[readonly] {
    color: var(--teal-dark);
    background: var(--paper);
    font-weight: 700;
    cursor: not-allowed;
}


/* =========================================================
   FORM MESSAGE
   ========================================================= */

.form-message {
    display: none;
    margin-top: 20px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    line-height: 1.5;
}

.form-message.show {
    display: block;
}

.form-message.success {
    color: #155c4d;
    background: rgba(11, 107, 98, 0.08);
    border: 1px solid rgba(11, 107, 98, 0.18);
}

.form-message.error {
    color: #8a3030;
    background: rgba(201, 75, 75, 0.07);
    border: 1px solid rgba(201, 75, 75, 0.18);
}


/* =========================================================
   SUBMIT
   ========================================================= */

.form-submit {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.form-submit .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 190px;
}

.form-submit p {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.5;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    .appointment-wrapper {
        width: min(var(--container), calc(100% - 16px));
    }

    .appointment-form {
        padding: 23px 18px;
        border-radius: 12px;
    }

    .form-row.split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-section {
        padding-bottom: 22px;
        margin-bottom: 22px;
    }

    .form-submit {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .form-submit .primary-button {
        width: 100%;
    }

    .form-submit p {
        text-align: center;
    }

    .appointment-section .section-heading {
        text-align: left;
    }
}

/* QUOTATION GENERATOR PAGE */

.page-main {
    width: min(980px, calc(100% - 36px));
    margin: 0 auto;
    padding: 140px 0 50px;
}

.page-main-wide {
    width: min(1200px, calc(100% - 36px));
    margin: 0 auto;
    padding: 120px 0 70px;
}

h2.quote-head{
    color: white;
}

p.quote-text{
    color: rgb(173, 172, 172);
}

.quoteflow-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 15px;
    justify-content: center;
}

.quoteflow-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
    width: 100%;
}

.quoteflow-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(180, 247, 247, 0.781);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: transform 0.25s border-color 0.25s ease, box-shadow 0.25s ease;
}

.quoteflow-feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--teal);
    box-shadow: 0 8px 24px rgba(23, 32, 51, 0.08);
}

.quoteflow-feature-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 107, 98, 0.09);
    color: rgb(54, 54, 54);
    border-radius: 9px;
    font-size: 18px;
}

.quoteflow-feature-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}

.quoteflow-feature-card span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {
    .quoteflow-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {
    .quoteflow-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .quoteflow-feature-card {
        padding: 14px;
    }

    .quoteflow-feature-icon {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .quoteflow-feature-card strong {
        font-size: 0.88rem;
    }

    .quoteflow-feature-card span {
        font-size: 0.76rem;
    }
}


/* =========================================================
   PROFESSIONAL FOOTER
   ========================================================= */

footer {
    position: relative;
    width: 100%;
    margin-top: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.88);
    background:
        linear-gradient(
            135deg,
            #063c39 0%,
            var(--teal-dark) 55%,
            #052f2d 100%
        );
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* Decorative glow */
footer::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(231, 167, 46, 0.08);
    pointer-events: none;
}

footer::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(11, 107, 98, 0.18);
    pointer-events: none;
}

/* Main footer content */
.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 45px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 22px 50px;
}

/* Footer brand */
.footer-brand {
    max-width: 360px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-brand .footer-logo img {
    width: 54px;
    height: 54px;
    padding: 5px;
    object-fit: contain;
    background: var(--white);
    border-radius: 8px;
}

.footer-brand .footer-logo strong {
    display: block;
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    line-height: 1.1;
}

.footer-brand .footer-logo small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

/* Footer headings */
.footer-column h3 {
    margin: 0 0 18px;
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
}

/* Footer links */
.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: 0.92rem;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--amber);
    transform: translateX(3px);
}

.footer-links i {
    width: 16px;
    color: var(--amber);
    font-size: 0.8rem;
}

/* Footer contact */
.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none;
}

.footer-contact i {
    flex: 0 0 18px;
    margin-top: 3px;
    color: var(--amber);
}

.footer-contact a:hover {
    color: var(--white);
}

/* Donation box */
.footer-donation {
    margin-top: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.footer-donation strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-donation p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    line-height: 1.5;
}

.footer-donation .merchant-code {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: var(--teal-dark);
    background: var(--amber);
    border-radius: 6px;
    font-weight: 900;
    font-size: 0.88rem;
}

/* Footer social icons */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.footer-social a:hover {
    color: var(--teal-dark);
    background: var(--amber);
    transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 22px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--amber);
}

/* Footer CTA */
.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 15px;
    color: var(--teal-dark);
    background: var(--amber);
    border-radius: 7px;
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(231, 167, 46, 0.15);
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.footer-cta:hover {
    color: var(--teal-dark);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 650px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 18px 35px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .footer-main {
        padding: 42px 16px 30px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-bottom-links {
        gap: 10px 14px;
    }
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 18px;
    bottom: 100px;

    z-index: 1200;
}

.floating-whatsapp a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    color: var(--white);

    background: #25d366;

    border-radius: 50%;

    font-size: 1.5rem;

    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.2);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-whatsapp a:hover {
    color: var(--white);

    transform: translateY(-4px) scale(1.04);

    box-shadow:
        0 18px 38px rgba(37, 211, 102, 0.3);
}


/* =========================================================
   MOBILE CONTACT BAR
   ========================================================= */

.mobile-contact-bar {
    position: fixed;

    right: 0;
    bottom: 0;
    left: 0;

    z-index: 1100;

    display: none;

    gap: 8px;

    padding: 8px 12px;

    background:
        linear-gradient(
            90deg,
            var(--teal-dark),
            var(--teal)
        );

    box-shadow:
        0 -8px 25px rgba(0, 0, 0, 0.12);
}

.mobile-contact-bar a {
    display: inline-flex;

    flex: 1;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 12px;

    color: var(--white);

    background:
        rgba(255, 255, 255, 0.07);

    border-radius: var(--radius-sm);

    font-size: 0.84rem;
    font-weight: 900;

    text-decoration: none;
}


/* =========================================================
   RESPONSIVE — 1100PX
   ========================================================= */

@media (max-width: 1100px) {

    .nav-shell {
        flex-wrap: wrap;

        justify-content: center;
    }

    .brand {
        width: 100%;

        justify-content: center;
    }

    .nav-cta {
        display: none;
    }

    .hero-section {
        padding-top: 220px;
    }

    .quoteflow-shell {
        grid-template-columns:
            1fr;
    }

    .pricing-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .donate-grid {
        grid-template-columns:
            1fr;
    }
}


/* =========================================================
   RESPONSIVE — 900PX
   ========================================================= */

@media (max-width: 900px) {

    .value-grid,
    .service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns:
            1.3fr
            1fr
            1fr;

        gap: 38px 30px;

        padding:
            55px 0
            45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-tagline {
        max-width: 420px;
    }
}


/* =========================================================
   RESPONSIVE — 768PX
   ========================================================= */

@media (max-width: 768px) {

    html {
        scroll-padding-top: 95px;
    }

    .top-strip {
        display: none;
    }

    .nav-shell {
        gap: 10px;

        width: calc(100% - 24px);

        min-height: 70px;

        padding: 10px 0;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    nav ul {
        flex-wrap: wrap;
    }

    nav a {
        padding: 7px 8px;

        font-size: 0.82rem;
    }

    .hero-section {
        min-height: 0;

        padding:
            165px
            18px
            60px;
    }

    .hero-section h1 {
        font-size: clamp(2.9rem, 11vw, 4.4rem);
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .primary-button,
    .hero-actions .secondary-button {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns:
            1fr;

        margin-top: 32px;
    }

    .section {
        padding:
            65px 18px;
    }

    .value-grid,
    .service-grid,
    .pricing-grid {
        grid-template-columns:
            1fr;
    }

    .appointment-card {
        padding: 28px 22px;

        border-radius: var(--radius-lg);
    }

    .appointment-form {
        grid-template-columns:
            1fr;

        gap: 18px;
    }

    .appointment-form .full-width,
    .appointment-submit {
        grid-column: auto;
    }

    .appointment-header {
        margin-bottom: 30px;
    }

    .form-grid {
        grid-template-columns:
            1fr;
    }

    .grid-col-span {
        grid-column: auto;
    }

    .floating-whatsapp {
        bottom: 82px;
    }

    .mobile-contact-bar {
        display: flex;
    }

    .quoteflow-section {
        width: calc(100% - 24px);

        margin:
            30px 12px;

        border-radius: 18px;
    }

    .quoteflow-shell {
        grid-template-columns:
            1fr;

        padding:
            45px 24px;
    }

    .quoteflow-copy h2 {
        font-size: 2.5rem;
    }

    .quote-highlights {
        grid-template-columns:
            1fr;
    }

    .quoteflow-actions {
        flex-direction: column;
    }

    .quoteflow-actions .primary-button,
    .quoteflow-actions .secondary-button {
        width: 100%;
    }

    .quote-window-content {
        padding: 27px;
    }

    .quote-status {
        flex-direction: column;
    }

    .donation-amounts {
        grid-template-columns:
            1fr;
    }

    .merchant-code-row {
        flex-wrap: wrap;
    }

    .merchant-code-row strong {
        font-size: 1.65rem;
    }

    .page-main,
    .page-main-wide {
        width: calc(100% - 28px);
    }

    .page-main {
        padding-top: 120px;
    }

    .right-summary {
        min-width: 0;

        text-align: left;
    }
}


/* =========================================================
   RESPONSIVE — 600PX
   ========================================================= */

@media (max-width: 600px) {

    .site-footer {
        margin-top: 55px;
    }

    .footer-container {
        grid-template-columns:
            1fr;

        gap: 32px;

        width: calc(100% - 32px);

        padding:
            45px 0
            35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-column h4 {
        margin-bottom: 14px;
    }

    .footer-links {
        gap: 9px;
    }

    .footer-contact > a,
    .footer-contact > p,
    .footer-links a {
        font-size: 0.86rem;
    }

    .footer-bottom-inner {
        flex-direction: column;

        justify-content: center;

        width: calc(100% - 32px);

        min-height: auto;

        padding:
            20px 0;

        text-align: center;
    }

    .footer-bottom p {
        max-width: 320px;
    }

    .donate-panel,
    .donate-card {
        padding: 22px;
    }

    .table-items,
    .pa-table {
        min-width: 700px;
    }

    .package-table-wrap {
        border-radius: var(--radius-sm);
    }
}


/* =========================================================
   RESPONSIVE — 480PX
   ========================================================= */

@media (max-width: 480px) {

    #appointment {
        padding:
            55px 0;
    }

    .appointment-container {
        width: 94%;
    }

    .appointment-card {
        padding:
            22px 16px;
    }

    .appointment-form input,
    .appointment-form select,
    .appointment-form textarea {
        font-size: 16px;
    }

    .appointment-form textarea {
        min-height: 120px;
    }

    .appointment-submit button {
        min-height: 51px;
    }

    .quoteflow-copy h2 {
        font-size: 2.2rem;
    }

    .quote-window-content {
        padding: 22px;
    }

    .merchant-code-row strong {
        font-size: 1.45rem;
    }

    .floating-whatsapp a {
        width: 52px;
        height: 52px;

        font-size: 1.35rem;
    }

    .mobile-contact-bar {
        padding:
            7px 9px;
    }

    .mobile-contact-bar a {
        padding:
            10px 8px;

        font-size: 0.78rem;
    }
}


/* =========================================================
   RESPONSIVE — 420PX
   ========================================================= */

@media (max-width: 420px) {

    .brand span {
        text-align: center;
    }

    .brand strong {
        font-size: 1rem;
    }

    .brand small {
        font-size: 0.7rem;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .section-heading h2,
    .appointment-info h2 {
        font-size: 2rem;
    }

    .section-heading p {
        font-size: 0.92rem;
    }

    .package-table th,
    .package-table td {
        padding: 14px;
    }

    .quoteflow-copy h2 {
        font-size: 2rem;
    }

    .footer-logo img {
        width: 44px;
        height: 44px;
    }
}


/* =========================================================
   RESPONSIVE — 380PX
   ========================================================= */

@media (max-width: 380px) {

    .nav-shell {
        width: calc(100% - 18px);
    }

    nav a {
        padding:
            6px 6px;

        font-size: 0.76rem;
    }

    .hero-section {
        padding-top: 155px;
    }

    .hero-section h1 {
        font-size: 2.55rem;
    }

    .footer-container,
    .footer-bottom-inner {
        width: calc(100% - 24px);
    }

    .footer-quote-btn {
        width: 100%;

        justify-content: center;
    }

    .mobile-contact-bar a {
        gap: 5px;

        font-size: 0.72rem;
    }
}


/* =========================================================
   EXTREMELY SMALL SCREENS
   ========================================================= */

@media (max-width: 299px) {

    .page {
        display: block;
    }

    .content {
        display: none;
    }

    body {
        font-size: 14px;
    }

    .site-header,
    .site-footer {
        display: none;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================================
   PRINT STYLES
   ========================================================= */

@media print {

    @page {
        size: A4;
        margin: 15mm;
    }

    body {
        background: var(--white);

        color: #000;

        font-size: 11pt;
    }

    .site-header,
    .site-footer,
    .floating-whatsapp,
    .mobile-contact-bar,
    .no-print,
    .hero-actions,
    .appointment-contact,
    .appointment-submit,
    button {
        display: none !important;
    }

    .page-main,
    .page-main-wide {
        width: 100%;

        margin: 0;

        padding: 0;
    }

    .print-area {
        display: block !important;

        margin: 0;

        padding: 0;

        border: 0;

        box-shadow: none;
    }

    .print-area,
    .print-area * {
        color: #000 !important;
    }

    table {
        page-break-inside: auto;
    }

    tr {
        page-break-inside: avoid;
        page-break-after: auto;
    }

    thead {
        display: table-header-group;
    }

    .package-table th {
        color: #000 !important;

        background: #eee !important;
    }

    a {
        color: #000 !important;

        text-decoration: none !important;
    }
}

/* =========================================
   ABOUT AVITECH SOLUTIONS
   ========================================= */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-section .section-heading > p:last-child {
    margin: 0 auto;
    max-width: 920px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.85;
}


/* =========================================
   ABOUT VALUE GRID
   ========================================= */

.about-section .value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-section .value-grid article {
    position: relative;
    padding: 24px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(23, 32, 51, 0.04);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.about-section .value-grid article:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 14px 30px rgba(23, 32, 51, 0.08);
}


/* =========================================
   VALUE ICON
   ========================================= */

.about-section .value-grid article > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    background: rgba(11, 107, 98, 0.09);
    color: var(--teal);
    border-radius: 11px;
    font-size: 21px;
}


/* =========================================
   VALUE HEADINGS
   ========================================= */

.about-section .value-grid article h3 {
    margin: 0 0 9px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}


/* =========================================
   VALUE DESCRIPTION
   ========================================= */

.about-section .value-grid article p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.65;
}


/* =========================================
   SUBTLE TOP ACCENT
   ========================================= */

.about-section .value-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 2px;
    background: var(--teal);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transform: scaleX(0.5);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.about-section .value-grid article:hover::before {
    opacity: 1;
    transform: scaleX(1);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {
    .about-section .section-heading {
        margin-bottom: 34px;
    }

    .about-section .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .about-section .section-heading > p:last-child {
        font-size: 0.9rem;
        line-height: 1.75;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {
    .about-section .section-heading {
        margin-bottom: 26px;
    }

    .about-section .section-heading .eyebrow {
        margin-bottom: 16px;
        font-size: 0.74rem;
    }

    .about-section .section-heading > p:last-child {
        font-size: 0.84rem;
        line-height: 1.7;
        text-align: left;
    }

    .about-section .value-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .about-section .value-grid article {
        padding: 19px 18px;
        border-radius: 12px;
    }

    .about-section .value-grid article > i {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
        font-size: 18px;
    }

    .about-section .value-grid article h3 {
        font-size: 0.92rem;
    }

    .about-section .value-grid article p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   CONTACT CARD
   ========================================= */

.contact-card {
    position: relative;
    padding: 32px;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.11);
}


/* =========================================
   CARD HEADER
   ========================================= */

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-card-header h3 {
    margin: 0 0 5px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
}

.contact-card-header p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    background: rgba(20, 184, 166, 0.10);
    color: #0f766e;

    font-size: 1.35rem;
}


/* =========================================
   CONTACT DETAILS
   ========================================= */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 17px 0;
    border-bottom: 1px solid #eef2f2;
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;
    background: #f1f8f7;
    color: #0f766e;

    font-size: 1rem;
}

.contact-item div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.contact-item span {
    font-size: 0.76rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-item a,
.contact-item strong {
    font-size: 0.98rem;
    color: #172033;
    font-weight: 600;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-item a {
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #0f766e;
}

/* =========================================
   OPERATIONS CARD
   ========================================= */

.operations-content {
    padding: 4px 0 26px;
}

.operations-content h4 {
    margin: 0 0 12px;

    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.operations-content p {
    margin: 0 0 14px;

    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================
   SERVICE HIGHLIGHTS
   ========================================= */

.service-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.service-highlights div {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 11px;

    border-radius: 10px;
    background: #f8fafc;

    color: #334155;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-highlights i {
    flex-shrink: 0;
    color: #0f766e;
    font-size: 0.9rem;
}


/* =========================================
   DIRECT WHATSAPP AREA
   ========================================= */

.contact-direct {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-top: 22px;
    border-top: 1px solid #eef2f2;
}

.direct-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: #f0fdf4;
    color: #16a34a;

    font-size: 1.2rem;
}

.contact-direct div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-direct span {
    color: #64748b;
    font-size: 0.78rem;
}

.contact-direct a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #0f766e;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-direct a:hover {
    text-decoration: underline;
}

.contact-direct a i {
    font-size: 0.75rem;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .contact-card {
        padding: 28px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .contact-grid {
        gap: 18px;
    }

    .contact-card {
        padding: 23px 20px;
        border-radius: 16px;
    }

    .contact-card-header {
        gap: 12px;
        margin-bottom: 23px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 12px;
        font-size: 1.15rem;
    }

    .contact-card-header h3 {
        font-size: 1.15rem;
    }

    .contact-card-header p {
        font-size: 0.82rem;
    }

    .contact-item {
        gap: 12px;
        padding: 14px 0;
    }

    .contact-item-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 9px;
    }

    .contact-item a,
    .contact-item strong {
        font-size: 0.9rem;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .operations-content h4 {
        font-size: 1.1rem;
    }

    .operations-content p {
        font-size: 0.88rem;
    }

    .contact-direct {
        align-items: flex-start;
    }

}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 380px) {

    .contact-card {
        padding: 20px 16px;
    }

    .contact-card-header {
        align-items: flex-start;
    }

    .contact-card-header p {
        display: none;
    }

    .contact-item a,
    .contact-item strong {
        font-size: 0.86rem;
    }

}
/* =========================================
   COOKIE CONSENT
========================================= */

.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: min(92%, 850px);
    z-index: 99999;
    animation: cookieSlideUp 0.5s ease;
}

.cookie-consent[hidden],
.cookie-preferences[hidden] {
    display: none !important;
}

.cookie-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.cookie-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.8rem;

    border-radius: 16px;

    background: var(--primary, #0b6b62);
    color: #fff;
}

.cookie-text h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cookie-text p {
    margin-bottom: 8px;
    color: #667085;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary, #0b6b62);
    font-weight: 700;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 170px;
}

.cookie-secondary,
.cookie-link {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 10px;
}

.cookie-secondary {
    border: 1px solid #d0d5dd;
    border-radius: 10px;
}

.cookie-link {
    color: var(--primary, #0b6b62);
    text-decoration: underline;
}

/* COOKIE PREFERENCES */

.cookie-preferences {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
    z-index: 100000;
}

.cookie-preferences-box {
    position: relative;
    width: min(100%, 600px);
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cookie-preferences-box h3 {
    margin-bottom: 10px;
}

.cookie-preferences-box > p {
    color: #667085;
    margin-bottom: 25px;
}

.cookie-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #e4e7ec;
}

.cookie-option strong {
    display: block;
    margin-bottom: 6px;
}

.cookie-option p {
    margin: 0;
    color: #667085;
    font-size: 0.9rem;
}

.cookie-required {
    white-space: nowrap;
    color: var(--primary, #0b6b62);
    font-weight: 700;
    font-size: 0.85rem;
}


/* TOGGLE SWITCH */

.cookie-switch {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--primary, #0b6b62);
}

.cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(22px);
}

.cookie-preference-actions {
    margin-top: 25px;
}

.cookie-preference-actions .primary-button {
    width: 100%;
}


/* ANIMATION */

@keyframes cookieSlideUp {

    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .cookie-consent {
        bottom: 80px;
    }

    .cookie-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-icon {
        margin: auto;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        width: 100%;
    }

    .cookie-option {
        text-align: left;
    }

}
