@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

/* Variables */
:root {
    --primary-color: #0B1220;
    --secondary-color: #10b981;
    --bg-color: #F4F8FF;
    --text-color: #334155;
    --text-muted: #475569;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --bg-light: #F4F8FF;
    --white: #ffffff;
    --border-radius: 8px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-xl: 18px;
    --radius-pill: 999px;
    --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --container-width: 1100px;
    --font-main: "Poppins", system-ui, sans-serif;
    --font-display: "Poppins", system-ui, sans-serif;
}

/* Fluid scaling: only scales up on large screens (1440px+) */
@media (min-width: 1440px) {
    html {
        font-size: calc(16px + 0.25vw);
    }
    :root {
        --container-width: 1320px;
    }
}
@media (min-width: 1920px) {
    :root {
        --container-width: 1500px;
    }
}
@media (min-width: 1440px) {
    .home1-hero-card .home1-trust {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

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

a, button {
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(15, 23, 42, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.2);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    backdrop-filter: blur(22px) saturate(140%);
}

.header-container {
    max-width: 1210px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.site-logo img,
.site-logo-svg {
    height: 44px;
    width: auto;
    display: block;
}


.site-branding {
    text-align: center;
}

.site-nav {
    display: none;
}

.site-menu {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    align-items: center;
}

.site-menu a {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--white);
}

.site-menu a:hover {
    color: #a7f3d0;
}

/* Navigation (removed in header) */

/* Hero */
.hero-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.65)), var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.site-main {
    padding-top: 96px;
}

.site-main.home-page {
    padding-top: 0;
}
.site-main.home1-page {
    padding-top: 0;
}
.site-main.service-landing {
    padding-top: 60px;
}
.site-main.gbx-service-page,
.site-main.gbx-services-page,
.site-main.areas-page {
    padding-top: 60px;
}
.site-main.services-page {
    padding-top: 60px;
}
.site-main.about-page,
.site-main.faq-page,
.site-main.contact-page,
.site-main.terms-page,
.site-main.cancellation-page {
    padding-top: 60px;
}

body.gk-booking-only .site-main {
    padding-top: 0;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle,
.service-hero-subtitle,
.home1-lead {
    display: none;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
}

/* Home TV hero (style-only refresh) */
.home-tv-hero {
    background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.25), transparent 55%),
        linear-gradient(130deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.62)),
        var(--hero-image);
    background-position: right center;
    text-align: left;
}

.home-tv-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 3rem;
    align-items: center;
}

.home-tv-hero-copy .hero-title {
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    line-height: 1.06;
    margin: 0 0 1rem;
    text-wrap: balance;
}

.home-tv-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.95rem;
}

.home-tv-lead {
    font-size: 1.1rem;
    max-width: 560px;
    margin-bottom: 1.9rem;
    color: rgba(255, 255, 255, 0.86);
}

.home-tv-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.home-tv-hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #e2e8f0;
}

.home-tv-trust {
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.home-tv-hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.home-tv-hero-image {
    height: 290px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

.home-tv-hero-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(16, 185, 129, 0.96);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
}

.home-tv-hero-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 1rem;
}

/* Cards & Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.page-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: calc(3rem + 64px) 0 3.5rem;
    text-align: left;
}

.page-banner .page-eyebrow {
    display: none;
}

.page-banner .page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    max-width: 700px;
}

.page-banner .page-subtitle {
    display: none;
}

.gk-service-hero .btn {
    margin-top: 1.5rem;
}

.service-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.booking-grid-single {
    max-width: 520px;
    margin: 0 auto;
}

.service-card--compact .card-media {
    min-height: 120px;
}

.service-card--compact .card-body {
    padding: 1rem 1.25rem;
}

.card-media {
    min-height: 190px;
    background-size: cover;
    background-position: center;
}

.service-card:not(.service-card--link) .card-media {
    background-position: center 40%;
}

.card-body {
    padding: 1.75rem;
}

.card-body p {
    margin-bottom: 1rem;
}

.services-grid .service-card:not(.service-card--link) .btn-small,
.home1-service-actions .btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: max-content;
    min-height: 46px;
    padding: 0.75rem 1.25rem;
    line-height: 1.2;
}

.faq-section {
    padding-top: 3rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1rem 1.25rem;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    background-color: transparent;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:focus,
.faq-item summary:active {
    background-color: transparent;
}

.faq-item summary:focus-visible {
    outline: 2px solid rgba(16, 185, 129, 0.35);
    outline-offset: 4px;
    border-radius: 10px;
}

.faq-item summary::after {
    content: "+";
    float: right;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin-top: 0.75rem;
    color: var(--text-color);
}

.page-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: inherit;
    opacity: 0.9;
}


.gk-contact-bubble {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.2);
    z-index: 1002;
    gap: 8px;
    padding: 0 16px;
}

.gk-contact-bubble:hover {
    opacity: 0.92;
}

.gk-contact-bubble::before,
.gk-contact-bubble::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 2px solid rgba(16, 185, 129, 0.35);
    opacity: 0;
    animation: gk-pulse 2.2s ease-out infinite;
}

.gk-contact-bubble-text {
    display: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    white-space: nowrap;
}

.gk-contact-bubble::after {
    inset: -14px;
    animation-delay: 0.6s;
}

@keyframes gk-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.25);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .gk-contact-bubble {
        right: 16px;
        bottom: calc(18px + env(safe-area-inset-bottom));
    }

    body.has-gk-mobile-book-cta .gk-contact-bubble {
        bottom: calc(96px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 768px) {
    body.gk-booking-active #gk-booking.gk-summary-active ~ .gk-contact-bubble {
        left: 50%;
        right: auto;
        width: min(520px, 92%);
        bottom: env(safe-area-inset-bottom);
        height: 36px;
        border-radius: 999px;
        background: var(--white);
        justify-content: center;
        transform: translateX(-50%);
        box-shadow: 0 8px 16px rgba(16, 185, 129, 0.12);
    }

    body.gk-booking-active #gk-booking.gk-summary-active {
        padding-bottom: calc(56px + env(safe-area-inset-bottom));
    }

    body.gk-booking-active #gk-booking.gk-summary-active ~ .gk-contact-bubble::before,
    body.gk-booking-active #gk-booking.gk-summary-active ~ .gk-contact-bubble::after {
        animation-duration: 2.8s;
        border-color: rgba(16, 185, 129, 0.2);
        inset: -4px;
    }

    body.gk-booking-active #gk-booking.gk-summary-active ~ .gk-contact-bubble::after {
        inset: -8px;
    }

    body.gk-booking-active #gk-booking.gk-summary-active ~ .gk-contact-bubble-text {
        display: inline-flex;
    }
}

/* Benefits */
.benefits-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: grid;
    gap: 0.75rem;
    align-content: start;
    min-height: 220px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card h3 {
    margin: 0;
    font-size: 1.15rem;
}

.benefit-card p {
    margin: 0;
    color: var(--text-muted);
}

@media (max-width: 980px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card {
        min-height: 0;
    }
}

/* Contact Page */
.contact-page--modern {
    background: var(--bg-light);
    font-family: var(--font-display);
}

.contact-hero {
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.24), transparent 44%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.7)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: calc(1.25rem + 84px) 0 5.5rem;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 2.5rem;
    align-items: stretch;
}

.contact-hero-copy,
.contact-hero-card,
.contact-hero-links,
.contact-stack {
    display: flex;
    flex-direction: column;
}

.contact-hero-copy {
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
}

.contact-eyebrow,
.contact-stat-label {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 32px;
    padding: 0.42rem 0.95rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-hero .contact-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
}

.contact-hero-copy h1,
.contact-section-head h2,
.contact-method-copy h2 {
    margin: 0;
    line-height: 1.06;
}

.contact-hero-copy h1 {
    font-size: clamp(2.35rem, 4.5vw, 4.2rem);
    color: var(--white);
    text-wrap: balance;
}

.contact-section-head h2,
.contact-method-copy h2 {
    color: var(--primary-color);
}

.contact-hero-copy p,
.contact-stat-card p,
.contact-method-copy p,
.contact-meta-list span,
.contact-checklist li,
.contact-empty {
    margin: 0;
    line-height: 1.72;
}

.contact-hero-copy p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 58ch;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.25rem;
}

.contact-hero-actions .btn {
    min-width: 180px;
    text-align: center;
}

.contact-hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    box-shadow: none;
}

.contact-hero-actions .btn-secondary:hover,
.contact-hero-actions .btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.contact-hero-card,
.contact-method-card,
.contact-panel {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.contact-hero-card {
    gap: 1rem;
    padding: 1.4rem;
    color: var(--primary-color);
}

.contact-stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.2rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border-color);
}

.contact-stat-card strong,
.contact-method-copy strong,
.contact-meta-list strong,
.contact-hero-link strong {
    color: var(--primary-color);
    font-size: 1.14rem;
    line-height: 1.35;
}

.contact-stat-card p,
.contact-method-copy p,
.contact-meta-list span,
.contact-checklist li,
.contact-empty {
    color: var(--text-muted);
}

.contact-hero-links {
    gap: 0.75rem;
}

.contact-hero-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-hero-link:hover,
.contact-hero-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.08);
}

.contact-hero-link-label {
    color: var(--text-light);
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-shell {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1.75rem;
    margin-top: -3.5rem;
    padding: 0 0 4rem;
}

.contact-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-method-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
    padding: 1.4rem;
}

.contact-method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 1.2rem;
}

.contact-method-copy {
    display: grid;
    gap: 0.45rem;
}

.contact-action-link,
.contact-shortcut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.8rem 1.15rem;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-action-link {
    border: 1px solid rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.09);
    color: #047857;
    font-weight: 700;
}

.contact-action-link:hover,
.contact-action-link:focus-visible,
.contact-shortcut:hover,
.contact-shortcut:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.08);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 1.2rem;
}

.contact-stack {
    gap: 1.2rem;
}

.contact-panel {
    padding: 1.55rem;
}

