/* =============================================
   CAB CONNECTS - Main Stylesheet
   Colors: Deep Blue #0a1f44 | Dark Orange #e85d04 | White #ffffff
============================================= */

:root {
    --blue: #0a1f44;
    --blue-mid: #133a6b;
    --blue-light: #1a4f8a;
    --orange: #e85d04;
    --orange-dark: #c44f03;
    --orange-light: #ff7b2e;
    --white: #ffffff;
    --off-white: #f4f6fb;
    --text-dark: #1a1a2e;
    --text-gray: #5a6a80;
    --border: #dde3ee;
    --shadow: 0 4px 24px rgba(10,31,68,0.12);
    --shadow-lg: 0 8px 40px rgba(10,31,68,0.18);
    --radius: 10px;
    --radius-lg: 18px;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: all 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ======================== TOPBAR ======================== */
.topbar {
    background: var(--blue);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-family: var(--font-body);
    padding: 8px 0;
    border-bottom: 2px solid var(--orange);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar span, .topbar a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--orange-light); }
.topbar i { color: var(--orange); }

/* ======================== HEADER ======================== */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(10,31,68,0.1);
    transition: all 0.3s;
}
.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(10,31,68,0.18);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}
.logo img { height: 60px; width: auto; }

/* NAV */
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-nav ul li a:hover, .main-nav ul li a.active {
    color: var(--orange);
    background: rgba(232,93,4,0.08);
}
.main-nav ul li a.active { color: var(--orange); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 999;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.has-dropdown .dropdown li a {
    padding: 10px 18px;
    border-radius: 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    gap: 10px;
}
.has-dropdown .dropdown li:last-child a { border-bottom: none; }
.has-dropdown .dropdown li a i { color: var(--orange); width: 16px; }
.has-dropdown .dropdown li a:hover { background: var(--off-white); color: var(--orange); }

/* Book Now Button in Nav */
.btn-book-nav {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(232,93,4,0.35) !important;
}
.btn-book-nav:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,93,4,0.45) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ======================== HERO SLIDER ======================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 850px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,31,68,0.88) 40%, rgba(10,31,68,0.45) 100%);
}
/* Animated gradient overlay */
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(232,93,4,0.15) 100%);
    z-index: 1;
    animation: gradientShift 8s ease infinite alternate;
}
@keyframes gradientShift {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Moving dots animation */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}
.hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(232,93,4,0.6);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
}
.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: center;
}

.hero-text { color: var(--white); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,93,4,0.2);
    border: 1px solid rgba(232,93,4,0.5);
    color: var(--orange-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease forwards;
}
.hero-badge i { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.2);} }

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    animation: fadeInLeft 0.9s ease 0.2s both;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--orange-light); }

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 500px;
    animation: fadeInLeft 0.9s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    animation: fadeInLeft 0.9s ease 0.6s both;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--orange-light);
    line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.slider-dot.active { background: var(--orange); width: 28px; border-radius: 5px; }

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(232,93,4,0.8);
    color: white;
    border: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    font-size: 16px;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--orange); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ======================== BOOKING FORM ======================== */
.booking-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 50px rgba(10,31,68,0.3);
    overflow: hidden;
    animation: fadeInRight 0.9s ease 0.3s both;
}
.booking-box-header {
    background: var(--blue);
    padding: 18px 24px;
    text-align: center;
}
.booking-box-header h3 {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 20px;
    letter-spacing: 1px;
}
.booking-box-header p { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 4px; }

/* Tabs */
.booking-tabs {
    display: flex;
    background: var(--off-white);
    border-bottom: 2px solid var(--border);
}
.booking-tab {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    border: none;
    background: none;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.booking-tab i { display: block; font-size: 18px; margin-bottom: 4px; color: var(--text-gray); }
.booking-tab.active {
    color: var(--orange);
    background: var(--white);
    border-bottom-color: var(--orange);
}
.booking-tab.active i { color: var(--orange); }

.booking-form-content { padding: 22px; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.3s;
    outline: none;
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}
.form-group input::placeholder { color: #aab3c0; }

.input-icon { position: relative; }
.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 14px;
}
.input-icon input { padding-left: 36px; }

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}
.btn-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,93,4,0.4);
}

