        :root {
            --primary: #145867;
            --primary-light: #2C8B9E;
            --accent: #C22660;
            --accent-light: #F2D9E4;
            --dark: #0A0F14;
            --light: #FAFBFC;
            --gray: #6B7280;
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: rgba(255, 255, 255, 0.5);
            --shadow: 0 8px 32px rgba(20, 88, 103, 0.1);
            --radius: 24px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }

        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: 0.3s;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-img {
            height: 80px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: 0.3s;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 20px rgba(20, 88, 103, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(20, 88, 103, 0.4);
            background: var(--accent);
        }

        .booking-page {
            padding: 160px 0 100px;
            min-height: 100vh;
            background: linear-gradient(180deg, #e8b8cc 0%, var(--accent-light) 35%, var(--light) 100%);
        }

        .booking-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .booking-header h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .booking-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .booking-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 60px;
            align-items: start;
        }

        .info-side {
            padding-top: 20px;
        }

        .benefits-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .benefits-list li {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--shadow);
            flex-shrink: 0;
        }

        .benefit-text h4 {
            font-size: 1.1rem;
            margin-bottom: 4px;
            color: var(--dark);
        }

        .benefit-text p {
            font-size: 0.95rem;
            color: var(--gray);
        }

        .trust-block {
            background: white;
            padding: 24px;
            border-radius: 20px;
            border-left: 4px solid var(--accent);
            box-shadow: var(--shadow);
        }

        .trust-block p {
            font-size: 0.95rem;
            color: var(--gray);
        }

        .trust-block strong {
            color: var(--dark);
        }

        .form-card {
            background: white;
            padding: 48px;
            border-radius: 32px;
            box-shadow: 0 20px 60px rgba(20, 88, 103, 0.15);
            position: relative;
        }

        .form-card::before {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            border-radius: 34px;
            z-index: -1;
            opacity: 0.5;
        }

        .form-title {
            font-size: 1.5rem;
            margin-bottom: 24px;
            color: var(--dark);
            text-align: center;
        }

        .form-group { margin-bottom: 20px; }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #E5E7EB;
            border-radius: 14px;
            font-family: inherit;
            font-size: 1rem;
            transition: 0.3s;
            background: #FAFBFC;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(20, 88, 103, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        .checkbox-wrapper {
            display: flex;
            gap: 12px;
            align-items: start;
            margin-bottom: 24px;
            margin-top: 10px;
        }

        .checkbox-wrapper input {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            accent-color: var(--primary);
        }

        .checkbox-wrapper label {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.4;
        }

        .btn-submit {
            width: 100%;
            padding: 18px;
            font-size: 1.1rem;
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 40px 0;
        }

        .success-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes popIn {
            from { transform: scale(0); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .success-message h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .success-message p {
            color: var(--gray);
        }

        .steps-section {
            padding: 80px 0;
            background: white;
        }

        .steps-grid {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            margin-top: 40px;
        }

        .step-item {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .step-item::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -20px;
            width: 40px;
            height: 2px;
            background: #E5E7EB;
        }

        .step-item:last-child::after { display: none; }

        .step-num {
            width: 60px;
            height: 60px;
            background: var(--accent-light);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step-item h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .step-item p {
            font-size: 0.9rem;
            color: var(--gray);
        }

        footer {
            background: var(--dark);
            color: rgba(255,255,255,0.6);
            padding: 60px 0 30px;
        }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo { color: white; margin-bottom: 16px; }
        .footer-brand p { font-size: 0.95rem; line-height: 1.7; }
        .footer-col h4 { color: white; font-size: 1rem; margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: rgba(255,255,255,0.6); }
        .footer-col a:hover { color: var(--accent); }
        .footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.9rem; }

        @media (max-width: 992px) {
            .booking-grid { grid-template-columns: 1fr; }
            .steps-grid { flex-direction: column; gap: 20px; }
            .step-item::after { display: none; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .booking-header h1 { font-size: 2.2rem; }
            .form-card { padding: 24px; }
            .form-row { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .footer-grid { grid-template-columns: 1fr; }
        }
