/* =====================
   CruzeCab - Main Styles
   Color: Black, Red, White
   ===================== */

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --red: #e63946;
    --red-dark: #c1121f;
    --red-light: #ff6b6b;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #f5f5f5;
    --border: rgba(255,255,255,0.08);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-text: 'Inter', sans-serif;
    --shadow: 0 10px 40px rgba(0,0,0,0.4);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    font-family: var(--font-text);
    border-bottom: 1px solid var(--red);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar-left span, .top-bar-right a { display: flex; align-items: center; gap: 6px; color: #ccc; }
.top-bar-right a { color: var(--white); }
.top-bar-right a:hover { color: var(--red); }
.top-bar i { color: var(--red); }

/* ---- HEADER ---- */
.main-header {
    background: var(--black);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    transition: var(--transition);
}
.main-header.scrolled { background: rgba(10,10,10,0.97); backdrop-filter: blur(10px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 48px; width: auto; }
.logo-text { font-family: var(--font-heading); font-size: 28px; color: var(--white); letter-spacing: 2px; line-height: 1; }
.logo-text span { color: var(--red); }

.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
    color: #ccc; font-weight: 600; font-size: 15px; padding: 8px 14px;
    border-radius: 4px; transition: var(--transition); letter-spacing: 0.5px; display: flex; align-items: center; gap: 5px;
}
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--red); }
.main-nav ul li a.active { border-bottom: 2px solid var(--red); }

.has-dropdown .dropdown {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--dark2); min-width: 200px; border-radius: 6px;
    border: 1px solid var(--border); box-shadow: var(--shadow);
    flex-direction: column; z-index: 100;
}
.has-dropdown:hover .dropdown { display: flex; }
.dropdown li a { padding: 10px 16px; border-radius: 0; border-bottom: 1px solid var(--border); font-size: 14px; color: #ccc; }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--red); background: rgba(230,57,70,0.08); }

.btn-book-header {
    background: var(--red); color: var(--white);
    padding: 10px 22px; border-radius: 4px; font-weight: 700;
    font-size: 14px; display: flex; align-items: center; gap: 8px;
    transition: var(--transition); letter-spacing: 0.5px; white-space: nowrap;
}
.btn-book-header:hover { background: var(--red-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- HERO SLIDER ---- */
.hero-slider { position: relative; height: 92vh; min-height: 550px; overflow: hidden; }
.slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease;
    display: flex; align-items: center;
}
.slide.active { opacity: 1; }
.slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3));
}
.slide-1 { background-image: url('../images/hero1.jpg'); }
.slide-2 { background-image: url('../images/hero2.jpg'); }
.slide-3 { background-image: url('../images/hero3.jpg'); }

.slide-content { position: relative; z-index: 2; padding: 0 20px; max-width: 700px; margin-left: 8%; }
.slide-badge { background: var(--red); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 3px; padding: 5px 16px; border-radius: 2px; display: inline-block; margin-bottom: 18px; text-transform: uppercase; }
.slide-content h1 { font-family: var(--font-heading); font-size: clamp(48px, 8vw, 90px); color: var(--white); line-height: 0.95; letter-spacing: 2px; margin-bottom: 20px; }
.slide-content h1 span { color: var(--red); }
.slide-content p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 32px; font-family: var(--font-text); max-width: 500px; line-height: 1.6; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--red); color: var(--white); padding: 14px 32px; font-weight: 700; font-size: 16px; border-radius: 4px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.5px; border: 2px solid var(--red); }
.btn-primary:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); padding: 14px 32px; font-weight: 700; font-size: 16px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.6); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.slider-controls { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--red); width: 30px; border-radius: 5px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(230,57,70,0.8); color: white; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 18px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.slider-arrow:hover { background: var(--red); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 20px; } .slider-next { right: 20px; }