.contact-section-head {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.contact-checklist,
.contact-meta-list {
    display: grid;
    gap: 0.95rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-checklist li,
.contact-meta-list li {
    position: relative;
    padding-left: 1.3rem;
}

.contact-checklist li::before,
.contact-meta-list li::before {
    content: "";
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondary-color);
}

.contact-meta-list li {
    display: grid;
    gap: 0.35rem;
}

.contact-service-shortcuts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.contact-shortcut {
    justify-content: space-between;
    border: 1px solid #dbe5f0;
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-shortcut i {
    color: var(--secondary-color);
}

@media (max-width: 1180px) {
    .contact-hero-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-card {
        max-width: 760px;
    }
}

@media (max-width: 980px) {
    .contact-hero {
        padding-bottom: 4.75rem;
    }

    .contact-shell {
        margin-top: -2.6rem;
    }

    .contact-method-grid,
    .contact-service-shortcuts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: calc(1rem + 72px) 0 4.25rem;
    }
    .contact-method-card,
    .contact-panel,
    .contact-hero-card {
        border-radius: 20px;
    }

    .contact-hero-card,
    .contact-panel {
        padding: 1.2rem;
    }

    .contact-shell {
        gap: 1.25rem;
        margin-top: -2rem;
        padding-bottom: 3rem;
    }

    .contact-hero-copy h1 {
        font-size: clamp(2rem, 9vw, 2.9rem);
    }

    .contact-hero-copy p {
        font-size: 1rem;
    }

    .contact-hero-actions,
    .contact-hero-links {
        width: 100%;
    }

    .contact-hero-actions .btn,
    .contact-hero-link,
    .contact-action-link {
        width: 100%;
    }

    .contact-method-card {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }

    .contact-action-link {
        justify-content: flex-start;
    }

    .contact-section-head h2,
    .contact-method-copy h2 {
        font-size: 1.5rem;
    }
}
/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

body.booking-only-page .gk-contact-bubble,
body.booking-only-page .gk-contact-bubble-text {
    display: none !important;
}

.gk-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 156px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.gk-back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gk-back-to-top:hover,
.gk-back-to-top:focus-visible {
    background: var(--secondary-color);
    color: var(--white);
}

.gk-back-to-top:focus-visible {
    outline: 2px solid rgba(16, 185, 129, 0.35);
    outline-offset: 2px;
}

.gk-back-to-top__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        height: 56px;
        padding: 0 16px;
    }

    .gk-back-to-top {
        right: 16px;
        bottom: calc(156px + env(safe-area-inset-bottom));
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 78vh;
        display: flex;
        align-items: center;
    }

    .home-tv-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .home-tv-hero-card {
        order: -1;
    }

    .home-tv-hero-image {
        height: 220px;
    }

    .home-tv-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-tv-hero-actions .btn {
        width: auto;
        min-width: 180px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 769px) {
    .site-nav {
        display: block;
    }
}

/* Service landing (modern) */
.service-landing-modern {
    background: var(--bg-light);
    font-family: var(--font-display);
}

.service-hero {
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.25), transparent 45%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.65)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 32vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: calc(1.25rem + 84px) 0 1.25rem;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
}

.service-hero-copy h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.service-hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.service-hero-subtitle {
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.86);
}

.service-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.service-hero-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.service-hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

.service-hero-image {
    height: 260px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

.service-hero-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(16, 185, 129, 0.95);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-hero-info {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Guarantee */
.service-guarantee {
    padding: 0 0 2rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.service-guarantee-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--white);
    border-radius: 0 0 16px 16px;
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-md);
    width: 100%;
    margin: 0;
}

.service-guarantee-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    color: var(--secondary-color);
}

.service-guarantee-body h2 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
}

.service-guarantee-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .service-guarantee-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        border-left: none;
        border-top: 4px solid var(--secondary-color);
    }
}

/* Social proof / Reviews */
.service-social-proof {
    background: transparent;
}

.service-social-proof-card {
    text-align: center;
    background: transparent;
}

.service-social-proof-header {
    margin-bottom: 2.5rem;
}

.service-social-proof-stars svg {
    width: 28px;
    height: 28px;
    margin: 0 2px;
}

.service-social-proof-rating {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.service-social-proof-marquee {
    overflow: hidden;
    background: transparent;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.service-social-proof-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.service-social-proof-marquee:hover .service-social-proof-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.service-social-proof-quote {
    flex: 0 0 320px;
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-social-proof-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.service-social-proof-quote p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.service-social-proof-quote cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .service-social-proof-quote {
        flex: 0 0 260px;
        padding: 1.5rem;
    }
    .service-social-proof-track {
        animation-duration: 25s;
    }
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-detail-block {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-detail-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-detail-block h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-list {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    padding-left: 0;
}

.service-detail-list--muted li {
    color: var(--text-light);
}

.service-section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-section-head h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-section-head p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.service-options-grid,
.service-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.service-option-card,
.service-rule-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.service-option-card {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.service-option-icon img {
    width: 100%;
    max-width: 220px;
    height: auto;
}

@media (max-width: 768px) {
    .service-option-icon {
        display: flex;
        justify-content: center;
    }
    .service-option-icon img {
        max-width: 240px;
        width: 85%;
    }
    .service-option-text {
        font-size: 1.05rem;
        font-weight: 500;
    }
    .service-option-card {
        grid-template-columns: 110px 1fr;
        align-items: center;
        gap: 0.9rem;
    }
    .service-option-icon {
        justify-content: flex-start;
    }
    .service-option-icon img {
        width: 100%;
        max-width: 110px;
    }
}

.service-option-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.service-rule-card {
    background: #fff7ed;
    border-color: #fed7aa;
}

/* FAQ Accordion */
.service-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.service-faq-item {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.service-faq-item[open] {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.service-faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    background-color: transparent;
}

.service-faq-item summary::-webkit-details-marker {
    display: none;
}

.service-faq-item summary:focus,
.service-faq-item summary:active {
    background-color: transparent;
}

.service-faq-item summary:focus-visible {
    outline: 2px solid rgba(16, 185, 129, 0.35);
    outline-offset: -4px;
    border-radius: 10px;
}

.service-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.service-faq-item[open] summary::after {
    content: '\2212';
    color: var(--secondary-color);
}

.service-faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Frequency Cards */
.service-frequency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 820px;
    margin: 0 auto;
}

.service-frequency-card {
    position: relative;
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-frequency-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.service-frequency-card--popular {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.04);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.service-frequency-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.service-frequency-label {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.service-frequency-discount {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Room Checklist */
.service-room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.service-room-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-room-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-room-card h3 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.service-room-card ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.service-room-card li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.service-room-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Extras Cards */
.service-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.service-extra-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease;
}

.service-extra-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.service-extra-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.service-extra-microcopy {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.15rem;
}

.service-extra-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    white-space: nowrap;
}

/* Includes / Excludes icons */
.service-detail-list {
    list-style: none;
}

.service-detail-list li {
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.6;
}

.service-detail-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.6;
}

.service-detail-list--muted li::before {
    content: '\2717';
    color: #f87171;
}

/* Hero Microcopy */
.service-hero-microcopy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

/* Final CTA */
.service-booking-card {
    background: var(--bg-light);
}

.service-booking-card .service-section-head h2 {
    color: var(--primary-color);
}

.service-booking-card .service-section-head p {
    color: var(--text-muted);
}

.service-booking-cta--simple {
    text-align: center;
}

.service-booking-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.service-booking-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.service-booking-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.service-booking-trust span {
    font-size: 0.82rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 1rem 0.5rem 2.2rem;
    background: var(--white);
    border-radius: 999px;
    border: 1px solid var(--border-color);
}

.service-booking-trust span::before {
    content: '\2713';
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-weight: 700;
}

.service-booking {
    background: #ffffff;
}

.service-booking .container {
    background: #f8fafc;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.service-booking-card .container {
    background: #f8fafc;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.service-booking-cta {
    display: block;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-booking-media {
    min-height: 140px;
    background-size: cover;
    background-position: center;
}

.service-booking-body {
    padding: 1.5rem;
}

.service-booking-body h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-booking-body p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.service-booking-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.service-booking-link:hover .service-booking-body h3 {
    color: var(--secondary-color);
}

@media (max-width: 900px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-copy h1 {
        font-size: 2.4rem;
    }

    .service-hero-card {
        order: -1;
    }

    .service-booking-cta {
        grid-template-columns: 1fr;
    }

    .service-booking-link {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .service-hero {
        padding: 4.5rem 0 4rem;
    }

    .service-hero-image {
        height: 220px;
    }

    .service-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Booking Only */
.booking-only-page {
    min-height: 100vh;
    min-height: 100dvh;
    background: radial-gradient(circle at top, rgba(16, 185, 129, 0.12), transparent 50%), #f8fafc;
    padding: 0;
    overflow-x: hidden;
}

.booking-only-shell {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0px;
}

.booking-only-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.booking-only-page .gk-booking,
body.gk-booking-only .gk-booking,
body.gk-blank-page .gk-booking {
    max-width: 1020px !important;
}

.booking-only-card h1 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.booking-only-card p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .booking-only-page {
        padding: 0;
    }

    .booking-only-shell {
        padding: 0;
    }

    .booking-only-card {
        padding: 0;
    }
}

/* Home 1 */
.home1-page {
    background: var(--bg-light);
}

.home1-hero {
    background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.25), transparent 55%),
        linear-gradient(130deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.6)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 6rem 0;
}

.home1-hero--no-image {
    background: linear-gradient(130deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78));
}

.home1-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
}

.home1-hero-copy h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.home1-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.home1-lead {
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.86);
}

.home1-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.home1-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.home1-hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

.home1-hero-image {
    height: 280px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

.home1-hero-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(16, 185, 129, 0.95);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.home1-hero-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.home1-hero-card .home1-lead {
    display: block;
    max-width: none;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.home1-hero-card .home1-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.75rem;
}

.home1-hero-card .home1-trust span {
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.home1-hero-card .home1-hero-actions {
    margin-top: 1rem;
}

.home1-hero-card .btn-secondary {
    border-color: var(--white);
    background: var(--white);
    color: var(--primary-color);
}

.home1-hero-card .btn-secondary:hover,
.home1-hero-card .btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-color);
}

.home1-section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.home1-section-head h2 {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.home1-section-head p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.home1-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 320px));
    justify-content: center;
    gap: 2rem;
}

.home1-service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
}

.home1-service-media {
    height: 140px;
    background-size: cover;
    background-position: center;
}

.home1-services .home1-service-media {
    background-position: center 20%;
}

.home1-service-body {
    padding: 1.5rem;
}

.home1-service-body h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.home1-service-card--link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home1-service-card--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px rgba(15, 23, 42, 0.12);
}

.service-card--link {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.service-card--link::after {
    content: "\2192";
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 700;
}

.service-card--link .card-media {
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    min-height: 66px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

.service-card--link .card-body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.service-card--link .card-body h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.3;
}

.service-card--link:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.38);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.home1-process {
    background: var(--white);
}

.home1-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.home1-process-card {
    background: #f1f5f9;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.home1-step {
    display: inline-block;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.home1-highlight {
    background: linear-gradient(180deg, #f6f7fb, #ffffff);
}

.home1-highlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: center;
}

.home1-checklist {
    margin-top: 1.5rem;
}

.home1-checklist li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.home1-checklist li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.home1-highlight-card {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.2);
}

.home1-highlight-card h3 {
    margin-bottom: 0.5rem;
}