/* ======================== SECTION STYLES ======================== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,93,4,0.1);
    color: var(--orange);
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--blue);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-title span { color: var(--orange); }
.section-desc { color: var(--text-gray); max-width: 580px; margin: 0 auto; font-size: 16px; }
.divider {
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ======================== SERVICES SECTION ======================== */
.services-section { background: var(--off-white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,93,4,0.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 74px; height: 74px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(10,31,68,0.25);
    transition: all 0.4s;
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    transform: rotate(10deg) scale(1.1);
}
.service-card h3 {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--text-gray); margin-bottom: 20px; }
.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
}
.service-card a:hover { gap: 12px; }

/* ======================== FLEET SECTION ======================== */
.fleet-section { background: var(--white); }
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.fleet-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    background: var(--white);
    border: 1px solid var(--border);
}
.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.fleet-img {
    height: 200px;
    overflow: hidden;
    background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
}
.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.fleet-card:hover .fleet-img img { transform: scale(1.06); }
.fleet-info { padding: 22px; }
.fleet-info h3 {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 8px;
}
.fleet-badge {
    display: inline-block;
    background: rgba(232,93,4,0.1);
    color: var(--orange);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}
.fleet-specs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.fleet-specs span {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}
.fleet-specs i { color: var(--orange); }
.fleet-price {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--blue);
    font-weight: 700;
}
.fleet-price small { font-size: 13px; color: var(--text-gray); font-family: var(--font-body); font-weight: 400; }
.btn-book-fleet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-head);
    transition: all 0.3s;
    margin-top: 14px;
}
.btn-book-fleet:hover { background: var(--orange); transform: translateY(-2px); }

/* ======================== WHY CHOOSE US ======================== */
.why-section { background: var(--blue); color: var(--white); }
.why-section .section-title { color: var(--white); }
.why-section .section-desc { color: rgba(255,255,255,0.7); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s;
}
.why-card:hover {
    background: rgba(232,93,4,0.15);
    border-color: rgba(232,93,4,0.4);
    transform: translateY(-6px);
}
.why-icon {
    width: 64px; height: 64px;
    background: rgba(232,93,4,0.2);
    border: 2px solid rgba(232,93,4,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: var(--orange-light);
    transition: all 0.4s;
}
.why-card:hover .why-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: rotate(10deg);
}
.why-card h4 {
    font-family: var(--font-head);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
}
.why-card p { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ======================== COUNTERS ======================== */
.counters-section {
    background: var(--off-white);
    padding: 60px 0;
}
.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.counter-item { padding: 30px 20px; }
.counter-icon { font-size: 36px; color: var(--orange); margin-bottom: 12px; }
.counter-number {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}
.counter-number span { color: var(--orange); }
.counter-label { font-size: 14px; color: var(--text-gray); margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ======================== TESTIMONIALS ======================== */
.testimonials-section { background: var(--white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(232,93,4,0.2);
}
.quote-icon {
    font-size: 40px;
    color: rgba(232,93,4,0.15);
    line-height: 1;
    margin-bottom: 14px;
    font-family: serif;
}
.testimonial-card p {
    font-size: 15px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.75;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 46px; height: 46px;
    background: var(--blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--blue); }
.author-loc { font-size: 12px; color: var(--text-gray); }
.stars { color: #f59e0b; font-size: 13px; }

/* ======================== CTA BANNER ======================== */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 70px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(10,31,68,0.15);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 4vw, 42px);
    margin-bottom: 14px;
}
.cta-section p { font-size: 17px; opacity: 0.9; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
    background: var(--white);
    color: var(--orange);
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.8);
    padding: 12px 32px;
    border-radius: 30px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* ======================== INNER PAGE HERO ======================== */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232,93,4,0.1);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(28px, 5vw, 50px);
    margin-bottom: 14px;
}
.page-hero h1 span { color: var(--orange-light); }
.page-hero p { font-size: 17px; opacity: 0.85; max-width: 560px; margin: 0 auto 20px; }
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
}
.breadcrumb a { color: var(--orange-light); }
.breadcrumb i { font-size: 10px; }

