
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #1f2937;
    background: #ffffff;
}

a {
    text-decoration: none;
}
.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-wrapper {
    height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
}

.site-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.site-nav a {
    color: #374151;
    font-weight: 600;
}

.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
    padding: 90px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.05;
    color: #111827;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 800;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-outline {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-light {
    background: #ffffff;
    color: #111827;
}

.hero-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.hero-card img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.hero-card-body {
    padding: 22px 10px 8px;
}

.hero-card-body h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.hero-card-body p {
    color: #6b7280;
    line-height: 1.6;
}

.section {
    padding: 82px 0;
}

.section-muted {
    background: #f9fafb;
}

.section-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 42px;
}

.section-heading h2,
.trust-section h2,
.cta-section h2 {
    font-size: clamp(32px, 4vw, 44px);
    color: #111827;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

.section-heading p,
.trust-section p,
.cta-section p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.step-number {
    display: inline-block;
    color: #2563eb;
    font-weight: 900;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.card p {
    color: #6b7280;
    line-height: 1.7;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.trust-list {
    display: grid;
    gap: 16px;
}

.trust-list div {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 18px 20px;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.cta-section {
    background: #111827;
    color: #ffffff;
    text-align: center;
    padding: 76px 0;
}

.cta-section h2 {
    color: #ffffff;
}

.cta-section p {
    color: #d1d5db;
    max-width: 650px;
    margin: 0 auto 28px;
}

.site-footer {
    background: #0b1220;
    color: #d1d5db;
    padding: 28px 0;
    text-align: center;
}

.page-content {
    padding: 60px 0;
}

@media (max-width: 850px) {
    .site-nav {
        display: none;
    }

    .hero-grid,
    .trust-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 62px 0;
    }

    .nav-wrapper {
        height: 68px;
    }
}
.page-section {
    padding: 80px 0;
    background: #f8fafc;
    min-height: 80vh;
}

.page-header {
    max-width: 760px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: #111827;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.page-header p {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.7;
}

.form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    max-width: 900px;
}

.booking-form {
    display: grid;
    gap: 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 800;
    color: #111827;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px;
    }
}
.success-message {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-weight: 700;
}