﻿:root {
    --brand-primary: #0c73b8;
    --brand-primary-dark: #0a4a85;
    --brand-dark: #061a33;
    --brand-light: #e6f4ff;
    --accent: #13b8ff;
    --accent-soft: #5dc4e6;
    --body-bg: #f7f9fc;
    --text-color: #162438;
    --text-muted: #475569;
    --border-color: #d0d9e6;
    --shadow-soft: 0 18px 40px rgba(6, 26, 51, 0.14);
    --max-width: 1160px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition: 220ms ease;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background: var(--body-bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--brand-primary);
}

img,
svg {
    max-width: 100%;
    display: block;
}

p {
    margin: 0 0 1rem;
    color: var(--text-muted);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-dark);
}

h1 {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
}

h4 {
    font-size: 1.125rem;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container.narrow {
    max-width: 760px;
    text-align: center;
}

.split {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 900px) {
    .split {
        grid-template-columns: 1.3fr 1fr;
    }
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
}

.cards-grid--three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards-grid.cards-grid--three {
    gap: 1.5rem;
}

.cards-grid--four {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card,
.fact-card,
.contact-card {
    background: #fff;
    padding: 1.9rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(6, 26, 51, 0.06);
}

.card p,
.fact-card p,
.contact-card p {
    margin-bottom: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    color: #fff;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(12, 115, 184, 0.4);
}

.btn:focus-visible {
    outline: 3px solid rgba(19, 184, 255, 0.5);
    outline-offset: 3px;
}

.btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: #fff;
}

.btn--outline:hover,
.btn--outline:focus {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.btn--ghost {
    background: rgba(12, 115, 184, 0.12);
    color: var(--brand-primary);
}

.btn--ghost:hover,
.btn--ghost:focus {
    background: rgba(12, 115, 184, 0.18);
    box-shadow: none;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--brand-primary);
    gap: 0.35rem;
}

.link-arrow::after {
    content: "\2192";
    transition: transform var(--transition);
}

.link-arrow:hover::after,
.link-arrow:focus::after {
    transform: translateX(4px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(247, 249, 252, 0.32);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(6, 26, 51, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.logo-mark {
    width: 64px;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(6, 26, 51, 0.25));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.logo-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.logo-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav ul {
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 500;
}

.site-nav a {
    color: var(--text-muted);
    position: relative;
    padding-bottom: 0.3rem;
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--brand-primary);
}

.site-nav a.active::after,
.site-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--brand-primary);
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    padding: 0.5rem;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-dark);
    border-radius: 999px;
    margin: 5px 0;
    transition: transform var(--transition), opacity var(--transition);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: #f5fbff;
    background-color: #0a3e68;
    isolation: isolate;
}