.home1-booking-wrap {
    margin-top: 2rem;
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

@media (max-width: 900px) {
    .home1-hero-grid,
    .home1-highlight-grid {
        grid-template-columns: 1fr;
    }

    .home1-hero-copy h1 {
        font-size: 2.4rem;
    }

    .home1-hero-card {
        order: -1;
    }
}

@media (max-width: 600px) {
    .home1-hero {
        padding: 5rem 0 4rem;
    }

    .home1-hero-image {
        height: 220px;
    }

    .home1-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* PWA install prompt */
.gk-pwa-install {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 1003;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 420px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(11, 18, 32, 0.95);
    color: #f8fafc;
    box-shadow: 0 18px 42px rgba(2, 6, 23, 0.35);
}

.gk-pwa-install[hidden],
.gk-pwa-modal[hidden] {
    display: none !important;
}

.gk-pwa-install__copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.gk-pwa-install__copy strong {
    font-size: 14px;
    line-height: 1.2;
}

.gk-pwa-install__copy span {
    font-size: 12px;
    line-height: 1.35;
    color: rgba(248, 250, 252, 0.88);
}

.gk-pwa-install__actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    justify-content: flex-end;
    flex-shrink: 0;
}

.gk-pwa-install__btn {
    border: none;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
}

.gk-pwa-install__close {
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}

.gk-pwa-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
}

.gk-pwa-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.6);
}

.gk-pwa-modal__card {
    position: relative;
    max-width: 360px;
    margin: 12vh auto 0;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.3);
    border: 1px solid var(--border-color);
}

.gk-pwa-modal__card h3 {
    margin: 0 0 8px;
    color: var(--primary-color);
}

.gk-pwa-modal__card p {
    margin: 0 0 8px;
    color: var(--text-color);
    font-size: 14px;
}

.gk-pwa-modal__list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-color);
}

.gk-pwa-modal__list li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.45;
}

.gk-pwa-modal__step {
    font-size: 12px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0f766e !important;
}

.gk-pwa-modal__actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.gk-pwa-install__btn--muted {
    background: #e2e8f0;
    color: #0f172a;
}

.gk-pwa-install__btn--muted:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

body.gk-pwa-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .gk-pwa-install {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: calc(18px + env(safe-area-inset-bottom));
        padding: 10px 12px;
    }

    body.has-gk-mobile-book-cta .gk-pwa-install {
        bottom: calc(94px + env(safe-area-inset-bottom));
    }
}/* Header auth actions */
.site-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 18px;
}

.site-header-language-switcher {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.site-header-language-switcher .gk-language-switcher__link.is-active {
    display: none;
}

.site-header-language-switcher .gk-language-switcher__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    color: rgba(248, 250, 252, 0.85);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header-language-switcher .gk-language-switcher__link span {
    display: none;
}

.site-header-language-switcher .gk-language-switcher__link::before {
    content: '🌐 ' attr(data-label);
}

.site-header-language-switcher .gk-language-switcher__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.site-header-auth-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header-auth-link:hover {
    transform: translateY(-1px);
}

.site-header-auth-link--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.site-header-auth-link--subtle {
    min-height: 40px;
    padding-inline: 14px;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.site-header-auth-link--subtle:hover,
.site-header-auth-link--subtle.is-active {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.site-header-auth-link--primary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.24);
}

.site-header-auth-link.is-active {
    border-color: rgba(16, 185, 129, 0.44);
    background: rgba(16, 185, 129, 0.16);
}

.site-header-auth-link--primary.is-active {
    background: var(--secondary-color);
    color: var(--white);
}

.site-header-account-summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 6px 14px 6px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header-account-summary:hover,
.site-header-account-summary.is-active {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(16, 185, 129, 0.42);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.site-header-account-summary__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    flex-shrink: 0;
}

.site-header-account-summary__icon svg {
    width: 16px;
    height: 16px;
}

.site-header-account-summary__text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .site-nav {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .site-header-auth-link {
        min-height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }

    .site-header-account-summary {
        min-height: 38px;
        padding-right: 12px;
    }

    .site-header-account-summary__text {
        font-size: 12px;
    }
}

.gk-site-auth-modal[hidden] {
    display: none;
}

.gk-site-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 18px;
}

.gk-site-auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 15, 26, 0.68);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.gk-site-auth-modal__card {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: min(92vh, 900px);
    overflow: auto;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.96) 0%, rgba(15, 23, 42, 0.92) 100%);
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.38);
}

.gk-site-auth-modal__content {
    width: 100%;
}

.gk-site-auth-modal .gk-customer-auth {
    max-width: none;
}

.gk-site-auth-modal .gk-customer-auth__hero {
    display: none;
}

.gk-site-auth-modal .gk-customer-auth__card--hub {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 10px;
}

.gk-site-auth-modal .gk-customer-auth__footer {
    padding-top: 8px;
}

body.gk-site-auth-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .gk-site-auth-modal {
        padding: 10px;
    }

    .gk-site-auth-modal__card {
        padding: 12px;
        border-radius: 20px;
        width: 100%;
    }
}

/* Compact site auth modal */
.gk-site-auth-modal {
    padding: 14px;
}

.gk-site-auth-modal__card {
    width: min(460px, 100%);
    max-height: min(88vh, 760px);
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.2);
}

.gk-site-auth-modal .gk-customer-auth {
    max-width: 410px;
    margin: 0 auto;
}

.gk-site-auth-modal .gk-customer-auth__card--hub {
    gap: 12px;
    padding: 8px 8px 4px;
}

.gk-site-auth-modal .gk-customer-auth__intro {
    gap: 6px;
}

.gk-site-auth-modal .gk-customer-auth__intro h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.gk-site-auth-modal .gk-customer-auth__intro p {
    font-size: 13px;
    line-height: 1.5;
}

.gk-site-auth-modal .gk-auth-methods {
    width: 100%;
    gap: 10px;
}

.gk-site-auth-modal .gk-auth-method__surface,
.gk-site-auth-modal .gk-auth-method__button {
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: none;
}

.gk-site-auth-modal .gk-auth-method__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 16px;
}

.gk-site-auth-modal .gk-auth-method__body strong,
.gk-site-auth-modal .gk-auth-method__copy strong {
    font-size: 14px;
}

.gk-site-auth-modal .gk-auth-method__body span,
.gk-site-auth-modal .gk-auth-method__copy span {
    font-size: 12px;
    line-height: 1.45;
}

.gk-site-auth-modal .gk-auth-divider {
    margin: 2px 0;
    font-size: 11px;
}

.gk-site-auth-modal .gk-customer-auth__footer {
    gap: 8px;
    padding-top: 2px;
}

.gk-site-auth-modal .gk-customer-auth.gk-auth-panel-active .gk-customer-auth__card--hub {
    display: none;
}

.gk-site-auth-modal .gk-auth-modal {
    position: static;
    inset: auto;
    display: block;
    padding: 0;
}

.gk-site-auth-modal .gk-auth-modal__backdrop {
    display: none;
}

.gk-site-auth-modal .gk-auth-modal__dialog {
    width: 100%;
    padding: 4px 4px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}


.gk-site-auth-modal .gk-auth-modal__header {
    gap: 8px;
    padding: 0 18px 0 0;
}

.gk-site-auth-modal .gk-auth-modal__header h4 {
    font-size: 22px;
}

@media (max-width: 768px) {
    .gk-site-auth-modal {
        padding: 10px;
    }

    .gk-site-auth-modal__card {
        width: min(100%, 420px);
        padding: 8px;
        border-radius: 20px;
    }

    .gk-site-auth-modal .gk-customer-auth {
        max-width: 100%;
    }

    .gk-site-auth-modal .gk-customer-auth__intro h3,
    .gk-site-auth-modal .gk-auth-modal__header h4 {
        font-size: 20px;
    }
}

/* Mobile header auth visibility fix */
@media (max-width: 768px) {
    .site-branding {
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-logo-svg {
        display: block;
        height: auto;
        width: min(118px, 32vw);
        max-width: 118px;
    }

    .site-header-actions {
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        gap: 6px;
        margin-left: 0;
    }

    .site-header-auth-link {
        min-height: 32px;
        padding: 0 9px;
        font-size: 11px;
        border-color: rgba(255, 255, 255, 0.24);
    }
}

@media (max-width: 380px) {
    .site-logo-svg {
        width: min(104px, 30vw);
        max-width: 104px;
    }

    .site-header-auth-link {
        min-height: 30px;
        padding: 0 8px;
        font-size: 10px;
    }

    .site-header-language-switcher .gk-language-switcher__link {
        min-width: 20px;
        min-height: 15px;
        padding: 0 3px;
        font-size: 8px;
    }
}

/* Mobile hamburger menu */
.site-mobile-menu-toggle {
    display: none;
    appearance: none;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    transition: background 0.2s ease;
}

.site-mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
}

.site-mobile-menu-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-mobile-menu-toggle.is-open .site-mobile-menu-toggle__bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-mobile-menu-toggle.is-open .site-mobile-menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.site-mobile-menu-toggle.is-open .site-mobile-menu-toggle__bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-mobile-drawer[hidden] {
    display: none;
}

.site-mobile-drawer {
    display: none;
}

.site-mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
    margin: 0;
}

.site-mobile-menu a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    color: rgba(248, 250, 252, 0.85);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.site-mobile-menu .current-menu-item a,
.site-mobile-menu .current_page_item a {
    background: rgba(16, 185, 129, 0.12);
    color: #fff;
}

/* Drawer language toggle — single tap */
.site-mobile-drawer__switcher .gk-language-switcher {
    display: flex;
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    gap: 0;
    border-radius: 0;
    box-shadow: none;
}

.site-mobile-drawer__switcher .gk-language-switcher__link.is-active {
    display: none;
}

.site-mobile-drawer__switcher .gk-language-switcher__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(248, 250, 252, 0.85);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    transition: background 0.2s ease;
}

.site-mobile-drawer__switcher .gk-language-switcher__link span {
    display: none;
}

.site-mobile-drawer__switcher .gk-language-switcher__link::before {
    content: '🌐 ' attr(data-label);
}

.site-mobile-drawer__switcher .gk-language-switcher__link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.site-mobile-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-mobile-drawer__actions .site-header-auth-link {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 14px;
    border-radius: 12px;
}

.site-mobile-drawer__actions .site-header-account-summary {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 10px 14px;
    border-radius: 14px;
}

.site-mobile-drawer__actions .site-header-account-summary__text {
    font-size: 14px;
}

@media (max-width: 768px) {
    .site-header-actions--desktop {
        display: none !important;
    }

    .site-nav {
        display: none !important;
    }

    .site-mobile-menu-toggle {
        display: flex;
    }

    .site-mobile-drawer {
        display: block;
        position: absolute;
        top: calc(100% + 8px);
        left: 8px;
        right: 8px;
        border-radius: 16px;
        background: rgba(15, 23, 42, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.14);
        -webkit-backdrop-filter: blur(20px) saturate(130%);
        backdrop-filter: blur(20px) saturate(130%);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .site-mobile-drawer__content {
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
}

.booking-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 12px 8px;
}

.booking-topbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.booking-topbar__brand:hover {
    color: #0f172a;
}

.booking-topbar__brand-mark {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.14);
}

.booking-topbar__brand-text {
    font-size: 20px;
}

.booking-topbar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-topbar__auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.booking-topbar__auth:hover {
    color: #0f172a;
    transform: translateY(-1px);
}

