/* TudorPlayground Premium CSS - 2026 Edition */

:root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --secondary: #f43f5e;
    --secondary-hover: #e11d48;
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --yellow: #d97706;
    --yellow-light: #f59e0b;
    --dark: #1e1b4b;
    --dark-muted: #475569;
    --light: #f8fafc;
    --white: #ffffff;
    
    --border-radius-large: 24px;
    --border-radius-medium: 16px;
    --border-radius-small: 8px;
    
    --shadow-soft: 0 10px 30px -10px rgba(79, 70, 229, 0.08);
    --shadow-medium: 0 20px 40px -15px rgba(30, 27, 75, 0.12);
    --shadow-glow: 0 0 25px rgba(244, 63, 94, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark-muted);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 0.95rem;
}

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

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: #f1f5f9;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #db2777 100%);
    color: var(--white);
    box-shadow: 0 8px 20px -6px rgba(244, 63, 94, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -4px rgba(244, 63, 94, 0.5);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid rgba(79, 70, 229, 0.15);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: rgba(79, 70, 229, 0.02);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Navigation Bar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(79, 70, 229, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-ball {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.logo-ball.blue { background-color: var(--primary-light); }
.logo-ball.coral { background-color: var(--secondary); }

.logo h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--dark-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem 0;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.06) 0%, rgba(244, 63, 94, 0.03) 90.2%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.location-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--secondary) 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--dark-muted);
    max-width: 500px;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-badge {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: var(--shadow-soft);
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.visual-card {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: visible;
    box-shadow: var(--shadow-medium);
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    border: 8px solid var(--white);
    display: block;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: 9999px;
    padding: 0.6rem 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.fb-1 {
    top: 10%;
    left: -10%;
    animation: floating 4s ease-in-out infinite;
}

.fb-2 {
    bottom: 15%;
    right: -5%;
    animation: floating 4s ease-in-out infinite 2s;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: var(--light);
}

/* Sections General */
.section-header {
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Zones Section */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.zone-card {
    background-color: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.zone-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.zone-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.zone-icon.bg-purple { background-color: rgba(99, 102, 241, 0.1); color: var(--primary); }
.zone-icon.bg-teal { background-color: rgba(13, 148, 136, 0.1); color: var(--teal); }
.zone-icon.bg-coral { background-color: rgba(244, 63, 94, 0.1); color: var(--secondary); }
.zone-icon.bg-yellow { background-color: rgba(217, 119, 6, 0.1); color: var(--yellow); }

.zone-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.zone-card p {
    font-size: 0.85rem;
    color: var(--dark-muted);
    flex-grow: 1;
}

.zone-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    background-color: var(--light);
    color: var(--dark-muted);
}

.zone-tag.parents {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--yellow);
}

.highlight-card {
    border: 2px solid rgba(217, 119, 6, 0.15);
    background: linear-gradient(180deg, var(--white) 0%, rgba(217, 119, 6, 0.01) 100%);
}

/* Safety Section */
.safety-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.safety-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.safety-content h2 span {
    color: var(--secondary);
}

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.safety-item {
    display: flex;
    gap: 1rem;
}

.safety-check {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--teal);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.safety-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.safety-item p {
    font-size: 0.85rem;
}

.grid-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.grid-stat-card {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-medium);
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.grid-stat-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.grid-stat-card p {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Pricing Section */
.hourly-rates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.rate-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.rate-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.rate-card .price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.rate-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-muted);
}

.rate-card p {
    font-size: 0.85rem;
}

.rate-card.highlighted {
    border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-medium);
}

.rate-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.party-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.package-card.featured {
    border: 3px solid var(--secondary);
    position: relative;
}

.pkg-label-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
}

.package-header {
    padding: 2.5rem 2rem;
    color: var(--white);
}