/* Shine Club + service cards: hover motion + lighter overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .30;
    pointer-events: none;
    z-index: 2;
}

.hero h1 {
    color: #fff;
}

.hero p {
    color: #fff;
}

@media (max-width: 640px) {
    .hero::before {
        opacity: .34;
    }
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background: #040b12;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 62, 104, 0.48), rgba(14, 124, 180, 0.2));
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(6rem, 10vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
    color: inherit;
}

.hero__copy {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.4rem);
    justify-items: center;
    text-align: center;
}

.hero__brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
    justify-self: start;
}

.hero__name {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.hero__tagline {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(235, 245, 255, 0.78);
}

.hero__headline {
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
}

.hero__description {
    margin: 0;
    max-width: 36rem;
    font-size: clamp(1.05rem, 1.7vw, 1.2rem);
    color: rgba(237, 246, 255, 0.86);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero__btn {
    background: #0e7cb4;
    color: #ffffff;
    padding: 0.85rem 2.1rem;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(6, 26, 51, 0.32);
    transition: background-color 200ms ease, transform var(--transition), box-shadow var(--transition);
}

.hero__btn:hover,
.hero__btn:focus {
    background: #0a5c8c;
    box-shadow: 0 24px 46px rgba(6, 26, 51, 0.4);
}

.hero__btn--secondary {
    background: rgba(14, 124, 180, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 18px 38px rgba(6, 26, 51, 0.28);
}

.hero__btn--secondary:hover,
.hero__btn--secondary:focus {
    background: rgba(10, 92, 140, 0.9);
}

.hero__card {
    background: linear-gradient(165deg, rgba(14, 124, 180, 0.78), rgba(10, 62, 104, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 2.6rem);
    box-shadow: 0 32px 56px rgba(6, 26, 51, 0.4);
    backdrop-filter: blur(14px);
    color: #f5fbff;
}

.hero__card-title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    color: #ffffff;
}

.hero__card-list {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    gap: 0.9rem;
    color: rgba(239, 248, 255, 0.85);
}

.hero__card-list li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.5;
}

.hero__card-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero__card-list strong {
    color: #ffffff;
}

.hero__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-weight: 600;
    transition: background-color var(--transition), transform var(--transition);
}

.hero__card-link::after {
    content: "\2192";
    transition: transform var(--transition);
}

.hero__card-link:hover,
.hero__card-link:focus {
    background: rgba(255, 255, 255, 0.26);
    transform: translateY(-2px);
}

.hero__card-link:hover::after,
.hero__card-link:focus::after {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .hero__content {
        grid-template-columns: 1fr;
        row-gap: clamp(2rem, 6vw, 3rem);
        justify-items: center;
    }

    .hero__card {
        width: min(100%, 420px);
        justify-self: stretch;
    }
}

@media (max-width: 720px) {
    .hero {
        min-height: 110vh;
    }

    .hero__content {
        padding: clamp(5rem, 14vw, 7rem) 0 clamp(3rem, 12vw, 5rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__btn {
        width: 100%;
    }
}

.main-services {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #fff;
}

.main-services--page {
    background: var(--brand-light);
}

.highlight-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 900px) {
    .highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.primary-service {
    position: relative;
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(12, 115, 184, 0.1), rgba(6, 26, 51, 0.08));
    border: 1px solid rgba(12, 115, 184, 0.2);
    box-shadow: var(--shadow-soft);
}

.primary-service ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.6rem;
    color: var(--text-muted);
}

.service-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: rgba(12, 115, 184, 0.14);
    color: var(--brand-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-highlights {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--brand-light);
}

.additional-services {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(120deg, rgba(6, 26, 51, 0.05), rgba(12, 115, 184, 0.05));
}

.additional-services--page {
    background: #fff;
}

.membership {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #fff;
}

.membership--feature-bg {
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Shine Club + service cards: hover motion + lighter overlay */
.membership--feature-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(185deg, rgba(4, 20, 36, 0.55), rgba(10, 62, 104, 0.32)), url('../assets/membership-overlay.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.30;
    z-index: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
}

.membership--feature-bg:hover::before,
.membership--feature-bg:focus-within::before {
    opacity: 0.38;
}

@media (max-width: 640px) {
    .membership--feature-bg::before {
        opacity: 0.34;
    }
}

.membership--feature-bg .membership-content {
    position: relative;
    z-index: 1;
    gap: clamp(2rem, 4vw, 3rem);
}

.membership--feature-bg .membership-intro,
.membership--feature-bg .tier-list {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 48px rgba(6, 26, 51, 0.18);
    backdrop-filter: blur(8px);
}

.membership--feature-bg .membership-intro {
    padding: clamp(1.6rem, 3vw, 2.4rem);
    max-width: min(100%, 420px);
}

.membership--feature-bg .membership-intro h2 {
    color: #000;
}

.membership--feature-bg .membership-intro p {
    color: #1a1a1a;
}

.membership--feature-bg .tier-list {
    padding: clamp(1.5rem, 3vw, 2.4rem);
    gap: clamp(1.1rem, 2.5vw, 1.6rem);
    max-width: min(100%, 520px);
}

.membership--feature-bg .tier-list li {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 18px 36px rgba(6, 26, 51, 0.2);
}

/* Shine Club + service cards: hover motion + lighter overlay */
.service-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.service-card:active {
    transform: translateY(-1px) scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
    .service-card {
        transition: none;
    }

    .service-card:hover,
    .service-card:focus-visible,
    .service-card:active {
        transform: none;
        box-shadow: none;
    }
}

.membership-content {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.tier-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

.tier-list li {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.testimonials {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #fff;
}

.testimonial-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-grid blockquote {
    margin: 0;
    padding: 1.75rem;
    background: var(--brand-light);
    border-radius: var(--radius-lg);
    font-style: italic;
    border-left: 4px solid var(--brand-primary);
}

.testimonial-grid cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    color: var(--brand-dark);
    font-weight: 600;
}

.cta {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, var(--brand-primary-dark), var(--brand-primary));
    color: #fff;
    text-align: center;
}