.booking-topbar__auth--primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.booking-topbar__auth--primary:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .booking-topbar {
        position: sticky;
        top: 0;
        z-index: 15;
        padding: 10px 10px 6px;
        margin-bottom: 4px;
        background: rgba(248, 250, 252, 0.9);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

    .booking-topbar__brand-text {
        font-size: 18px;
    }

    .booking-topbar__actions {
        gap: 6px;
    }

    .booking-topbar__auth {
        min-height: 32px;
        padding: 0 10px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .booking-topbar {
        gap: 8px;
        padding: 8px 8px 6px;
    }

    .booking-topbar__brand {
        gap: 8px;
    }

    .booking-topbar__brand-text {
        font-size: 16px;
    }

    .booking-topbar__auth {
        min-height: 30px;
        padding: 0 8px;
        font-size: 10px;
    }
}












.home1-booking .home1-service-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 18px;
    overflow: visible;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.home1-booking .home1-service-card::after {
    content: "\2192";
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 700;
}

.home1-booking .home1-service-media {
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    min-height: 66px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

.home1-booking .home1-service-body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.home1-booking .home1-service-body h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.3;
}

.home1-booking .home1-service-card--link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.home1-booking .home1-service-card--link:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.38);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.service-booking-cta.service-booking-cta--simple {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 2rem;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.service-booking-cta--simple .service-booking-btn {
    min-width: min(100%, 320px);
}

.service-booking-cta--simple .service-booking-note {
    margin: 0;
    max-width: 560px;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-booking-cta--simple .service-booking-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.service-booking-cta--simple .service-booking-trust span {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 34px;
    padding: 0 14px 0 34px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
}

.service-booking-cta--simple .service-booking-trust span::before {
    left: 14px;
}

@media (max-width: 900px) {
    .service-booking-cta.service-booking-cta--simple {
        padding: 1.5rem;
    }

    .service-booking-cta--simple .service-booking-btn {
        width: 100%;
        min-width: 0;
    }
}

/* Mobile drawer overlay + light panel */
body.site-mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    body.site-mobile-menu-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(8, 15, 26, 0.55);
        z-index: 998;
    }

    .site-mobile-menu-toggle {
        position: relative;
        z-index: 1001;
    }

    .site-mobile-drawer {
        position: fixed;
        top: 88px;
        left: 12px;
        right: 12px;
        z-index: 1000;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(148, 163, 184, 0.24);
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
        -webkit-backdrop-filter: blur(18px) saturate(120%);
        backdrop-filter: blur(18px) saturate(120%);
        overflow: hidden;
    }

    .site-mobile-menu a {
        color: #0f172a;
        background: transparent;
    }

    .site-mobile-menu a:hover {
        background: rgba(15, 23, 42, 0.05);
        color: #0f172a;
    }

    .site-mobile-menu .current-menu-item a,
    .site-mobile-menu .current_page_item a {
        background: rgba(16, 185, 129, 0.12);
        color: #047857;
    }

    .site-mobile-drawer__switcher .gk-language-switcher__link {
        border: 1px solid rgba(148, 163, 184, 0.28);
        background: #f8fafc;
        color: #0f172a;
    }

    .site-mobile-drawer__switcher .gk-language-switcher__link:hover {
        background: rgba(15, 23, 42, 0.05);
        color: #0f172a;
    }

    .site-mobile-drawer__actions {
        border-top: 1px solid rgba(148, 163, 184, 0.18);
    }
}

/* Mobile drawer auth buttons on light panel */
@media (max-width: 768px) {
    .site-mobile-drawer__actions .site-header-auth-link--ghost {
        background: #f8fafc;
        border-color: rgba(148, 163, 184, 0.28);
        color: #0f172a;
        box-shadow: none;
    }

    .site-mobile-drawer__actions .site-header-auth-link--ghost:hover,
    .site-mobile-drawer__actions .site-header-auth-link--ghost.is-active {
        background: rgba(15, 23, 42, 0.05);
        border-color: rgba(148, 163, 184, 0.34);
        color: #0f172a;
    }

    .site-mobile-drawer__actions .site-header-auth-link--subtle {
        min-height: 48px;
        padding: 0 16px;
        justify-content: center;
        border: 1px solid rgba(148, 163, 184, 0.34);
        border-radius: 12px;
        background: #f8fafc;
        color: #0f172a;
        font-size: 14px;
        font-weight: 700;
        box-shadow: none;
    }

    .site-mobile-drawer__actions .site-header-auth-link--subtle:hover,
    .site-mobile-drawer__actions .site-header-auth-link--subtle.is-active {
        background: rgba(15, 23, 42, 0.04);
        border-color: rgba(148, 163, 184, 0.42);
        color: #0f172a;
    }

    .site-mobile-drawer__actions .site-header-auth-link--primary {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: #ffffff;
    }
}

/* Close button hit areas */
.gk-pwa-install__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
}
.gk-mobile-book-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: none;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 0.92) 42%, rgba(248, 250, 252, 0.98) 100%);
    pointer-events: none;
}

.gk-mobile-book-cta__inner {
    max-width: 560px;
    margin: 0 auto;
}

.gk-mobile-book-cta__button {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(16, 185, 129, 0.88);
    background: var(--secondary-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(16, 185, 129, 0.28);
}

.gk-mobile-book-cta__button:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.gk-mobile-book-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
}

.gk-mobile-book-cta__label {
    white-space: nowrap;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }

    body.has-gk-mobile-book-cta {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }

    .gk-mobile-book-cta {
        display: block;
    }

    body.has-gk-mobile-book-cta .gk-back-to-top {
        bottom: calc(108px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 380px) {
    .gk-mobile-book-cta__button {
        min-height: 52px;
        padding: 0 16px;
        font-size: 14px;
    }

    .gk-mobile-book-cta__icon {
        width: 32px;
        height: 32px;
    }
}












.site-mobile-menu--secondary {
    margin-top: 10px;
}

.site-mobile-drawer__content > .site-mobile-menu + .site-mobile-menu--secondary {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .site-mobile-drawer__content > .site-mobile-menu + .site-mobile-menu--secondary {
        border-top-color: rgba(148, 163, 184, 0.18);
    }
}


/* Auth entry pages */
.auth-entry-page {
    position: relative;
    min-height: calc(100vh - 140px);
    padding: 150px 0 88px;
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 34%),
        linear-gradient(180deg, #f8fbfc 0%, #eef4f7 100%);
}

.auth-entry-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 32px;
    align-items: start;
}

.auth-entry-copy {
    display: grid;
    gap: 20px;
    padding: 12px 0;
    max-width: 620px;
}

.auth-entry-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.auth-entry-copy h1 {
    margin: 0;
    font-size: clamp(2rem, 3.3vw, 3.35rem);
    line-height: 1.04;
    color: #0f172a;
}

.auth-entry-copy p {
    margin: 0;
    max-width: 58ch;
    color: var(--text-muted);
    font-size: 1.03rem;
    line-height: 1.72;
}

.auth-entry-highlights {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.auth-entry-highlights li {
    position: relative;
    padding-left: 28px;
    color: #0f172a;
    font-weight: 500;
    line-height: 1.65;
}

.auth-entry-highlights li::before {
    content: '';
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: var(--secondary-color);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.14);
    transform: translateY(-50%);
}

.auth-entry-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.auth-entry-link {
    color: #047857;
    font-weight: 600;
    text-decoration: none;
}

.auth-entry-link:hover {
    color: #065f46;
    text-decoration: underline;
}

.auth-entry-panel {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.auth-entry-panel .gk-customer-auth {
    max-width: none;
}

.auth-entry-fallback {
    display: grid;
    gap: 8px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    background: #ffffff;
}

.auth-entry-fallback strong {
    color: #0f172a;
    font-size: 1.1rem;
}

.auth-entry-fallback p {
    margin: 0;
    color: var(--text-muted);
}

@media (max-width: 960px) {
    .auth-entry-page {
        padding: 132px 0 72px;
    }

    .auth-entry-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .auth-entry-copy {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .auth-entry-page {
        padding: 120px 0 56px;
    }

    .auth-entry-copy {
        gap: 16px;
    }

    .auth-entry-panel {
        padding: 12px;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .auth-entry-page {
        padding-top: 108px;
    }

    .auth-entry-eyebrow {
        min-height: 32px;
        padding: 0 14px;
        font-size: 0.72rem;
    }

    .auth-entry-copy h1 {
        font-size: 1.9rem;
    }

    .auth-entry-copy p,
    .auth-entry-highlights li {
        font-size: 0.95rem;
    }
}

.auth-entry-panel .gk-customer-auth__hero {
    display: none;
}

.auth-entry-panel .gk-customer-auth__card,
.auth-entry-panel .gk-customer-auth__card--hub {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.auth-entry-panel .gk-customer-auth__card--hub::before,
.auth-entry-panel .gk-customer-auth__card::before {
    display: none;
}

.auth-entry-panel .gk-customer-auth__intro {
    gap: 6px;
}

.auth-entry-panel .gk-customer-auth__intro h3 {
    margin-bottom: 2px;
}

.auth-entry-panel .gk-customer-auth__footer {
    padding-top: 8px;
}


/* Homepage structure refresh */
.site-main.home1-page {
    background: #f8fafc;
}

.home1-hero {
    background-image: linear-gradient(rgba(8, 14, 28, 0.24), rgba(8, 14, 28, 0.24)), var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 6rem 0;
}

.home1-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
}

.home1-hero-copy-shell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.home1-hero-card h1 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    color: var(--white);
}

.home1-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.home1-eyebrow--dark {
    color: rgba(15, 23, 42, 0.68);
}

.home1-lead {
    display: block;
    font-size: 0.98rem;
    max-width: none;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
}

.home1-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.home1-hero-actions--outside {
    margin-bottom: 0;
}

.home1-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.78);
}

.home1-trust span {
    padding: 0.32rem 0.58rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 1440px) {
    .home1-hero-card .home1-trust,
    .home1-trust {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
}


.home1-hero-card {
    position: relative;
    background: rgba(11, 18, 32, 0.55);
    border-radius: 18px;
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
}

.home1-hero-card--content {
    max-width: 980px;
    justify-self: start;
    width: 100%;
}

.home1-hero-card-copy {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.home1-hero-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(16, 185, 129, 0.95);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.home1-hero-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.home1-service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.home1-process {
    background: var(--white);
}

.home1-highlight {
    background: linear-gradient(180deg, #f6f7fb, #ffffff);
}

.home1-proof-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.home1-proof-item {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home1-proof-item strong,
.home1-proof-item span {
    display: block;
}

.home1-proof-item span {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
}

.home1-faq {
    background: var(--bg-light);
}

.home1-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.home1-faq-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #dbe6f3;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.home1-faq-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.home1-final-cta {
    background: var(--white);
}

.home1-final-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: center;
    padding: 2.25rem;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #eef6f1 100%);
    border: 1px solid #d8e6dc;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.home1-final-cta-card h2 {
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.home1-final-cta-card p {
    color: var(--text-muted);
}

.home1-final-cta-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 900px) {
    .home1-hero-grid,
    .home1-highlight-grid,
    .home1-final-cta-card {
        grid-template-columns: 1fr;
    }

    .home1-hero-card h1 {
        font-size: 2rem;
    }

    .home1-hero-card--content {
        max-width: none;
        justify-self: stretch;
    }

    .home1-final-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .home1-hero {
        padding: 5rem 0 3rem;
        align-items: flex-start;
    }

    .home1-service-actions,
    .home1-final-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home1-hero-card .home1-hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .home1-hero-card .home1-hero-actions .btn {
        width: auto;
    }

    .home1-hero-meta {
        flex-direction: column;
    }
}

.home1-hero-card--single {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(11, 18, 32, 0.52);
}

.home1-hero-card--single .home1-hero-copy-shell {
    display: grid;
    gap: 1.15rem;
    align-content: start;
    max-width: 760px;
}

.home1-hero-card--single h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 4.8vw, 4.1rem);
    line-height: 1.02;
    margin: 0;
}

