/* ============================================
   Sky Garden London - Premium Booking
   Modern Design System v3.0
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald: #10b981;
    --emerald-dark: #059669;
    --emerald-light: #34d399;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --slate: #334155;
    --silver: #94a3b8;
    --pearl: #f1f5f9;
    --white: #ffffff;
    --gold: #f59e0b;
    --coral: #f43f5e;
    
    --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--navy);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================
   Layout
   ============================================ */

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.wrap--sm { max-width: 800px; }
.wrap--lg { max-width: 1440px; }

/* ============================================
   Navigation - Glassmorphism Style
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar.sticky::before {
    opacity: 1;
}

.navbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.navbar__brand {
    display: flex;
    align-items: center;
}

.navbar__logo {
    height: 56px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar__brand:hover .navbar__logo {
    transform: scale(1.05);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.navbar__link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    transition: width 0.3s var(--ease-out);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--emerald);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

.navbar__toggle {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar__toggle span {
    display: block;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar__toggle.open span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 900px) {
    .navbar__toggle {
        display: flex;
    }
    
    .navbar__menu {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 48px 24px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
    }
    
    .navbar__menu.show {
        transform: translateX(0);
    }
    
    .navbar__menu li {
        width: 100%;
        border-bottom: 1px solid var(--pearl);
    }
    
    .navbar__link {
        display: block;
        padding: 20px 0;
        font-size: 18px;
    }
}

/* ============================================
   Hero - Full Screen Video
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero__poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: none;
}

.hero__video:not([src]) ~ .hero__poster {
    display: block;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.3) 0%,
        rgba(15, 23, 42, 0.5) 50%,
        rgba(15, 23, 42, 0.8) 100%
    );
}

.hero__inner {
    text-align: center;
    color: var(--white);
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--emerald);
    color: var(--emerald-light);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.5); }
}

.hero__title {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero__title span {
    background: linear-gradient(135deg, var(--emerald-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--emerald-light);
}

.hero__stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons - Modern Gradient Style
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn--lg {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 16px;
}

.btn--full { width: 100%; }

.btn--primary {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.btn--primary:active {
    transform: translateY(-1px);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
}

.btn--outline:hover {
    background: var(--emerald);
    color: var(--white);
}

.btn--dark {
    background: var(--navy);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--navy-light);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Sections
   ============================================ */

.section {
    padding: 100px 0;
}

.section--gray {
    background: var(--pearl);
}

.section--dark {
    background: var(--navy);
    color: var(--white);
}

.section--gradient {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: var(--white);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section__eyebrow {
    display: inline-block;
    color: var(--emerald);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section--dark .section__eyebrow {
    color: var(--emerald-light);
}

.section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section__desc {
    font-size: 18px;
    color: var(--slate);
    line-height: 1.8;
}

.section--dark .section__desc {
    color: var(--silver);
}

/* ============================================
   Feature Cards - 3D Hover Effect
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-box {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.feature-box__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.feature-box__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy);
}

.feature-box__text {
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-box__link {
    color: var(--emerald);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.feature-box__link:hover {
    gap: 12px;
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
    padding: 48px 0;
}

.stat-item__value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Restaurant Cards
   ============================================ */

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.restaurant-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-out);
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.restaurant-card__img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.restaurant-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy) 0%, transparent 60%);
}

.restaurant-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    z-index: 1;
}

.restaurant-card__body {
    padding: 32px;
}

.restaurant-card__name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy);
}

.restaurant-card__desc {
    color: var(--slate);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ============================================
   Trust Section
   ============================================ */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.trust-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
}

.trust-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.trust-card__text {
    color: var(--slate);
    font-size: 15px;
}

/* ============================================
   CTA Block
   ============================================ */

.cta-block {
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 32px;
    margin: 0 24px;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-block__content {
    position: relative;
    z-index: 1;
}

.cta-block__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-block__text {
    color: var(--silver);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-block__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--emerald-light);
}

.footer__text {
    color: var(--silver);
    line-height: 1.8;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--emerald-light);
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid var(--slate);
    text-align: center;
    color: var(--slate);
}

/* ============================================
   Modal
   ============================================ */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--white);
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modal-in 0.4s var(--ease-out);
}

