:root {
    --primary: #1a365d; 
    --secondary: #4299e1;
    --accent: #e67e22;
    --light: #f8f9fa;
    --dark: #1a202c;
    --text: #4a5568;
    --text-light: #718096;
    --success: #38a169;
    --warning: #dd6b20;
    --danger: #e53e3e;
    --gold: #d4af37;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.1);
    --section-padding: 8rem 0;
    --section-padding-sm: 6rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* kompensasi navbar sticky */
}

body {
    background-color: #f8f9fa;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
}

/* --- Partikel --- */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--gold), rgba(212, 175, 55, 0));
    border-radius: 50%;
    animation: float linear infinite;
    filter: blur(1px);
    opacity: 0;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

/* --- Header --- */
header {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(26, 32, 44, 0.95));
    z-index: -1;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.logo {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.logo img {
    height: 120px;
    width: auto;
    animation: pulse 3s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(230, 126, 34, 0.3));
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 20px rgba(230, 126, 34, 0.7)); }
    100% { transform: scale(1); opacity: 0.9; }
}

.tagline {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.header-search {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    padding-right: 4.5rem;
    background: rgba(255, 255, 255, 0.9);
}

.header-search input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.3), var(--shadow-xl);
}

.header-search button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.header-search button:hover {
    background: #d9731f;
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-md);
}

.header-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-down:hover {
    opacity: 1;
    transform: translateY(5px) translateX(-50%);
    color: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

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

/* --- Navigasi --- */
nav {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.nav-links a:hover {
    color: var(--accent);
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

/* --- Sections --- */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark);
    position: relative;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--accent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* --- Layanan Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    transition: var(--transition);
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 5px 10px rgba(230, 126, 34, 0.2));
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- Booking Form --- */
.booking-form-container {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 4rem;
    margin: 0 auto;
    max-width: 800px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.05rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
    background-color: white;
}

.form-group input.invalid {
    border-color: var(--danger);
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.location-btn:hover {
    background: #3182ce;
    transform: translateY(-2px);
}

.payment-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.payment-option {
    flex: 1;
    min-width: 120px;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--accent);
}

.payment-option.selected {
    border-color: var(--accent);
    background-color: rgba(230, 126, 34, 0.05);
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.1);
}

.payment-option i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0;
}

.terms-checkbox input {
    margin-top: 0.3rem;
}

.terms-checkbox label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.terms-checkbox label a {
    color: var(--accent);
    text-decoration: none;
}

.terms-checkbox label a:hover {
    text-decoration: underline;
}

/* --- Tombol --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background-color: #d9731f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* --- Kontak Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-info h3 {
    margin-bottom: 2.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-top: 0.3rem;
    min-width: 40px;
    text-align: center;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* --- Floating Contact Buttons --- */
.contact-bar {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 100;
}

.contact-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
}

.contact-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.order {
    background: linear-gradient(135deg, var(--accent), #d9731f);
    animation: pulse-gold 2s infinite;
}

.phone {
    background: linear-gradient(135deg, var(--success), #2f855a);
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* --- Footer --- */
footer {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 6rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    color: white;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.footer-about {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-about h3::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-about p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(10px);
    padding-left: 5px;
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    width: 100%;
}

.payment-methods {
    margin-top: 2rem;
    text-align: center;
}

.payment-methods h4 {
    font-weight: 400;
}

.payment-icons img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.copyright {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.copyright a:hover {
    color: white;
}

/* --- Modal (tidak digunakan tapi tetap) --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    padding: 3rem;
    position: relative;
    animation: modalFadeIn 0.5s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.modal h2 {
    margin-bottom: 2rem;
    text-align: center;
}

/* --- Custom untuk NOS --- */
.map-container {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    background-color: #e9e9e9;
}

#map {
    width: 100%;
    height: 100%;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.driver-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}

.driver-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.driver-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--light);
    box-shadow: var(--shadow-sm);
}

.driver-rating {
    color: var(--gold);
    margin-bottom: 1rem;
}

.driver-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.driver-badge.inactive {
    background: var(--danger);
}

.driver-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0;
    text-align: left;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.spec-value {
    font-weight: 500;
}

.btn-small {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

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

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.progress-step.active .step-number {
    background: var(--accent);
    color: white;
}

.progress-step.active .step-label {
    color: var(--dark);
}

.progress-step.completed .step-number {
    background: var(--success);
    color: white;
}

.form-step:not(.active) {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.vehicle-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.vehicle-option {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.vehicle-option:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.vehicle-option.selected {
    border-color: var(--accent);
    background-color: rgba(230, 126, 34, 0.05);
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.1);
}

.vehicle-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; }
.vehicle-name { font-weight: 600; }
.vehicle-price { color: var(--accent); font-weight: 700; }

.ride-status {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    background: rgba(56, 161, 105, 0.1);
    color: var(--success);
    text-align: left;
}

.ride-status i { font-size: 1.5rem; margin-right: 1rem; }

/* --- Registration Form --- */
.registration-section {
    background: white;
    border-radius: 16px;
    padding: 4rem;
    margin: 4rem auto;
    max-width: 800px;
    box-shadow: var(--shadow-md);
}

.option-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.option-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover { border-color: var(--accent); }

.option-btn.selected {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.conditional-field {
    display: none;
    margin-top: 1.5rem;
    animation: fadeIn 0.3s ease;
}

.conditional-field.active { display: block; }

.cancel-btn {
    background: var(--danger);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.cancel-btn:hover { background: #c53030; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: var(--section-padding-sm);
    }
}

@media (max-width: 768px) {
    header { min-height: 90vh; }
    .logo { font-size: 3rem; flex-direction: column; gap: 1rem; }
    .logo img { height: 80px; }
    .tagline { font-size: 1.4rem; }
    .section-title { font-size: 1.8rem; }
    .contact-bar { bottom: 1.5rem; right: 1.5rem; }
    .booking-form-container, .registration-section { padding: 2.5rem; }
    .map-container { height: 300px; }
}

@media (max-width: 576px) {
    .header-buttons { flex-direction: column; align-items: center; }
    .btn { width: 90%; }
    .contact-info, .contact-form { padding: 2.5rem 2rem; }
    .contact-btn { width: 55px; height: 55px; font-size: 1.6rem; }
    .footer-container { grid-template-columns: 1fr; }
    .modal-content { padding: 2rem 1.5rem; width: 95%; }
    .payment-options { flex-direction: column; }
    .booking-form-container, .registration-section { padding: 2rem 1.5rem; }
}