.home1-hero-card--single .home1-lead {
    max-width: 60ch;
    font-size: 1rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.82);
}

.home1-hero-discovery {
    display: grid;
    gap: 0.9rem;
    align-content: start;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home1-hero-discovery-head {
    display: grid;
    gap: 0.7rem;
}

.home1-hero-discovery-head h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    line-height: 1.18;
}

.home1-hero-discovery-head p {
    margin: 0;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.72);
}

.home1-hero-card--single .home1-hero-badge {
    position: static;
    width: fit-content;
    margin: 0;
}

.home1-hero-card--single .home1-trust {
    gap: 0.6rem;
    margin-top: 0.15rem;
}

.home1-hero-card--single .home1-trust span,
.home1-hero-card--single .home1-hero-meta span {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.85rem;
}

.home1-hero-card--single .home1-quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.home1-hero-card--single .home1-quick-link {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.home1-hero-card--single .home1-quick-link:hover,
.home1-hero-card--single .home1-quick-link:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.home1-hero-card--single .home1-quick-link__title {
    color: var(--white);
}

.home1-hero-card--single .home1-quick-link__meta {
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
    .home1-hero-card--single {
        padding: 1.5rem;
    }

    .home1-hero-card--single h1 {
        max-width: none;
    }

    .home1-hero-card--single .home1-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .home1-hero-card--single {
        padding: 1.2rem;
        border-radius: 20px;
    }

    .home1-hero-card--single .home1-quick-grid {
        grid-template-columns: 1fr;
    }

    .home1-hero-card--single .home1-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home1-hero-card--single .home1-hero-actions .btn {
        width: 100%;
    }
}

.home1-process-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d9e7f1;
}

.home1-process-visual img {
    display: block;
    width: min(100%, 220px);
    height: auto;
}

@media (min-width: 769px) {
    .header-container {
        position: relative;
    }

    .site-branding {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        text-align: center;
        pointer-events: none;
    }

    .site-branding .site-logo {
        pointer-events: auto;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .site-branding {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        z-index: auto;
        text-align: left;
        pointer-events: auto;
    }

    .site-branding .site-logo {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .site-branding,
    .site-logo {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .site-logo img,
    .site-logo-image,
    .site-logo-svg {
        display: block;
        transform: translateY(1px);
    }
}

@media (max-width: 768px) {
    .header-container {
        align-items: center;
    }

    .site-branding {
        display: flex;
        align-items: center;
        align-self: center;
        height: 56px;
    }

    .site-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
    }

    .site-logo img,
    .site-logo-image,
    .site-logo-svg {
        display: block;
        margin: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }

    .site-branding {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        z-index: 2;
        text-align: center;
        pointer-events: none;
    }

    .site-branding .site-logo {
        justify-content: center;
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .header-container {
        justify-content: flex-end;
    }

    .site-mobile-menu-toggle {
        margin-left: auto;
        position: relative;
        z-index: 3;
    }
}

@media (max-width: 1024px) {
    .site-header-actions--desktop {
        display: none !important;
    }

    .site-nav {
        display: none !important;
    }

    .header-container {
        position: relative;
        justify-content: flex-end;
        align-items: center;
    }

    .site-branding,
    .site-logo {
        display: flex;
        align-items: center;
    }

    .site-branding {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        justify-content: center;
        height: auto;
        z-index: 2;
        text-align: center;
        pointer-events: none;
    }

    .site-branding .site-logo {
        justify-content: center;
        pointer-events: auto;
    }

    .site-mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        position: relative;
        z-index: 1001;
    }

    .site-mobile-drawer {
        display: block;
        position: fixed;
        top: 88px;
        left: 12px;
        right: 12px;
        z-index: 1000;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(148, 163, 184, 0.24);
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
        -webkit-backdrop-filter: blur(18px) saturate(120%);
        backdrop-filter: blur(18px) saturate(120%);
        overflow: hidden;
    }

    .site-mobile-drawer__content {
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    body.site-mobile-menu-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(8, 15, 26, 0.55);
        z-index: 998;
    }

    .site-mobile-menu a {
        color: #0f172a;
        background: transparent;
    }

    .site-mobile-menu a:hover {
        background: rgba(15, 23, 42, 0.05);
        color: #0f172a;
    }

    .site-mobile-menu .current-menu-item a,
    .site-mobile-menu .current_page_item a {
        background: rgba(16, 185, 129, 0.12);
        color: #047857;
    }

    .site-mobile-drawer__switcher .gk-language-switcher__link {
        border: 1px solid rgba(148, 163, 184, 0.28);
        background: #f8fafc;
        color: #0f172a;
    }

    .site-mobile-drawer__switcher .gk-language-switcher__link:hover {
        background: rgba(15, 23, 42, 0.05);
        color: #0f172a;
    }

    .site-mobile-drawer__actions {
        border-top: 1px solid rgba(148, 163, 184, 0.18);
    }

    .site-mobile-drawer__actions .site-header-auth-link--ghost {
        background: #f8fafc;
        border-color: rgba(148, 163, 184, 0.28);
        color: #0f172a;
        box-shadow: none;
    }

    .site-mobile-drawer__actions .site-header-auth-link--ghost:hover,
    .site-mobile-drawer__actions .site-header-auth-link--ghost.is-active {
        background: rgba(15, 23, 42, 0.05);
        border-color: rgba(148, 163, 184, 0.34);
        color: #0f172a;
    }

    .site-mobile-drawer__actions .site-header-auth-link--subtle {
        min-height: 48px;
        padding: 0 16px;
        justify-content: center;
        border: 1px solid rgba(148, 163, 184, 0.34);
        border-radius: 12px;
        background: #f8fafc;
        color: #0f172a;
        font-size: 14px;
        font-weight: 700;
        box-shadow: none;
    }

    .site-mobile-drawer__actions .site-header-auth-link--subtle:hover,
    .site-mobile-drawer__actions .site-header-auth-link--subtle.is-active {
        background: rgba(15, 23, 42, 0.04);
        border-color: rgba(148, 163, 184, 0.42);
        color: #0f172a;
    }

    .site-mobile-drawer__actions .site-header-auth-link--primary {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: #ffffff;
    }
}








/* Translation-safe mobile overflow guard */
@media (max-width: 768px) {
    .site-header-actions,
    .booking-topbar__actions,
    .home1-service-actions,
    .home1-final-cta-actions,
    .home-tv-hero-actions {
        flex-wrap: wrap;
    }

    .site-header-auth-link,
    .site-mobile-drawer__actions .site-header-auth-link,
    .booking-topbar__auth,
    .service-frequency-badge,
    .gk-mobile-book-cta__button,
    .gk-mobile-book-cta__label,
    .gk-contact-bubble-text,
    .site-header-language-switcher .gk-language-switcher__link,
    .site-mobile-drawer__switcher .gk-language-switcher__link {
        min-width: 0;
        max-width: 100%;
        white-space: normal;
        line-height: 1.25;
        text-align: center;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .gk-mobile-book-cta__button {
        height: auto;
        min-height: 56px;
        padding: 10px 14px;
    }

    .service-frequency-badge {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-header-auth-link,
    .booking-topbar__auth {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Contact page translation-safe layout guards */
@media (max-width: 980px) {
    .contact-page--modern .contact-hero-grid,
    .contact-page--modern .contact-main-grid,
    .contact-page--modern .contact-method-grid,
    .contact-page--modern .contact-service-shortcuts {
        min-width: 0;
    }

    .contact-page--modern .contact-hero-grid > *,
    .contact-page--modern .contact-main-grid > *,
    .contact-page--modern .contact-method-grid > *,
    .contact-page--modern .contact-service-shortcuts > * {
        min-width: 0;
    }

    .contact-page--modern .contact-hero-copy,
    .contact-page--modern .contact-hero-card,
    .contact-page--modern .contact-hero-links,
    .contact-page--modern .contact-stack,
    .contact-page--modern .contact-method-copy,
    .contact-page--modern .contact-panel,
    .contact-page--modern .contact-stat-card {
        min-width: 0;
        max-width: 100%;
    }

    .contact-page--modern .contact-hero-copy h1,
    .contact-page--modern .contact-hero-copy p,
    .contact-page--modern .contact-stat-card p,
    .contact-page--modern .contact-method-copy h2,
    .contact-page--modern .contact-method-copy p,
    .contact-page--modern .contact-meta-list span,
    .contact-page--modern .contact-checklist li,
    .contact-page--modern .contact-empty,
    .contact-page--modern .contact-shortcut span,
    .contact-page--modern .contact-action-link,
    .contact-page--modern .contact-hero-link strong,
    .contact-page--modern .contact-hero-link-label {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .contact-page--modern .contact-hero-link,
    .contact-page--modern .contact-shortcut,
    .contact-page--modern .contact-action-link {
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .contact-page--modern .contact-hero-grid,
    .contact-page--modern .contact-main-grid {
        gap: 1rem;
    }

    .contact-page--modern .contact-hero-copy {
        max-width: 100%;
    }

    .contact-page--modern .contact-hero-copy h1,
    .contact-page--modern .contact-hero-copy p {
        max-width: 100%;
    }

    .contact-page--modern .contact-hero-link {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .contact-page--modern .contact-hero-link strong,
    .contact-page--modern .contact-hero-link-label {
        width: 100%;
    }

    .contact-page--modern .contact-hero-actions .btn {
        min-width: 0;
    }
}

/* Grenbee strategic home refresh */
.gb-home {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 26%, #f7faf8 100%);
}

.gb-home-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 48px;
    background:
        linear-gradient(140deg, rgba(7, 16, 34, 0.92), rgba(14, 92, 73, 0.86)),
        var(--gb-home-hero) center/cover no-repeat;
    color: #fff;
}

.gb-home-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 30%);
    pointer-events: none;
}

.gb-home-hero__grid,
.gb-home-why__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    align-items: center;
}

.gb-home-hero__copy,
.gb-home-hero__panel,
.gb-home-final__card,
.gb-home-service-card,
.gb-home-value-stack__item,
.gb-home-process-card {
    position: relative;
    z-index: 1;
}

.gb-home-badge,
.gb-home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.2);
    color: #f8fafc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gb-home-kicker {
    background: rgba(17, 24, 39, .06);
    border: 1px solid rgba(17, 24, 39, .08);
    color: #0f172a;
}

.gb-home-kicker--light {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.18);
    color: #fff;
}

.gb-home-eyebrow {
    margin: 18px 0 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;
    color: rgba(255,255,255,.84);
}

.gb-home-hero h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 66px);
    line-height: .95;
    letter-spacing: -.04em;
    max-width: 760px;
}

