:root {
    --bg-color: #050A1F;
    --text-color: #FFFFFF;
    --accent-color: #CCFF00;
    --secondary-text: #A0A0A0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --spacing-container: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

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

/* Layout */
.container {
    max-width: 1280px;
    /* Slightly narrower for better focus */
    margin: 0 auto;
    padding: 140px 100px 40px;
    /* Top padding for toolbar, Generous side padding */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header (Minimal) */
header {
    display: none;
    /* Hide old header if present, toolbar is used */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-color);
}

/* Main Content Split */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    /* Increased gap */
    padding: 20px 0;
    flex: 1;
    align-items: center;
    /* Center vertically */
}

/* Left Panel: Exclusivity */
.info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    padding-right: 60px;
    /* More breathing room */
}

.headline {
    font-size: 4.5rem;
    /* Larger impact */
    line-height: 1;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.headline span {
    color: var(--accent-color);
    display: block;
}

.info-content {
    color: var(--secondary-text);
    font-size: 1.15rem;
    max-width: 520px;
    line-height: 1.7;
}

.info-content p {
    margin-bottom: 2rem;
}

.info-list {
    list-style: none;
    margin: 30px 0;
    padding-left: 0;
}

.info-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: white;
}

.info-list li::before {
    content: '—';
    color: var(--accent-color);
    margin-right: 15px;
    font-weight: bold;
}

/* Right Panel: Form */
.form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle card background */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-text);
    margin-bottom: 10px;
}

.form-input-container {
    position: relative;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    padding: 15px 0;
    color: var(--text-color);
    font-size: 1.2rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.helper-text {
    font-size: 0.85rem;
    color: var(--secondary-text);
    margin-top: 5px;
    opacity: 0.7;
}

/* Radio Groups (Yes/No) */
.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    cursor: pointer;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    color: var(--secondary-text);
}

.radio-label:hover {
    border-color: var(--accent-color);
    color: var(--text-color);
}

input[type="radio"]:checked+.radio-label {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    font-weight: 600;
}

input[type="radio"] {
    display: none;
}

/* Submit Button */
.submit-btn {
    margin-top: 20px;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 20px 40px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .info-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 60px;
    }

    .headline {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Dark dimming */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-color);
    border: 1px solid var(--accent-color);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.2); /* Accent glow */
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-content h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-content p {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.modal-btn {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.modal-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}