* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #0b132b;
    --accent-color: #f5a623;
    --text-color: #1c2541;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0,0,0,0.08);
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.main-header {
    background-color: var(--primary-color);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    color: var(--white);
    font-size: 14px;
}

.lang-switcher a {
    text-decoration: none;
    color: var(--white);
    margin: 0 4px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lang-switcher a.active {
    color: var(--accent-color);
    font-weight: 700;
    opacity: 1;
}

/* Slide Menu (Drawer) */
.menu-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    padding: 30px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.side-drawer.open {
    right: 0;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.drawer-links {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drawer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.2s;
}

.drawer-links a:hover {
    color: var(--accent-color);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.drawer-overlay.active {
    display: block;
}

/* Centered Hero Layout */
.hero-section {
    background: linear-gradient(rgba(11, 19, 43, 0.9), rgba(11, 19, 43, 0.9)), url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    padding: 40px 0;
    text-align: center;
    color: var(--white);
}

.hero-text h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-text p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 25px;
}

/* Centered Form Wrapper */
.main-wrapper {
    max-width: 650px;
    margin: -40px auto 40px;
    padding: 0 15px;
    z-index: 5;
    position: relative;
}

.booking-card {
    background-color: var(--white);
    color: var(--text-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
    margin-bottom: 25px;
}

.booking-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--primary-color);
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 13px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-primary {
    width: 100%;
    background-color: #25d366;
    color: var(--white);
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #1ebe57;
}

/* Autocomplete Suggestion Dropdowns */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-top: none;
    border-radius: 0 0 6px 6px;
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.autocomplete-suggestion {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid #f1f5f9;
}

.autocomplete-suggestion:hover {
    background-color: #f1f5f9;
}

/* Pricing Grid Widget */
.price-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    color: var(--text-color);
}

.price-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #f8fafc;
    border-left: 4px solid var(--accent-color);
}

.price-item span.class-name {
    font-weight: 600;
    font-size: 14px;
}

.price-item span.price-val {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 15px;
}

/* Info Section (Quick Contact) */
.info-section {
    text-align: center;
    padding: 20px 0;
}

.info-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.info-item {
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    font-size: 13px;
    font-weight: 600;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 25px 0;
    font-size: 13px;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hero-text h1 {
        font-size: 24px;
    }
}