.gb-home-lead {
    margin: 20px 0 0;
    max-width: 700px;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255,255,255,.9);
}

.gb-home-hero__actions,
.gb-home-final__actions,
.gb-home-service-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gb-home-hero__actions {
    margin-top: 28px;
}

.gb-home-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.gb-home-proof span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    font-size: 14px;
    color: rgba(255,255,255,.92);
}

.gb-home-hero-card,
.gb-home-service-card,
.gb-home-value-stack__item,
.gb-home-process-card,
.gb-home-final__card {
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.gb-home-hero-card {
    padding: 28px;
    background: rgba(255,255,255,.96);
    color: #0f172a;
}

.gb-home-hero-card__top p {
    margin: 0 0 6px;
    color: #0d9488;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.gb-home-hero-card__top strong {
    display: block;
    font-size: 28px;
    line-height: 1.1;
}

.gb-home-hero-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    gap: 12px;
}

.gb-home-hero-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.gb-home-hero-list a,
.gb-home-text-link {
    color: #0f766e;
    font-weight: 700;
    text-decoration: none;
}

.gb-home-hero-note {
    display: grid;
    gap: 6px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
}

.gb-home-head {
    max-width: 840px;
    margin-bottom: 28px;
}

.gb-home-head--center {
    text-align: center;
    margin-inline: auto;
}

.gb-home-head h2,
.gb-home-why h2,
.gb-home-final h2 {
    margin: 14px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.03em;
    color: #0f172a;
}

.gb-home-head p,
.gb-home-why p,
.gb-home-final p {
    margin: 16px 0 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
}

.gb-home-services__grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gb-home-service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.gb-home-service-card__media {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}

.gb-home-service-card__body {
    padding: 24px;
}

.gb-home-service-card__eyebrow {
    margin: 0 0 10px;
    color: #0d9488;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gb-home-service-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    color: #0f172a;
}

.gb-home-service-card p {
    margin: 14px 0 0;
    color: #475569;
    line-height: 1.65;
}

.gb-home-service-card__actions {
    margin-top: 18px;
    align-items: center;
}

.gb-home-checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.gb-home-checklist li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: #0f172a;
}

.gb-home-checklist li::before {
    content: '•';
    position: absolute;
    left: 10px;
    top: -2px;
    color: #10b981;
    font-size: 26px;
    line-height: 1;
}

.gb-home-value-stack {
    display: grid;
    gap: 16px;
}

.gb-home-value-stack__item {
    padding: 22px 22px 24px;
    background: #fff;
    border: 1px solid #dbe5f0;
}

.gb-home-value-stack__item strong {
    display: block;
    font-size: 20px;
    color: #0f172a;
}

.gb-home-value-stack__item span {
    display: block;
    margin-top: 10px;
    color: #475569;
    line-height: 1.65;
}

.gb-home-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.gb-home-process-card {
    padding: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
}

.gb-home-process-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #0f172a;
    color: #fff;
    font-weight: 800;
}

.gb-home-process-card h3 {
    margin: 18px 0 0;
    font-size: 22px;
    color: #0f172a;
}

.gb-home-process-card p {
    margin: 12px 0 0;
    color: #475569;
    line-height: 1.65;
}

.gb-home-final {
    padding-bottom: 84px;
}

.gb-home-final__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, #0f172a 0%, #0f766e 100%);
    color: #fff;
}

.gb-home-final__card h2,
.gb-home-final__card p {
    color: #fff;
}

@media (max-width: 1024px) {
    .gb-home-services__grid,
    .gb-home-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gb-home-hero__grid,
    .gb-home-why__grid,
    .gb-home-final__card {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 767px) {
    .gb-home-hero {
        padding-top: 72px;
    }

    .gb-home-hero h1 {
        font-size: 40px;
    }

    .gb-home-services__grid,
    .gb-home-process__grid {
        grid-template-columns: 1fr;
    }

    .gb-home-hero-card,
    .gb-home-final__card,
    .gb-home-service-card__body,
    .gb-home-process-card,
    .gb-home-value-stack__item {
        padding: 22px;
    }

    .gb-home-hero-list li {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Grenbee public refinement */
.gbx-home,
.gbx-services-page,
.gbx-service-page {
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 20%, #f8fbf9 100%);
}

.gbx-home-section {
    padding: 76px 0;
}

.gbx-home-section--soft {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.04) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.gbx-home-section--flush-bottom {
    padding-bottom: 96px;
}

.gbx-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gbx-kicker--light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.gbx-section-head {
    max-width: 820px;
    margin-bottom: 32px;
}

.gbx-section-head--center {
    text-align: center;
    margin-inline: auto;
}

.gbx-section-head h2,
.gbx-home-hero__copy h1,
.gbx-page-hero h1,
.gbx-service-hero__copy h1,
.gbx-final-card h2 {
    margin: 14px 0 0;
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.gbx-home-hero__copy h1,
.gbx-service-hero__copy h1,
.gbx-final-card h2 {
    color: #ffffff;
}

.gbx-section-head p,
.gbx-home-hero__lead,
.gbx-page-hero p,
.gbx-service-hero__lead,
.gbx-final-card p,
.gbx-stack-card p,
.gbx-panel-card__note,
.gbx-panel-card--hero p {
    margin: 16px 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #475569;
}

.gbx-home-hero,
.gbx-service-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.gbx-home-hero {
    padding: 98px 0 74px;
    background:
        linear-gradient(140deg, rgba(8, 15, 31, 0.92), rgba(14, 92, 73, 0.82)),
        var(--gbx-home-hero) center/cover no-repeat;
}

.gbx-service-hero {
    padding: 70px 0 54px;
    background:
        linear-gradient(135deg, rgba(8, 15, 31, 0.94), rgba(8, 15, 31, 0.72)),
        var(--gbx-service-hero) center/cover no-repeat;
}

.gbx-home-hero::before,
.gbx-service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 32%);
    pointer-events: none;
}

.gbx-home-hero__grid,
.gbx-page-hero__grid,
.gbx-service-hero__grid,
.gbx-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.gbx-home-hero__eyebrow,
.gbx-service-hero__microcopy {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.gbx-home-hero__lead,
.gbx-service-hero__lead,
.gbx-final-card p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
}

.gbx-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.gbx-action-row--compact {
    margin-top: 20px;
    align-items: center;
}

.gbx-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.gbx-pill-row span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.96);
    font-size: 14px;
}

.gbx-panel-card,
.gbx-service-card,
.gbx-stack-card,
.gbx-process-card,
.gbx-detail-card,
.gbx-room-card,
.gbx-addon-card,
.gbx-quote-card,
.gbx-frequency-card,
.gbx-rule-card,
.gbx-final-card {
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

.gbx-panel-card {
    padding: 28px;
}

.gbx-panel-card--soft {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.gbx-panel-card--hero {
    padding: 18px;
    background: rgba(255,255,255,0.96);
}

.gbx-panel-card__head p {
    margin: 0 0 6px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gbx-panel-card__head h2,
.gbx-panel-card__head strong {
    margin: 0;
    font-size: 28px;
    line-height: 1.08;
    color: #0f172a;
}

.gbx-home-service-list,
.gbx-inline-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 12px;
}

.gbx-home-service-list li,
.gbx-inline-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.gbx-home-service-list strong,
.gbx-inline-list strong {
    display: block;
    color: #0f172a;
}

.gbx-home-service-list span,
.gbx-inline-list span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: #64748b;
}

.gbx-home-service-list a,
.gbx-text-link {
    align-self: center;
    color: #0f766e;
    font-weight: 800;
    text-decoration: none;
}

.gbx-inline-list--cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gbx-inline-list--cards li,
.gbx-inline-list--summary li {
    justify-content: flex-start;
}

.gbx-service-grid,
.gbx-quote-grid,
.gbx-room-grid,
.gbx-addon-grid,
.gbx-rule-grid,
.gbx-frequency-grid,
.gbx-detail-grid,
.gbx-process-grid {
    display: grid;
    gap: 32px;
}

.gbx-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gbx-service-card {
    overflow: hidden;
}

.gbx-service-card__media {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}
.gbx-service-card__media--empty {
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.gbx-service-card__body {
    padding: 24px;
}

.gbx-service-card__eyebrow {
    margin: 0 0 10px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gbx-service-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    color: #0f172a;
}

.gbx-service-card p,
.gbx-service-card__meta {
    margin: 14px 0 0;
    color: #475569;
    line-height: 1.65;
}

.gbx-service-card__meta {
    font-size: 14px;
    color: #0f766e;
    font-weight: 700;
}

.gbx-checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.gbx-checklist--tight {
    margin-top: 16px;
    gap: 10px;
}

.gbx-checklist li {
    position: relative;
    padding-left: 28px;
    color: #0f172a;
    line-height: 1.65;
}

.gbx-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 800;
}

.gbx-checklist--negative li::before {
    content: '×';
    color: #ef4444;
}

.gbx-stack,
.gbx-room-grid,
.gbx-quote-grid,
.gbx-frequency-grid,
.gbx-detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 36px;
}

.gbx-stack-card,
.gbx-detail-card,
.gbx-room-card,
.gbx-quote-card,
.gbx-rule-card {
    padding: 24px;
    margin-bottom: 12px;
}

.gbx-stack-card strong,
.gbx-detail-card h2,
.gbx-detail-card h3,
.gbx-room-card h3,
.gbx-addon-card strong {
    display: block;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.2;
}

.gbx-process-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gbx-process-card {
    padding: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    text-align: center;
    position: relative;
}

.gbx-process-card span {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 800;
}

.gbx-process-card h3,
.gbx-process-card p {
    margin: 0;
}

.gbx-process-card h3 {
    margin-top: 16px;
    font-size: 22px;
    color: #0f172a;
}

.gbx-process-card p {
    margin-top: 12px;
    color: #475569;
    line-height: 1.65;
}

.gbx-process-card--icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    display: block;
}

.gbx-page-hero {
    padding: 56px 0 24px;
}

.gbx-page-hero h1,
.gbx-page-hero p {
    color: #0f172a;
}

.gbx-page-hero p {
    max-width: 740px;
}