.modal-box--lg {
    max-width: 900px;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-box__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--pearl);
    border: none;
    border-radius: 12px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--slate);
}

.modal-box__close:hover {
    background: var(--emerald);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-box__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--navy);
}

.modal-box__subtitle {
    color: var(--slate);
    font-size: 15px;
    margin-bottom: 32px;
    padding: 16px;
    background: var(--pearl);
    border-radius: 12px;
    border-left: 4px solid var(--emerald);
}

/* ============================================
   Forms
   ============================================ */

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-field__input,
.form-field__select,
.form-field__textarea {
    padding: 16px;
    background: var(--pearl);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-sans);
    color: var(--navy);
    transition: all 0.3s ease;
}

.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
    outline: none;
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-field__input::placeholder {
    color: var(--silver);
}

.form-divider {
    height: 1px;
    background: var(--pearl);
    margin: 28px 0;
}

.form-note {
    font-size: 14px;
    color: var(--slate);
    padding: 16px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--pearl);
    border-radius: 12px;
    padding: 8px;
}

.qty-control__btn {
    width: 44px;
    height: 44px;
    background: var(--emerald);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-control__btn:hover {
    background: var(--emerald-dark);
    transform: scale(1.05);
}

.qty-control__value {
    font-size: 20px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

/* ============================================
   Time Slots
   ============================================ */

.slots-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
    margin-bottom: 24px;
}

.slot-btn {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: var(--white);
    padding: 20px 16px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s var(--ease-out);
}

.slot-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
}

.slot-btn__time {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.slot-btn__area {
    font-size: 14px;
    opacity: 0.9;
}

.booking-summary {
    background: var(--pearl);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    color: var(--emerald-dark);
    margin-bottom: 24px;
    border: 2px solid var(--emerald);
}

/* ============================================
   Page Hero
   ============================================ */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.page-hero__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.page-hero__desc {
    font-size: 20px;
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ============================================
   Content Sections
   ============================================ */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-grid--reverse {
    direction: rtl;
}

.content-grid--reverse > * {
    direction: ltr;
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid--reverse {
        direction: ltr;
    }
}

.content-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.content-img img {
    width: 100%;
    display: block;
}

.content-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--navy);
}

.content-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 16px;
}

.content-text p {
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 16px;
}

.check-list {
    list-style: none;
    margin: 24px 0;
}

.check-list li {
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    color: var(--navy);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: var(--emerald);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--emerald);
}

.faq-item--featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
    border-left-width: 6px;
}

.faq-item__q {
    font-size: 20px;
    font-weight: 700;
    color: var(--emerald-dark);
    margin-bottom: 12px;
}

.faq-item__a {
    color: var(--slate);
    line-height: 1.8;
}

/* ============================================
   Contact
   ============================================ */

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}

@media (max-width: 900px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--pearl);
    border-radius: 16px;
    padding: 28px;
}

.contact-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 12px;
}

.contact-card a {
    color: var(--emerald);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form-box {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form-box__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--navy);
}

/* ============================================
   Breadcrumb
   ============================================ */

.breadcrumb {
    padding-top: 100px;
}

.breadcrumb__list {
    display: flex;
    gap: 12px;
    list-style: none;
    font-size: 14px;
    padding: 16px 0;
}

.breadcrumb__list a {
    color: var(--emerald);
    text-decoration: none;
}

.breadcrumb__list a:hover {
    text-decoration: underline;
}

.breadcrumb__sep,
.breadcrumb__current {
    color: var(--slate);
}

/* ============================================
   Utilities
   ============================================ */

.text-center { text-align: center; }
.hidden { display: none !important; }

.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mt-xl { margin-top: 64px; }

.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }
.mb-xl { margin-bottom: 64px; }

/* ============================================
   Scrollbar & Selection
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--pearl);
}

::-webkit-scrollbar-thumb {
    background: var(--emerald);
    border-radius: 4px;
}

::selection {
    background: var(--emerald);
    color: var(--white);
}

:focus-visible {
    outline: 3px solid var(--emerald);
    outline-offset: 2px;
}

@media print {
    .navbar, .footer, .modal-overlay, .btn, .hero__cta {
        display: none;
    }
}