.package-header.bg-bronze { background: linear-gradient(135deg, #a75a3e 0%, #d88a6c 100%); }
.package-header.bg-silver { background: linear-gradient(135deg, #708090 0%, #a9b7c6 100%); }
.package-header.bg-gold { background: linear-gradient(135deg, #c5a059 0%, #e5c158 100%); }

.package-header h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pkg-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.pkg-price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.pkg-min {
    font-size: 0.8rem;
    opacity: 0.95;
    margin-top: 0.25rem;
}

.pkg-features {
    padding: 2rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.pkg-features li {
    font-size: 0.85rem;
    display: flex;
    gap: 0.75rem;
}

.pkg-features li span {
    font-weight: bold;
    color: var(--teal-light);
}

.pkg-features li.disabled {
    color: #94a3b8;
    text-decoration: line-through;
    opacity: 0.6;
}

.pkg-features li.disabled span {
    color: var(--secondary);
}

.package-card .btn {
    margin: 0 2rem 2.5rem 2rem;
}

/* Booking Section */
.booking-box {
    background-color: var(--dark);
    background-image: radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
                      radial-gradient(circle at 0% 100%, rgba(244, 63, 94, 0.12) 0%, transparent 40%);
    border-radius: var(--border-radius-large);
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.booking-info h2 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.booking-info h2 span {
    color: var(--secondary);
}

.booking-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit .b-icon {
    font-size: 1.5rem;
}

.benefit p {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 550;
}

.my-bookings-container {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
}

.my-bookings-container h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.my-booking-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-small);
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.my-booking-item:last-child {
    margin-bottom: 0;
}

.cancel-b-btn {
    background: transparent;
    border: none;
    color: var(--secondary);
    font-weight: 700;
    cursor: pointer;
}

/* Booking Form Card */
.booking-form-card {
    background-color: var(--white);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    color: var(--dark-muted);
    box-shadow: var(--shadow-medium);
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2.5rem;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 3px;
    background: var(--primary-light);
    transform: translateY(-50%);
    z-index: 1;
    transition: width 0.3s ease;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #e2e8f0;
    transform: translateY(-50%);
    z-index: 0;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-dot.active {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.2);
}

.step-dot.completed {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.step-instruction {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Forms general */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

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

label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
    background: #f1f5f9;
    border: 2px solid transparent;
    color: var(--dark);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-medium);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    width: 100%;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.1);
}

textarea {
    resize: none;
}

.field-hint {
    font-size: 0.7rem;
    color: #64748b;
}

/* Step 1 Options */
.booking-type-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.type-option-card {
    display: grid;
    grid-template-columns: 40px 1.5fr;
    grid-template-rows: auto auto;
    position: relative;
    border: 2px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
    cursor: pointer;
    transition: var(--transition);
}

.type-option-card input {
    position: absolute;
    opacity: 0;
}

.option-check {
    grid-row: span 2;
    align-self: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: inline-block;
    transition: var(--transition);
}

.type-option-card:hover {
    border-color: var(--primary-light);
}

.type-option-card input:checked ~ .option-check {
    border-color: var(--primary);
    border-width: 6px;
}

.type-option-card input:checked ~ .option-title {
    color: var(--primary);
}

.type-option-card input:checked {
    background-color: var(--primary);
}

.type-option-card:has(input:checked) {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.02);
}

.option-emoji {
    display: none; /* Just helper, title includes details */
}

.option-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.option-desc {
    font-size: 0.8rem;
    color: var(--dark-muted);
    line-height: 1.4;
}

/* Pricing summary widget */
.price-summary-widget {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: var(--border-radius-medium);
    padding: 1.25rem;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.widget-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.widget-row.grand-total {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.5rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* Success receipt */
.success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: success-bounce 1s infinite alternate;
}

@keyframes success-bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.receipt-card {
    background: var(--light);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.receipt-header {
    border-bottom: 1.5px dashed #cbd5e1;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.receipt-header h4 {
    font-size: 1.1rem;
    font-weight: 800;
}

.receipt-header p {
    font-size: 0.75rem;
    color: #64748b;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.receipt-row.grand {
    border-top: 1.5px dashed #cbd5e1;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-size: 1.05rem;
}

.receipt-row .color-purple {
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

.receipt-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    text-align: center;
    color: #64748b;
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-light);
    font-weight: 700;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer p {
    font-size: 0.85rem;
    padding-bottom: 1.5rem;
    color: var(--dark-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-panel h2 span {
    color: var(--secondary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
}

.contact-detail-item .c-icon {
    font-size: 1.5rem;
}

.contact-detail-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-detail-item p {
    font-size: 0.85rem;
}

.contact-form-panel {
    background-color: var(--white);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-medium);
}

.contact-form-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.success-alert {
    background-color: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.15);
    color: var(--teal);
    padding: 1rem;
    border-radius: var(--border-radius-medium);
    margin-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
}

/* Map placeholder */
.map-container {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-placeholder {
    background: linear-gradient(135deg, #eef2f6 0%, #cbd5e1 100%);
    padding: 5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.map-pin {
    font-size: 3rem;
    animation: floating 3s ease-in-out infinite;
}

.map-placeholder h4 {
    font-size: 1.3rem;
}

.map-placeholder p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.main-footer {
    background-color: var(--dark);
    padding: 5rem 0 2.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .logo h2 {
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4,
.footer-socials h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.8rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .location-tag {
        align-self: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .booking-box {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition);
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-cta {
        width: 80%;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .safety-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .booking-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Gallery Carousel Styles */
#gallery-track::-webkit-scrollbar {
    display: none;
}
#gallery-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.gallery-slide-card {
    flex: 0 0 300px;
    width: 300px;
    height: 220px;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    transition: all 0.3s ease;
}
.gallery-slide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}
.gallery-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
}
.gallery-dot.active {
    background: var(--primary);
    transform: scale(1.25);
}