.gbx-service-hero__media {
    height: 240px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.gbx-service-hero__summary {
    padding: 22px 20px 20px;
}

.gbx-panel-card__head {
    margin-bottom: 18px;
}

.gbx-panel-card__head p {
    margin: 0 0 6px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gbx-service-hero__summary h2 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.2;
    color: #0f172a;
}

.gbx-service-hero__aside-actions {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.gbx-service-hero__aside-actions .btn-block {
    width: 100%;
}

.gbx-service-hero__mini-block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.gbx-service-hero__mini-block strong {
    display: block;
    color: #0f172a;
    font-size: 0.98rem;
}

.gbx-service-hero__mini-block p {
    margin-top: 8px;
    font-size: 15px;
}

.gbx-service-hero__mini-block--muted {
    color: #475569;
}

.gbx-quote-card p,
.gbx-quote-card cite {
    margin: 0;
}

.gbx-quote-card p {
    color: #334155;
    line-height: 1.75;
    font-style: italic;
}

.gbx-quote-card cite {
    display: block;
    margin-top: 14px;
    color: #0f766e;
    font-style: normal;
    font-weight: 700;
}

.gbx-addon-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gbx-addon-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
}

.gbx-addon-card span {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 14px;
}

.gbx-addon-card em {
    align-self: center;
    font-style: normal;
    color: #0f766e;
    font-weight: 800;
    white-space: nowrap;
}

.gbx-rule-grid,
.gbx-frequency-grid {
    margin-top: 22px;
}

.gbx-rule-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gbx-rule-card {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #9a3412;
}

.gbx-frequency-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gbx-frequency-card {
    padding: 18px;
    text-align: center;
}

.gbx-frequency-card small {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #0f766e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gbx-frequency-card strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
}

.gbx-frequency-card span {
    display: block;
    margin-top: 6px;
    color: #0f766e;
    font-weight: 800;
}

.gbx-final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    background: linear-gradient(135deg, #0f172a 0%, #0f766e 100%);
    color: #ffffff;
}

.gbx-final-card--service {
    background: linear-gradient(135deg, #0f172a 0%, #14532d 100%);
}

@media (max-width: 1100px) {
    .gbx-service-grid,
    .gbx-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .gbx-home-hero__grid,
    .gbx-page-hero__grid,
    .gbx-service-hero__grid,
    .gbx-split-grid,
    .gbx-final-card {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .gbx-service-hero {
        padding-top: 56px;
    }
}

@media (max-width: 767px) {
    .gbx-home-section {
        padding: 72px 0;
    }

    .gbx-home-hero,
    .gbx-service-hero {
        padding-top: 44px;
        padding-bottom: 56px;
    }

    .gbx-service-grid,
    .gbx-process-grid,
    .gbx-page-hero__grid,
    .gbx-home-hero__grid,
    .gbx-service-hero__grid,
    .gbx-split-grid {
        grid-template-columns: 1fr;
    }

    .gbx-service-grid,
    .gbx-process-grid,
    .gbx-room-grid,
    .gbx-quote-grid,
    .gbx-detail-grid,
    .gbx-addon-grid,
    .gbx-rule-grid,
    .gbx-frequency-grid {
        grid-template-columns: 1fr;
    }

    .gbx-home-service-list li,
    .gbx-inline-list li,
    .gbx-addon-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .gbx-panel-card,
    .gbx-service-card__body,
    .gbx-stack-card,
    .gbx-process-card,
    .gbx-detail-card,
    .gbx-room-card,
    .gbx-quote-card,
    .gbx-rule-card,
    .gbx-final-card {
        padding: 22px;
    }

    .gbx-page-hero {
        padding-top: 40px;
    }
}

/* Custom overrides for the refreshed service grid and landing spacing */
.home1-service-grid {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    justify-content: center;
    gap: 1.5rem;
}
.home1-service-card {
    width: 100%;
    max-width: 380px;
    min-height: 340px;
}
.home1-service-card .home1-service-media {
    height: 190px;
    background-position: center 20%;
}
.home1-service-media--empty {
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}
@media (max-width: 640px) {
    .home1-service-grid {
        grid-template-columns: 1fr;
        max-width: 90%;
    }

    .home1-service-card {
        max-width: 100%;
    }
}
.site-main.service-landing {
    padding-top: 32px;
}
.site-main.gbx-services-page,
.site-main.gbx-service-page,
.site-main.areas-page {
    padding-top: 0px;
}
.gbx-service-hero {
    padding: 0 0 48px;
    margin-top: 0;
}
.gbx-service-hero--no-image {
    background: linear-gradient(135deg, rgba(8, 15, 31, 0.95), rgba(8, 15, 31, 0.78));
}
.gbx-service-hero__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    padding-top: 96px;
    gap: 2rem;
    align-items: stretch;
}
.gbx-service-hero__copy {
    width: 100%;
    max-width: 720px;
}
.gbx-service-hero__copy > * {
    max-width: 100%;
}
.gbx-service-hero__copy h1 {
    font-size: clamp(2.25rem, 3vw, 2.9rem);
    line-height: 1.2;
}
.gbx-service-hero__lead {
    font-size: 1rem;
    max-width: 56ch;
}
.gbx-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.75rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 600;
}
.gbx-rating--lg {
    padding: 0.55rem 0.95rem;
    font-size: 1rem;
}
.gbx-rating--lg .gbx-rating__stars {
    font-size: 1.05rem;
}
.gbx-rating__stars {
    letter-spacing: 0.08em;
    color: #f59e0b;
}
.gbx-rating__count {
    color: #475569;
    font-weight: 500;
}
.gbx-rating--light {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}
.gbx-rating--light .gbx-rating__count {
    color: rgba(255, 255, 255, 0.75);
}
.gbx-rating--cta {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}
.gbx-rating--right {
    margin-left: auto;
    margin-top: 1rem;
}
.gbx-service-hero__copy .gbx-rating--cta {
    margin-top: 1.25rem;
}
.gbx-rating--mobile-only {
    display: none;
}

.gbx-rating--desktop-only {
    display: inline-flex;
}

.home1-hero-rating,
.gbx-service-hero__rating {
    display: flex;
    width: 100%;
    margin-top: 1rem;
}
.home1-hero-card .home1-hero-rating .gbx-rating,
.gbx-service-hero__copy .gbx-service-hero__rating .gbx-rating {
    width: fit-content;
    max-width: 100%;
}
@media (max-width: 900px) {
    .home1-hero-rating,
    .gbx-service-hero__rating {
        justify-content: center;
        text-align: center;
    }

    .gbx-rating--desktop-only {
        display: none !important;
    }

    .gbx-rating--mobile-only {
        display: inline-flex;
    }

    .gbx-service-hero__grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .gbx-service-hero__copy {
        max-width: 720px;
        margin: 0 auto;
    }

    .home1-hero-card .home1-hero-rating .gbx-rating,
    .gbx-service-hero__copy .gbx-service-hero__rating .gbx-rating,
    .gbx-rating--right {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (min-width: 901px) {
    .gbx-rating--mobile-only {
        display: none !important;
    }
}
@media (max-width: 640px) {
    .home1-hero-card .home1-hero-rating .gbx-rating,
    .gbx-service-hero__copy .gbx-service-hero__rating .gbx-rating {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.35rem;
    }
}
.gbx-process-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
@media (min-width: 900px) {
    .gbx-process-grid {
        flex-wrap: nowrap;
    }
}
.gbx-process-card {
    position: relative;
    flex: 1 1 230px;
    padding-top: 3.5rem;
    text-align: center;
    align-items: stretch;
}
 .gbx-process-card span {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--primary-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(15, 23, 42, 0.15);
    padding: 0;
}
.gbx-process-card--icon img {
    margin: 0 auto;
    display: block;
    width: 90%;
    height: auto;
    max-width: 180px;
}
.gbx-process-card h3 {
    font-size: 1.15rem;
}
.gbx-process-card p {
    margin-top: 0.75rem;
}


/* Final responsive adjustments for home service cards and hero review pills */
.home1-service-meta {
    margin-top: 14px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.home1-service-actions {
    margin-top: 20px;
}

.home1-services .home1-service-grid {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.home1-services .home1-service-card {
    max-width: none;
    min-height: 100%;
}

@media (max-width: 1100px) {
    .home1-services .home1-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home1-services .home1-service-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (min-width: 901px) {
    .home1-hero-spacer,
    .gbx-service-hero__aside {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-height: 100%;
        width: 100%;
    }

    .home1-hero-spacer {
        align-self: center;
    }

    .gbx-service-hero__aside {
        align-self: center;
    }

    .home1-hero-spacer .gbx-rating--desktop-only,
    .gbx-service-hero__aside .gbx-rating--desktop-only {
        margin-top: 0;
        margin-left: 0;
        margin-right: clamp(0px, 1.5vw, 18px);
    }
}

/* Final v8: home process cards + main services CTA alignment */
.home1-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.home1-process-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.home1-process-visual {
    min-height: 184px;
    padding: 1rem;
    margin-bottom: 1.15rem;
}

.home1-process-visual img {
    width: min(100%, 236px);
}

.home1-process-card h3 {
    margin-bottom: 0.55rem;
}

.home1-process-card p {
    margin-top: 0;
}

.home1-service-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home1-service-body p {
    margin-bottom: 0;
}

.home1-services .home1-service-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.home1-services .home1-service-actions .btn-small {
    flex: 0 0 auto;
}

.home1-services .home1-service-actions .gbx-text-link {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .home1-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home1-process-visual {
        min-height: 172px;
    }
}

@media (max-width: 640px) {
    .home1-process-grid {
        grid-template-columns: 1fr;
    }

    .home1-process-card {
        padding: 1.45rem;
    }

    .home1-process-visual {
        min-height: 164px;
        padding: 0.9rem;
    }

    .home1-services .home1-service-actions {
        justify-content: space-between;
        gap: 0.85rem;
    }
}


/* Final UI adjustments: home hero mobile + main services buttons + step numbering */
.home1-services .home1-service-actions {
    gap: 0.6rem;
}

.home1-services .home1-service-actions .btn-small {
    margin-top: 0;
}

.home1-services .home1-service-actions .home1-service-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid rgba(15, 118, 110, 0.34);
    box-shadow: none;
}

.home1-services .home1-service-actions .home1-service-btn-outline:hover,
.home1-services .home1-service-actions .home1-service-btn-outline:focus-visible {
    background: rgba(15, 118, 110, 0.06);
    color: var(--primary-color);
    border-color: rgba(15, 118, 110, 0.54);
}

.home1-step {
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .home1-hero-card--content .home1-hero-actions {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch;
        justify-content: center;
        gap: 0.65rem;
    }

    .home1-hero-card--content .home1-hero-actions .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 1 1 0;
        width: auto !important;
        min-width: 0;
        margin-top: 0;
        text-align: center;
        white-space: nowrap;
        padding: 0.82rem 0.9rem;
        font-size: 0.92rem;
        line-height: 1.15;
    }

    .home1-services .home1-service-actions {
        justify-content: flex-start;
        gap: 0.55rem;
    }
}

@media (max-width: 420px) {
    .home1-hero-card--content .home1-hero-actions .btn {
        font-size: 0.86rem;
        letter-spacing: -0.01em;
        padding-left: 0.72rem;
        padding-right: 0.72rem;
    }
}

/* Final UI adjustments: brand green outline on Main Services Book now + white Back home in service landing hero */
.home1-services .home1-service-actions .home1-service-btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
    box-shadow: none;
}

.home1-services .home1-service-actions .home1-service-btn-outline:hover,
.home1-services .home1-service-actions .home1-service-btn-outline:focus-visible {
    background: rgba(16, 185, 129, 0.08);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.gbx-service-hero .gbx-action-row .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
}

.gbx-service-hero .gbx-action-row .btn-secondary:hover,
.gbx-service-hero .gbx-action-row .btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
}

/* Final v11: make How it works visuals larger in landings and match home to that treatment */
.gbx-process-card--icon img {
    width: 94%;
    height: auto;
    max-width: 196px;
}

.home1-process-visual {
    min-height: 0;
    padding: 0;
    margin-bottom: 1rem;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home1-process-visual img {
    width: 94%;
    max-width: 196px;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 980px) {
    .gbx-process-card--icon img,
    .home1-process-visual img {
        max-width: 186px;
    }
}

@media (max-width: 640px) {
    .gbx-process-card--icon img,
    .home1-process-visual img {
        max-width: 176px;
    }

    .home1-process-visual {
        margin-bottom: 0.9rem;
    }
}


/* Final v12: service landing editorial sections, icon fallback, and iPhone form zoom prevention */
.contact-method-icon svg,
.contact-shortcut svg {
    width: 1.2em;
    height: 1.2em;
    display: block;
    flex: 0 0 auto;
}

.contact-shortcut svg {
    color: var(--secondary-color);
}

.gbx-copy-intro {
    margin-bottom: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.gbx-stack-head {
    margin-bottom: 0.85rem;
}

.gbx-stack-head h3 {
    margin: 0;
    font-size: clamp(1.18rem, 2vw, 1.4rem);
    line-height: 1.3;
    color: var(--primary-color);
}

.gbx-inline-cta,
.gbx-guarantee-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.2rem;
    align-items: center;
    padding: clamp(1.4rem, 2vw, 2rem);
    border-radius: 28px;
    border: 1px solid rgba(16, 185, 129, 0.16);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.96));
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
}

.gbx-inline-cta h2,
.gbx-guarantee-card h2 {
    margin-bottom: 0.65rem;
}

.gbx-inline-cta p,
.gbx-guarantee-card p {
    max-width: 62ch;
    margin: 0;
}

.gbx-guarantee-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(255, 255, 255, 0.98));
    border-color: rgba(15, 23, 42, 0.09);
}