/* ======================== CONTACT FORM PAGE ======================== */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.contact-info-box {
    background: var(--blue);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}
.contact-info-box h3 {
    font-family: var(--font-head);
    font-size: 24px;
    margin-bottom: 8px;
}
.contact-info-box p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.cinfo-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cinfo-item:last-child { border-bottom: none; }
.cinfo-icon {
    width: 44px; height: 44px;
    background: rgba(232,93,4,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--orange-light);
    flex-shrink: 0;
}
.cinfo-text h5 { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.cinfo-text a, .cinfo-text p { font-size: 16px; color: var(--white); font-weight: 600; }

.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form-box h3 {
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 6px;
}
.contact-form-box > p { color: var(--text-gray); margin-bottom: 28px; }

/* ======================== ABOUT PAGE ======================== */
.about-intro { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(232,93,4,0.4);
}
.about-badge-float .num {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.about-badge-float p { font-size: 12px; opacity: 0.9; }
.about-content h2 {
    font-family: var(--font-head);
    font-size: 36px;
    color: var(--blue);
    margin-bottom: 16px;
}
.about-content h2 span { color: var(--orange); }
.about-content p { color: var(--text-gray); margin-bottom: 18px; font-size: 16px; }
.about-points { margin: 20px 0; }
.about-points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
}
.about-points li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

/* ======================== BOOKING PAGE ======================== */
.booking-page-section { background: var(--off-white); }
.booking-page-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

/* ======================== MAP ======================== */
.map-section { padding: 0; }
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ======================== FOOTER ======================== */
.main-footer { background: var(--blue); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
}
.footer-logo { height: 55px; width: auto; margin-bottom: 18px; }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}
.social-links a:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 17px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(232,93,4,0.4);
    display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.footer-col ul li a i { color: var(--orange); font-size: 11px; }
.footer-col ul li a:hover { color: var(--orange-light); padding-left: 5px; }

.contact-info li { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.contact-info li i { color: var(--orange); font-size: 16px; margin-top: 4px; flex-shrink: 0; }
.contact-info li span { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 3px; }
.contact-info li a, .contact-info li p { font-size: 14px; color: rgba(255,255,255,0.85); }
.contact-info li a:hover { color: var(--orange-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom p strong { color: var(--orange-light); }
.footer-bottom i.fa-heart { color: #e74c3c; }
.footer-bottom a { color: rgba(255,255,255,0.6); margin: 0 6px; }
.footer-bottom a:hover { color: var(--orange-light); }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 24px;
    background: #25d366;
    color: var(--white);
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    z-index: 9000;
    transition: all 0.3s;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.whatsapp-float:hover { transform: scale(1.05) !important; box-shadow: 0 8px 30px rgba(37,211,102,0.6); animation: none; }
.whatsapp-float i { font-size: 20px; }

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px; height: 44px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(232,93,4,0.4);
    z-index: 8999;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); background: var(--orange-dark); }

/* ======================== ANIMATIONS ======================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content .container { grid-template-columns: 1fr; max-width: 600px; }
    .booking-box { display: none; }
}

@media (max-width: 768px) {
    .topbar .container { justify-content: center; }
    .topbar-right { display: none; }
    
    .hamburger { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; left: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: var(--blue);
        padding: 80px 24px 24px;
        transition: left 0.4s;
        z-index: 9999;
        overflow-y: auto;
    }
    .main-nav.open { left: 0; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul li a { color: rgba(255,255,255,0.9); padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
    .main-nav ul li a:hover, .main-nav ul li a.active { color: var(--orange-light); background: rgba(255,255,255,0.05); }
    .has-dropdown .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.05); border: none; border-radius: 0; }
    .has-dropdown .dropdown li a { color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.05); padding-left: 24px; }
    .btn-book-nav { background: var(--orange) !important; border-radius: 0 !important; }
    
    section { padding: 60px 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-section { min-height: 500px; max-height: 600px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .counters-grid { grid-template-columns: 1fr 1fr; }
}
