/* =============================================
   WOOSHFREE PREMIUM CAR CARE - Main Stylesheet
   Theme: Dark Premium | Red Accent
   ============================================= */

:root {
    --bg-primary: #111111;
    --bg-secondary: #1a1a1a;
    --bg-card: #1e1e1e;
    --bg-card-hover: #242424;
    --red: #e63c3c;
    --red-dark: #c02828;
    --red-glow: rgba(230, 60, 60, 0.15);
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-300: #c0c0c0;
    --gray-500: #808080;
    --gray-700: #3a3a3a;
    --border: rgba(255,255,255,0.08);
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-red: 0 8px 32px rgba(230,60,60,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
.display-font { font-family: 'Bebas Neue', cursive; letter-spacing: 2px; }

h1, h2, h3 { font-weight: 700; line-height: 1.2; }

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray-300);
    font-size: 17px;
    max-width: 560px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17,17,17,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    height: 72px;
}

.nav-logo img {
    height: 44px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: var(--bg-card);
}

.nav-links a.active { color: var(--red); }

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    margin-left: auto;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(230,60,60,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(230,60,60,0.05) 0%, transparent 60%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-glow);
    border: 1px solid rgba(230,60,60,0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 28px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-title .red { color: var(--red); }

.hero-description {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item .number {
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.stat-item .label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-stack {
    position: relative;
    width: 100%;
}

.hero-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.hero-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
}

.wash-animation {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.wash-animation .car-icon {
    font-size: 80px;
    position: relative;
    z-index: 2;
    animation: carShake 3s ease-in-out infinite;
}

@keyframes carShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.water-drops {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.water-drop {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #4fc3f7, transparent);
    animation: dropFall linear infinite;
    opacity: 0.6;
}

@keyframes dropFall {
    0% { top: -20%; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: 120%; opacity: 0; }
}

.status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.confirmed {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.float-cards {
    position: absolute;
    right: -20px;
    top: -20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    animation: floatUp 3s ease-in-out infinite;
    box-shadow: var(--shadow);
}

.float-card:nth-child(2) { animation-delay: 1s; }

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: var(--red-glow);
    color: var(--red);
}

.float-text .title { font-size: 13px; font-weight: 600; }
.float-text .sub { font-size: 11px; color: var(--gray-500); }

/* ---- CONTAINER ---- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- SECTIONS ---- */
section { padding: 100px 24px; }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ---- SERVICE CARDS ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover { 
    border-color: rgba(230,60,60,0.3);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--red-glow);
    border: 1px solid rgba(230,60,60,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--red);
    margin-bottom: 20px;
}

.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--gray-300); font-size: 14px; line-height: 1.6; }

.service-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-price .price {
    font-size: 24px;
    font-weight: 800;
    color: var(--red);
}

.service-price .label { font-size: 12px; color: var(--gray-500); }

/* ---- PLANS ---- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: var(--transition);
}

.plan-card.featured {
    border-color: var(--red);
    background: linear-gradient(135deg, #1e1e1e 0%, #231212 100%);
    transform: scale(1.03);
}

.plan-card:hover:not(.featured) {
    border-color: rgba(230,60,60,0.3);
    transform: translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    padding: 4px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-price {
    margin: 20px 0;
}

.plan-price .amount {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: var(--red);
}

.plan-price .period {
    font-size: 14px;
    color: var(--gray-500);
}

.plan-features {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-300);
}

.plan-feature i { 
    color: var(--red);
    width: 16px;
    flex-shrink: 0;
}

.plan-feature.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

/* ---- BOOKING FORM ---- */
.booking-section {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle { color: var(--gray-300); font-size: 14px; margin-bottom: 32px; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(230,60,60,0.03);
}

.form-group select option { background: #1e1e1e; color: white; }

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

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.sidebar-card h3 { font-size: 18px; margin-bottom: 20px; }

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child { border-bottom: none; }

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--red-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
}

.info-text .label { font-size: 12px; color: var(--gray-500); margin-bottom: 2px; }
.info-text .value { font-size: 15px; font-weight: 600; }

/* ---- TRACK ORDER ---- */
.track-container { max-width: 800px; margin: 0 auto; }

.track-search {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 40px;
}

.search-row {
    display: flex;
    gap: 16px;
}

.search-row input {
    flex: 1;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 14px 20px;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.search-row input:focus {
    outline: none;
    border-color: var(--red);
}

.track-result {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.track-header {
    background: linear-gradient(135deg, #1e1e1e, #231212);
    border-bottom: 1px solid var(--border);
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.booking-id { font-size: 22px; font-weight: 700; }
.booking-id span { color: var(--red); }

.track-body { padding: 32px; }

.car-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.car-info-item .key {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.car-info-item .val { font-size: 16px; font-weight: 600; }

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: var(--bg-secondary);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.step.done .step-circle {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.step.active .step-circle {
    border-color: var(--red);
    color: var(--red);
    box-shadow: 0 0 0 4px var(--red-glow);
    animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 0 4px var(--red-glow); }
    50% { box-shadow: 0 0 0 8px transparent; }
}

.step-label { font-size: 12px; color: var(--gray-500); text-align: center; }
.step.done .step-label, .step.active .step-label { color: var(--white); }

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin-bottom: 22px;
    min-width: 30px;
}

.step-line.done { background: var(--red); }

/* ---- FEATURES/WHY US ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: rgba(230,60,60,0.3);
    transform: translateY(-4px);
}

.feature-item i {
    font-size: 36px;
    color: var(--red);
    margin-bottom: 16px;
}

.feature-item h3 { font-size: 17px; margin-bottom: 8px; }
.feature-item p { font-size: 14px; color: var(--gray-300); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(230,60,60,0.3);
    transform: translateY(-4px);
}

.stars { color: #f59e0b; margin-bottom: 16px; font-size: 14px; }
.testimonial-text { color: var(--gray-300); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.reviewer-name { font-weight: 600; font-size: 15px; }
.reviewer-car { font-size: 12px; color: var(--gray-500); }

/* ---- CTA BANNER ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-banner h2 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.cta-banner p { opacity: 0.85; font-size: 17px; }

.btn-white {
    background: var(--white);
    color: var(--red);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    transition: var(--transition);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

/* ---- FOOTER ---- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 24px 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand p { color: var(--gray-300); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: var(--transition);
}
.social-links a:hover { background: var(--red); border-color: var(--red); color: white; }

.footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 20px; color: var(--white); }

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    font-size: 14px;
    color: var(--gray-300);
    transition: var(--transition);
}
.footer-col ul a:hover { color: var(--red); padding-left: 4px; }

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-300);
}

.contact-list i { color: var(--red); margin-top: 2px; width: 14px; }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray-500);
}

/* ---- PAGE HERO ---- */
.page-hero {
    padding: 140px 24px 60px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(230,60,60,0.08) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--gray-300); max-width: 560px; margin: 0 auto; }

/* ---- ALERT ---- */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #22c55e; }
.alert-error { background: rgba(230,60,60,0.1); border: 1px solid rgba(230,60,60,0.3); color: var(--red); }

/* ---- PAGE HEADER BREADCRUMB ---- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 16px;
    justify-content: center;
}
.breadcrumb a { color: var(--gray-500); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--gray-700); }
.breadcrumb .current { color: var(--red); }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .booking-section { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 60px 20px; }
    .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 20px; gap: 4px; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .nav-cta { display: none; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    .cta-banner { flex-direction: column; text-align: center; padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .plans-grid { grid-template-columns: 1fr; }
    .plan-card.featured { transform: none; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .search-row { flex-direction: column; }
    .progress-steps { justify-content: flex-start; }
}