/* ---- BOOKING SECTION ---- */
.booking-section { background: var(--black); padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 56px); color: var(--white); letter-spacing: 2px; }
.section-title h2 span { color: var(--red); }
.section-title p { color: var(--gray); font-size: 16px; margin-top: 8px; font-family: var(--font-text); }
.section-title .title-line { width: 60px; height: 3px; background: var(--red); margin: 12px auto 0; }

/* Booking Tabs */
.booking-tabs { display: flex; gap: 0; max-width: 500px; margin: 0 auto 30px; border: 1px solid var(--red); border-radius: 6px; overflow: hidden; }
.tab-btn { flex: 1; padding: 14px; background: transparent; color: #ccc; border: none; cursor: pointer; font-size: 15px; font-weight: 700; font-family: var(--font-body); transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; letter-spacing: 0.5px; }
.tab-btn.active { background: var(--red); color: var(--white); }
.tab-btn:hover:not(.active) { background: rgba(230,57,70,0.15); color: var(--white); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.booking-form { background: var(--dark2); border-radius: 10px; padding: 30px; border: 1px solid var(--border); max-width: 900px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { color: #ccc; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group select {
    background: var(--black); border: 1px solid rgba(255,255,255,0.12); color: var(--white);
    padding: 12px 16px; border-radius: 4px; font-size: 15px; font-family: var(--font-body);
    transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(230,57,70,0.15); }
.form-group select option { background: var(--dark2); }
.form-group input::placeholder { color: var(--gray); }
.btn-search { width: 100%; background: var(--red); color: var(--white); border: none; padding: 16px; font-size: 18px; font-weight: 700; border-radius: 6px; cursor: pointer; font-family: var(--font-heading); letter-spacing: 2px; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; }
.btn-search:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--red); padding: 30px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item h3 { font-family: var(--font-heading); font-size: 48px; color: var(--white); line-height: 1; }
.stat-item p { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }

/* ---- CABS SECTION ---- */
.cabs-section { padding: 80px 0; background: var(--light-gray); }
.cabs-section .section-title h2 { color: var(--dark); }
.cabs-section .section-title p { color: var(--gray); }
.cabs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.cab-card {
    background: var(--white); border-radius: 10px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: var(--transition);
    border: 1px solid #e8e8e8;
}
.cab-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }
.cab-img { height: 200px; background: var(--black); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.cab-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.cab-card:hover .cab-img img { transform: scale(1.05); }
.cab-img .cab-icon { font-size: 80px; }
.cab-badge { position: absolute; top: 12px; right: 12px; background: var(--red); color: white; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 3px; letter-spacing: 1px; }
.cab-info { padding: 20px; }
.cab-info h3 { font-family: var(--font-heading); font-size: 26px; color: var(--dark); letter-spacing: 1px; }
.cab-info .cab-model { color: var(--gray); font-size: 13px; margin: 2px 0 12px; }
.cab-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.cab-features span { background: var(--light-gray); color: var(--dark); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; display: flex; align-items: center; gap: 4px; }
.cab-features span i { color: var(--red); }
.cab-price { display: flex; align-items: center; justify-content: space-between; }
.cab-price .price { font-family: var(--font-heading); font-size: 22px; color: var(--red); }
.cab-price .price small { font-size: 14px; color: var(--gray); font-family: var(--font-body); }
.btn-book-cab { background: var(--red); color: var(--white); padding: 8px 18px; border-radius: 4px; font-size: 13px; font-weight: 700; transition: var(--transition); }
.btn-book-cab:hover { background: var(--red-dark); }

/* ---- WHY CHOOSE US ---- */
.why-section { padding: 80px 0; background: var(--black); }
.why-section .section-title h2 { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.why-card { text-align: center; padding: 36px 24px; border: 1px solid var(--border); border-radius: 10px; transition: var(--transition); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(230,57,70,0.05), transparent); opacity: 0; transition: var(--transition); }
.why-card:hover::before { opacity: 1; }
.why-card:hover { border-color: rgba(230,57,70,0.4); transform: translateY(-4px); }
.why-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(230,57,70,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 2px solid rgba(230,57,70,0.3); }
.why-icon i { font-size: 30px; color: var(--red); }
.why-card h3 { font-family: var(--font-heading); font-size: 22px; color: var(--white); letter-spacing: 1px; margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 14px; font-family: var(--font-text); line-height: 1.7; }

/* ---- ROUTES SECTION ---- */
.routes-section { padding: 80px 0; background: var(--light-gray); }
.routes-section .section-title h2 { color: var(--dark); }
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.route-card { background: var(--white); border-radius: 8px; padding: 20px; border: 1px solid #e8e8e8; transition: var(--transition); display: flex; align-items: center; gap: 16px; }
.route-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.route-icon { width: 50px; height: 50px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.route-icon i { color: var(--white); font-size: 20px; }
.route-info h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.route-info p { font-size: 13px; color: var(--gray); display: flex; gap: 12px; }
.route-info p span { display: flex; align-items: center; gap: 4px; }
.route-info p i { color: var(--red); font-size: 11px; }
.route-arrow { margin-left: auto; color: var(--red); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 80px 0; background: var(--dark); }
.testimonials-section .section-title h2 { color: var(--white); }
.testimonials-section .section-title p { color: var(--gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--dark2); border-radius: 10px; padding: 28px; border: 1px solid var(--border); }
.stars { color: #f4a261; font-size: 18px; margin-bottom: 14px; }
.testimonial-card p { color: #ccc; font-size: 15px; font-family: var(--font-text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.author-info h5 { color: var(--white); font-weight: 700; }
.author-info span { color: var(--gray); font-size: 13px; }

/* ---- CONTACT SECTION ---- */
.contact-section { padding: 80px 0; background: var(--light-gray); }
.contact-section .section-title h2 { color: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.contact-info-box { background: var(--black); border-radius: 10px; padding: 36px; }
.contact-info-box h3 { font-family: var(--font-heading); font-size: 28px; color: var(--white); margin-bottom: 24px; letter-spacing: 1px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-icon { width: 46px; height: 46px; background: rgba(230,57,70,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon i { color: var(--red); font-size: 18px; }
.info-text h4 { color: var(--white); font-weight: 700; margin-bottom: 4px; }
.info-text p, .info-text a { color: var(--gray); font-size: 14px; font-family: var(--font-text); }
.info-text a:hover { color: var(--red); }

.contact-form-box { background: var(--white); border-radius: 10px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.contact-form-box h3 { font-family: var(--font-heading); font-size: 28px; color: var(--dark); margin-bottom: 24px; letter-spacing: 1px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group label { color: var(--dark); font-weight: 600; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    background: var(--light-gray); border: 1px solid #e0e0e0; color: var(--dark);
    padding: 12px 16px; border-radius: 4px; font-size: 15px; font-family: var(--font-body);
    width: 100%; transition: var(--transition); outline: none;
}
.contact-form .form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(230,57,70,0.1); background: var(--white); }
.contact-form .btn-submit { width: 100%; background: var(--red); color: var(--white); border: none; padding: 16px; font-size: 18px; font-weight: 700; border-radius: 6px; cursor: pointer; font-family: var(--font-heading); letter-spacing: 2px; transition: var(--transition); margin-top: 8px; }
.contact-form .btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); }
.form-msg { padding: 12px 16px; border-radius: 4px; font-size: 14px; font-family: var(--font-text); display: none; margin-top: 12px; }
.form-msg.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-msg.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* ---- FOOTER ---- */
.main-footer { background: var(--black); }
.footer-top { padding: 60px 0; border-bottom: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { height: 60px; margin-bottom: 16px; }
.footer-about p { color: var(--gray); font-size: 14px; font-family: var(--font-text); line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: var(--dark2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: #ccc; transition: var(--transition); font-size: 15px; }
.social-links a:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-heading); font-size: 20px; color: var(--white); letter-spacing: 1px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: var(--red); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--gray); font-size: 14px; font-family: var(--font-text); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-col ul li a i { font-size: 10px; color: var(--red); }
.contact-info li { color: var(--gray); font-size: 14px; font-family: var(--font-text); display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.contact-info li i { color: var(--red); width: 16px; flex-shrink: 0; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: white; padding: 10px 18px; border-radius: 6px; font-weight: 700; font-size: 14px; margin-top: 16px; transition: var(--transition); }
.btn-whatsapp:hover { background: #128c7e; transform: translateY(-2px); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: var(--gray); font-size: 13px; font-family: var(--font-text); }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-float { position: fixed; bottom: 90px; right: 24px; width: 54px; height: 54px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 26px; z-index: 999; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.12); }
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--red); border: none; color: white; border-radius: 50%; cursor: pointer; font-size: 16px; z-index: 999; box-shadow: 0 4px 16px rgba(0,0,0,0.3); transition: var(--transition); opacity: 0; pointer-events: none; }
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ---- PAGE HEADER ---- */
.page-header { background: var(--black); padding: 70px 0 50px; text-align: center; position: relative; }
.page-header::before { content: ''; position: absolute; inset: 0; background: url('../images/hero1.jpg') center/cover; opacity: 0.1; }
.page-header .container { position: relative; }
.page-header h1 { font-family: var(--font-heading); font-size: clamp(40px, 6vw, 72px); color: var(--white); letter-spacing: 3px; }
.page-header h1 span { color: var(--red); }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 12px; color: var(--gray); font-size: 14px; font-family: var(--font-text); }
.breadcrumb a { color: var(--red); }

/* ---- ROUTE PAGE ---- */
.route-hero { background: linear-gradient(135deg, var(--black), var(--dark2)); padding: 60px 0; }
.route-hero-content { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; max-width: 700px; margin: 0 auto; text-align: center; }
.route-city h2 { font-family: var(--font-heading); font-size: 52px; color: var(--white); letter-spacing: 2px; }
.route-city p { color: var(--gray); font-size: 14px; }
.route-arrow-big { font-size: 48px; color: var(--red); }
.route-meta { display: flex; justify-content: center; gap: 40px; margin-top: 30px; }
.route-meta-item { text-align: center; color: var(--white); }
.route-meta-item .value { font-family: var(--font-heading); font-size: 36px; color: var(--red); }
.route-meta-item .label { color: var(--gray); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.route-cabs { padding: 60px 0; background: var(--light-gray); }
.route-info-section { padding: 60px 0; background: var(--white); }

/* ---- ABOUT PAGE ---- */
.about-content { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-family: var(--font-heading); font-size: 48px; color: var(--dark); letter-spacing: 2px; margin-bottom: 20px; }
.about-text h2 span { color: var(--red); }
.about-text p { color: #555; font-family: var(--font-text); line-height: 1.8; margin-bottom: 20px; }
.about-list li { display: flex; align-items: center; gap: 10px; color: var(--dark); font-weight: 600; margin-bottom: 10px; }
.about-list li i { color: var(--red); }

/* ---- ALERT BOX ---- */
.alert { padding: 14px 20px; border-radius: 6px; margin-bottom: 20px; font-family: var(--font-text); font-size: 15px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); padding: 100px 30px 40px; z-index: 900; overflow-y: auto; }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul li a { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 18px; }
    .has-dropdown .dropdown { display: block; position: static; background: none; border: none; box-shadow: none; padding-left: 16px; }
    .hamburger { display: flex; z-index: 1000; }
    .btn-book-header { display: none; }
    .hero-slider { height: 70vh; }
    .slide-content { margin-left: 0; padding: 0 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .route-hero-content { grid-template-columns: 1fr; }
    .route-arrow-big { display: none; }
    .top-bar-left { display: none; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-btns { flex-direction: column; }
    .btn-primary, .btn-outline { justify-content: center; }
    .slider-arrow { width: 36px; height: 36px; font-size: 14px; }
}