.cta p {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer {
    background: var(--brand-dark);
    color: #d7e1f0;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.site-footer a {
    color: #f6f9ff;
}

.footer-grid h4 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.contact-list li {
    word-break: break-word;
}

.footer-copy {
    margin: 2rem 0 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    padding: clamp(4rem, 7vw, 6rem) 0 2rem;
    background: linear-gradient(180deg, rgba(12, 115, 184, 0.12), rgba(247, 249, 252, 0));
}

.story,
.values,
.team,
.timeline,
.pricing,
.add-ons,
.comparison,
.fleet,
.contact-grid,
.faq,
.service-detail {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.service-detail .fact-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.fact-card ul,
.checklist,
.add-ons-grid,
.tier-list ul,
.timeline ol {
    margin: 0;
    padding: 0;
}

.fact-card ul,
.checklist,
.add-ons-grid {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.checklist li::before {
    content: "\2022";
    color: var(--accent);
    margin-right: 0.5rem;
}

.values .cards-grid {
    gap: 1.25rem;
}

.team-grid {
    display: grid;
    gap: 1.5rem;
}

.team-grid article {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.timeline ol {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.timeline-year {
    display: inline-block;
    min-width: 3.5rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.pricing .card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: #fff;
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.table-wrapper th,
.table-wrapper td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.table-wrapper thead th {
    background: var(--brand-light);
    color: var(--brand-dark);
}

.table-wrapper tr:last-child td {
    border-bottom: none;
}

.check {
    font-size: 1.25rem;
    color: var(--brand-primary);
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 0.9rem;
}

.contact-form label {
    font-weight: 600;
    color: var(--brand-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font: inherit;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(12, 115, 184, 0.2);
}

.contact-card {
    position: sticky;
    top: 6rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(12, 115, 184, 0.12);
    color: var(--brand-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq details {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    background: #fff;
    margin-bottom: 1rem;
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    float: right;
    transition: transform var(--transition);
}

details[open] summary::after {
    transform: rotate(45deg);
}

@media (max-width: 900px) {
    .brand {
        gap: 0.65rem;
    }

    .logo-mark {
        width: 56px;
    }
}

@media (max-width: 768px) {
    .site-nav {
        position: absolute;
        top: 100%;
        right: 1.5rem;
        left: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
        gap: 1rem;
        background: #fff;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(6, 26, 51, 0.08);
        transform-origin: top right;
        transform: scale(0.95);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition), opacity var(--transition);
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    .site-nav .btn--outline {
        align-self: stretch;
        justify-content: center;
    }

    .site-nav.is-open {
        transform: scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content,
    .membership-content,
    .testimonial-grid,
    .team-grid,
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        position: static;
    }
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.9fr;
    }

    .membership-content {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }
}
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.site-footer .social-icons a {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icons a:hover,
.social-icons a:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(6, 26, 51, 0.3);
}

.social-icons img {
    width: 22px;
    height: 22px;
}

.whatsapp-button {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2fd26d, #1ebe5d);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(24, 163, 71, 0.35);
    transition: transform var(--transition), box-shadow var(--transition);
    z-index: 60;
}

.whatsapp-button:hover,
.whatsapp-button:focus {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(24, 163, 71, 0.4);
}

.whatsapp-button img {
    width: 26px;
    height: 26px;
}

@media (max-width: 560px) {
    .whatsapp-button {
        right: 1rem;
        bottom: 1rem;
        padding: 0.65rem 0.95rem;
        font-size: 0.95rem;
    }
}
.price-board-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .price-board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.price-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--brand-dark);
}

.price-list li span:first-child {
    max-width: 70%;
    font-weight: 600;
}

.price-list li span:last-child {
    color: var(--brand-primary);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}










.map-pin-link {
    display: inline-flex;
    margin-top: 0.75rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.map-pin-link img {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(6, 26, 51, 0.2));
    border-radius: var(--radius-md);
}

.map-pin-link:hover,
.map-pin-link:focus {
    transform: translateY(-3px);
}







.extra-service-intro {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.extra-service-intro h3 {
    margin-bottom: 0.75rem;
}

.cards-grid--stacked {
    margin-top: 1.5rem;
}
.extra-service-intro {
    margin-top: 3rem;
    text-align: center;
}

.extra-service-intro h3 {
    margin-bottom: 0.5rem;
}

.extra-service-grid {
    margin-top: 1.5rem;
    row-gap: 1.5rem;
}

.extra-service-grid .card {
    height: 100%;
}

.extra-service-grid .coming-soon {
    opacity: 0.9;
}
.team-grid--single {
    justify-items: center;
    grid-template-columns: minmax(0, 880px);
}

.team-grid--single article {
    width: 100%;
    max-width: 880px;
    text-align: left;
    margin: 0 auto;
}

section#team .container > h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.team .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


