/* ============================================
   TLENARIUM - Global Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #0077B6;
    --color-primary-dark: #005F8A;
    --color-primary-light: #00B4D8;
    --color-accent: #06D6A0;
    --color-accent-dark: #05BF8E;

    --color-white: #FFFFFF;
    --color-bg: #F8FAFE;
    --color-bg-alt: #EEF4FA;
    --color-text: #1A202C;
    --color-text-light: #4A5568;
    --color-text-muted: #718096;
    --color-border: #E2E8F0;

    --gradient-primary: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 119, 182, 0.92) 0%, rgba(6, 214, 160, 0.85) 100%);
    --gradient-accent: linear-gradient(135deg, #06D6A0 0%, #00B4D8 100%);

    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --container-max: 1200px;
    --navbar-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }

h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.375rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.5rem; }
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

.section {
    padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-5xl) 0;
    }
}

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

.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section__subtitle {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    display: block;
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 2px;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 119, 182, 0.45);
    color: var(--color-white);
}

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

.btn--secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
    color: var(--color-primary-dark);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* --- Cards --- */
.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid var(--color-border);
}

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

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* --- Scroll to top --- */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 50;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* --- Icon containers --- */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1) 0%, rgba(6, 214, 160, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-shrink: 0;
}

.icon-circle svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

::selection {
    background-color: rgba(0, 119, 182, 0.15);
    color: var(--color-text);
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

#blazor-error-ui {
    display: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    padding: 0.6rem 0;
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--color-white);
    transition: color 0.2s ease;
    z-index: 10;
}

.navbar--scrolled .navbar__logo {
    color: var(--color-text);
}

.navbar__logo-icon {
    width: 36px;
    height: 36px;
}

.navbar__logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.navbar__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar--scrolled .navbar__hamburger span {
    background: var(--color-text);
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 119, 182, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.navbar__links.active {
    opacity: 1;
    visibility: visible;
}

.navbar__link {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white) !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
    position: relative;
}

.navbar__link:hover {
    opacity: 0.8;
    color: var(--color-white) !important;
}

.navbar__cta {
    margin-top: 1rem;
}

.navbar__links.active .navbar__cta {
    background: var(--color-white);
    color: var(--color-primary) !important;
    border-color: var(--color-white);
}

@media (min-width: 1024px) {
    .navbar__hamburger {
        display: none;
    }

    .navbar__links {
        position: static;
        flex-direction: row;
        background: transparent;
        opacity: 1;
        visibility: visible;
        gap: 2rem;
    }

    .navbar__link {
        font-size: 0.9375rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .navbar__link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-white);
        transition: width 0.3s ease;
    }

    .navbar__link:hover::after {
        width: 100%;
    }

    .navbar__link:hover {
        color: var(--color-white) !important;
        opacity: 1;
    }

    .navbar--scrolled .navbar__link {
        color: var(--color-text-light) !important;
    }

    .navbar--scrolled .navbar__link:hover {
        color: var(--color-primary) !important;
    }

    .navbar--scrolled .navbar__link::after {
        background: var(--color-primary);
    }

    .navbar__cta {
        margin-top: 0;
        padding: 0.65rem 1.5rem;
        font-size: 0.9375rem;
    }

    .navbar__links .navbar__cta {
        background: var(--gradient-primary);
        color: var(--color-white) !important;
        border-color: transparent;
    }

    .navbar--scrolled .navbar__links .navbar__cta {
        background: var(--gradient-primary);
        color: var(--color-white) !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: var(--space-5xl) 0 var(--space-3xl);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1920&q=80') center/cover no-repeat;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--space-lg);
    animation: heroFadeIn 1s ease forwards;
}

.hero__title {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    border: none;
    outline: none;
    font-size: 2.5rem;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero__title { font-size: 3.25rem; }
}

@media (min-width: 1024px) {
    .hero__title { font-size: 4rem; }
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero__subtitle { font-size: 1.25rem; }
}

.hero__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

@media (min-width: 480px) {
    .hero__cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero__scroll-hint svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================
   WHY SECTION
   ============================================ */
.why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .why__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (min-width: 1024px) {
    .why__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why__card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

.why__card .icon-circle {
    margin: 0 auto var(--space-lg);
}

.why__card h3 {
    margin-bottom: var(--space-sm);
}

.why__card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.why__cta {
    text-align: center;
}

.why__cta p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how__intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    align-items: center;
}

@media (min-width: 768px) {
    .how__intro {
        grid-template-columns: 1fr 1fr;
    }
}

.how__text p {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.how__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.how__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.how__steps-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--color-primary);
}

.how__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

@media (min-width: 768px) {
    .how__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .how__steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.how__step {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    position: relative;
}

.how__step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto var(--space-lg);
}

.how__step h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.how__step p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.how__safety {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.05) 0%, rgba(6, 214, 160, 0.05) 100%);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(0, 119, 182, 0.1);
}

.how__safety svg {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.how__safety p {
    color: var(--color-text-light);
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefits__card {
    text-align: center;
    padding: var(--space-2xl);
}

.benefits__card .icon-circle {
    margin: 0 auto var(--space-lg);
    width: 72px;
    height: 72px;
}

.benefits__card .icon-circle svg {
    width: 32px;
    height: 32px;
}

.benefits__card h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
}

.benefits__list {
    text-align: left;
}

.benefits__list li {
    padding: var(--space-sm) 0;
    color: var(--color-text-light);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9375rem;
}

.benefits__list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.benefits__quote {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    position: relative;
    padding: var(--space-xl) 0;
}

.benefits__quote::before {
    content: '\201E';
    font-size: 4rem;
    color: rgba(0, 119, 182, 0.15);
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .pricing__grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }
}

.pricing__card {
    text-align: center;
    padding: var(--space-2xl);
    position: relative;
}

.pricing__card--featured {
    border-color: var(--color-primary);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .pricing__card--featured {
        transform: scale(1.05);
        z-index: 2;
    }

    .pricing__card--featured:hover {
        transform: scale(1.05) translateY(-4px);
    }
}

.pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--color-white);
    padding: 0.35rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1) 0%, rgba(6, 214, 160, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.pricing__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.pricing__card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.375rem;
}

.pricing__card .pricing__desc {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-xl);
}

.pricing__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
    font-family: var(--font-body);
}

.pricing__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.pricing__per {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-xl);
}

.pricing__card .btn {
    width: 100%;
}

.pricing__bonus {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-xl) var(--space-2xl);
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    border-radius: var(--radius-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing__bonus p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-accent-dark);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about__content {
        grid-template-columns: 1fr 1fr;
    }
}

.about__text p {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about__quote {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-primary);
    font-style: italic;
    border-left: 4px solid var(--color-accent);
    padding-left: var(--space-lg);
    margin-top: var(--space-xl);
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .booking__content {
        grid-template-columns: 1fr 1fr;
    }
}

.booking__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.booking__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
}

.booking__info-text {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.booking__phone {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.05) 0%, rgba(6, 214, 160, 0.05) 100%);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(0, 119, 182, 0.1);
}

.booking__phone p:first-child {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.booking__phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .contact__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact__card {
    text-align: center;
    padding: var(--space-2xl);
}

.contact__card .icon-circle {
    margin: 0 auto var(--space-lg);
}

.contact__card h3 {
    margin-bottom: var(--space-sm);
}

.contact__card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-bg-alt);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__map-placeholder {
    text-align: center;
    color: var(--color-text-muted);
}

.contact__map-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer__content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.footer__logo svg {
    width: 28px;
    height: 28px;
}

.footer__logo span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer__brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
    font-size: 0.875rem;
}