@media (max-width: 900px) {
    .gbx-inline-cta,
    .gbx-guarantee-card {
        grid-template-columns: 1fr;
    }

    .gbx-inline-cta .gbx-action-row,
    .gbx-guarantee-card .btn {
        width: 100%;
    }

    .gbx-inline-cta .gbx-action-row .btn,
    .gbx-guarantee-card .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]),
    select,
    textarea {
        font-size: 16px !important;
    }

    .contact-method-icon {
        width: 52px;
        height: 52px;
    }
}

/* Final v13: stronger conversion polish for home, services, and landing quick navigation */
.home1-proof-card {
    width: min(100%, 420px);
    padding: clamp(1.15rem, 1.8vw, 1.5rem);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.24);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.home1-proof-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.home1-proof-stat {
    display: grid;
    gap: 0.25rem;
    padding: 0.9rem 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.home1-proof-stat strong {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.1;
}

.home1-proof-stat span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.35;
}

.home1-proof-links {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.home1-proof-links__label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

.home1-proof-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.home1-proof-link span {
    color: #ffffff;
    font-weight: 600;
}

.home1-proof-link small {
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}

.home1-proof-link:hover,
.home1-proof-link:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
}

.home1-service-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.home1-service-eyebrow,
.home1-service-price,
.home1-service-duration,
.gbx-service-card__price,
.gbx-service-card__meta--soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.76rem;
    line-height: 1.25;
}

.home1-service-eyebrow {
    color: #0f766e;
    background: rgba(16, 185, 129, 0.12);
    font-weight: 700;
}

.home1-service-price,
.gbx-service-card__price {
    color: var(--primary-color);
    background: #eef2ff;
    border: 1px solid rgba(99, 102, 241, 0.12);
    font-weight: 700;
}

.home1-service-meta-group,
.gbx-service-card__meta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.home1-service-duration,
.gbx-service-card__meta--soft {
    color: var(--text-muted);
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.home1-service-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home1-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 52px rgba(15, 23, 42, 0.12);
}

.home1-proof-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.home1-proof-item {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.home1-proof-item strong {
    color: #ffffff;
}

.home1-proof-item span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.gbx-hero-jump-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.gbx-hero-jump-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gbx-hero-jump-links a:hover,
.gbx-hero-jump-links a:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

.gbx-service-hero__summary {
    width: min(100%, 420px);
}

.gbx-service-hero__rating-card {
    margin-top: 0;
}

.gbx-reassurance-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.15rem;
}

.gbx-reassurance-list li {
    position: relative;
    padding-left: 1.65rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.gbx-reassurance-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondary-color);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

.gbx-reassurance-list--compact {
    margin-top: 1rem;
}

.gbx-reassurance-list--compact li {
    font-size: 0.9rem;
}

.gbx-reassurance-list--light li {
    color: rgba(255, 255, 255, 0.9);
}

.gbx-reassurance-list--light li::before {
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
}

.gbx-services-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.gbx-services-hero-points li,
.gbx-service-card__meta,
.gbx-service-card__best-for {
    font-size: 0.9rem;
}

.gbx-services-hero-points li {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--text-muted);
}

.gbx-service-card--enhanced {
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gbx-service-card--enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 56px rgba(15, 23, 42, 0.12);
    border-color: rgba(16, 185, 129, 0.22);
}

.gbx-service-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.gbx-service-card__best-for {
    margin-top: 0.9rem;
    color: var(--text-muted);
}

.gbx-action-row--service-card {
    margin-top: 1.15rem;
}

.gbx-action-row--service-card .btn-secondary {
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--primary-color);
    background: #ffffff;
}

.gbx-action-row--service-card .btn-secondary:hover,
.gbx-action-row--service-card .btn-secondary:focus-visible {
    border-color: rgba(16, 185, 129, 0.34);
    background: rgba(16, 185, 129, 0.05);
    color: var(--primary-color);
}

@media (max-width: 980px) {
    .home1-proof-card,
    .gbx-service-hero__summary {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .home1-proof-stat-grid {
        grid-template-columns: 1fr;
    }

    .gbx-services-hero-points {
        flex-direction: column;
    }

    .gbx-services-hero-points li,
    .gbx-hero-jump-links a {
        width: 100%;
        justify-content: center;
    }

    .home1-service-topline,
    .gbx-service-card__topline {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .home1-proof-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .home1-proof-link small {
        white-space: normal;
    }
}


/* Refinement pass: micro hierarchy, card rhythm, and tighter mobile conversion */
.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    line-height: 1.15;
    text-align: center;
}

.btn-small {
    min-height: 44px;
}

.home1-section-head,
.gbx-section-head {
    display: grid;
    gap: 0.5rem;
}

.home1-section-head p,
.gbx-section-head p {
    line-height: 1.7;
}

.home1-hero-card,
.home1-proof-card,
.gbx-panel-card--hero {
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.13);
}

.home1-hero-meta {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.home1-service-body,
.gbx-service-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home1-service-body h3,
.gbx-service-card h3 {
    margin-bottom: 0;
}

.home1-service-body > p,
.gbx-service-card__body > p {
    margin: 0;
}

.home1-service-bestfor,
.gbx-service-card__best-for {
    margin: 0;
    padding: 0.78rem 0.9rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: var(--text-muted);
    line-height: 1.55;
}

.home1-service-meta-group,
.gbx-service-card__meta-wrap {
    display: grid;
    gap: 0.6rem;
}

.home1-service-actions,
.gbx-action-row--service-card {
    margin-top: auto;
    padding-top: 0.35rem;
}

.home1-service-actions .btn-small,
.gbx-action-row--service-card .btn {
    flex: 1 1 calc(50% - 6px);
}

.home1-final-cta-actions .btn,
.gbx-final-card .gbx-action-row .btn,
.gbx-inline-cta .gbx-action-row .btn,
.gbx-service-hero__aside-actions .btn {
    min-width: 190px;
}

.gbx-hero-jump-links a,
.gbx-services-hero-points li {
    min-height: 40px;
}

.gbx-panel-card__head h2 {
    max-width: 18ch;
}

.gbx-service-hero__mini-block p,
.gbx-service-hero__mini-block strong {
    max-width: 28ch;
}

@media (max-width: 900px) {
    .home1-hero-grid,
    .gbx-service-hero__grid {
        gap: 1.5rem;
    }

    .home1-hero-card,
    .home1-proof-card,
    .gbx-panel-card--hero,
    .gbx-inline-cta,
    .gbx-guarantee-card,
    .gbx-final-card {
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3.25rem 0;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home1-hero-card,
    .home1-proof-card,
    .gbx-panel-card--hero,
    .gbx-inline-cta,
    .gbx-guarantee-card,
    .gbx-final-card {
        padding: 1.15rem;
    }

    .home1-hero-card h1,
    .gbx-service-hero__copy h1,
    .gbx-page-hero h1 {
        letter-spacing: -0.03em;
    }

    .home1-hero-actions,
    .home1-final-cta-actions,
    .gbx-action-row,
    .home1-service-actions,
    .gbx-action-row--service-card,
    .gbx-service-hero__aside-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home1-hero-actions .btn,
    .home1-final-cta-actions .btn,
    .gbx-action-row .btn,
    .home1-service-actions .btn,
    .gbx-action-row--service-card .btn,
    .gbx-service-hero__aside-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .home1-service-card,
    .gbx-service-card--enhanced {
        border-radius: 22px;
    }

    .home1-service-media,
    .gbx-service-card__media {
        height: 180px;
    }

    .home1-service-body,
    .gbx-service-card__body {
        padding: 1.15rem;
        gap: 0.7rem;
    }

    .home1-service-bestfor,
    .gbx-service-card__best-for {
        font-size: 0.94rem;
    }

    .home1-proof-card {
        gap: 1rem;
    }

    .home1-proof-link,
    .gbx-hero-jump-links a {
        min-height: 44px;
    }

    .gbx-hero-jump-links {
        gap: 0.55rem;
    }

    .gbx-service-hero__summary,
    .gbx-inline-cta,
    .gbx-guarantee-card,
    .gbx-final-card {
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home1-hero-badge {
        position: static;
        margin-bottom: 0.85rem;
        align-self: flex-start;
    }

    .home1-hero-card h1,
    .gbx-service-hero__copy h1 {
        font-size: clamp(1.95rem, 8vw, 2.45rem);
        line-height: 1.08;
    }

    .home1-service-media,
    .gbx-service-card__media {
        height: 168px;
    }

    .home1-hero-meta {
        font-size: 0.85rem;
    }

    .gbx-services-hero-points li,
    .gbx-hero-jump-links a {
        justify-content: flex-start;
    }
}
