/* ============================================
   HIRASAR CABS - Main Stylesheet
   Color Scheme: White | Dark Blue #0d2b5e | Grey #6b7280
   ============================================ */

:root {
    --white: #ffffff;
    --dark-blue: #0d2b5e;
    --dark-blue-2: #1a3f7a;
    --dark-blue-light: #1e4d99;
    --grey: #6b7280;
    --grey-light: #f3f4f6;
    --grey-border: #e5e7eb;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --accent: #f5a623;
    --accent-dark: #e09010;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(13,43,94,0.12);
    --shadow-lg: 0 10px 40px rgba(13,43,94,0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Lato', 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 { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-blue);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: 2px solid var(--dark-blue);
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover { background: var(--dark-blue-2); border-color: var(--dark-blue-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--dark-blue);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 15px;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: var(--transition);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dark-blue);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--dark-blue);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover { background: var(--dark-blue); color: var(--white); }

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--dark-blue);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 15px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}
.btn-white:hover { background: transparent; color: var(--white); }

/* ---- SECTION TITLES ---- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title .tag {
    display: inline-block;
    background: rgba(13,43,94,0.08);
    color: var(--dark-blue);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-head);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-title h2 span { color: var(--accent); }
.section-title p {
    font-size: 16px;
    color: var(--grey);
    max-width: 580px;
    margin: 0 auto;
}
.title-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
    margin: 16px auto 0;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--dark-blue);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar span, .top-bar a {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.85);
}
.top-bar a:hover { color: var(--accent); }
.top-bar i { color: var(--accent); }

/* ---- HEADER ---- */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.main-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}
.logo img { height: 54px; width: auto; }

/* NAV */
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: var(--radius);
    transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--dark-blue);
    background: rgba(13,43,94,0.07);
}
.main-nav ul li a.active { color: var(--dark-blue); }
.main-nav .fa-chevron-down { font-size: 10px; }

/* Dropdown */
.main-nav .dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    border-top: 3px solid var(--dark-blue);
    z-index: 999;
}
.main-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .dropdown li a {
    padding: 10px 18px;
    border-radius: 0;
    font-size: 13px;
    border-bottom: 1px solid var(--grey-border);
}
.main-nav .dropdown li:last-child a { border-bottom: none; }
.main-nav .dropdown li a:hover { background: var(--grey-light); color: var(--dark-blue); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-call {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 18px;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-call:hover { background: var(--dark-blue); color: var(--white); }
.btn-book {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 20px;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-book:hover { background: var(--dark-blue-light); transform: translateY(-1px); }

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

/* ============================================
   HERO SECTION (Home Page)
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    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 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13,43,94,0.88) 0%, rgba(13,43,94,0.5) 55%, rgba(13,43,94,0.2) 100%);
}

/* Animated particles overlay */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-20px) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 60px;
}
.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}
.hero-text { color: var(--white); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    animation: fadeInUp 0.6s ease forwards;
}
.hero-badge i { color: var(--accent); }
.hero-text h1 {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}
.stat {
    text-align: left;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); }

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.dot.active { background: var(--accent); border-color: var(--white); transform: scale(1.2); }

/* Slider nav arrows */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    backdrop-filter: blur(4px);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-prev:hover, .slider-next:hover { background: var(--accent); border-color: var(--accent); }

/* ============================================
   BOOKING FORM (Hero)
   ============================================ */
.booking-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: fadeInRight 0.8s ease 0.2s both;
}
.booking-header {
    background: var(--dark-blue);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.booking-header i { color: var(--accent); font-size: 20px; }
.booking-header h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

/* Tabs */
.booking-tabs {
    display: flex;
    border-bottom: 2px solid var(--grey-border);
    background: var(--grey-light);
}
.tab-btn {
    flex: 1;
    padding: 12px 8px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--grey);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}
.tab-btn.active {
    color: var(--dark-blue);
    background: var(--white);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 2px;
    background: var(--dark-blue);
}

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

.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-medium);
    margin-bottom: 6px;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--grey-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 3px rgba(13,43,94,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-box .btn-primary { width: 100%; justify-content: center; margin-top: 6px; padding: 14px; font-size: 15px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: 80px 0;
    background: var(--grey-light);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--dark-blue);
}
.feature-icon {
    width: 68px; height: 68px;
    background: rgba(13,43,94,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--dark-blue); }
.feature-icon i { font-size: 26px; color: var(--dark-blue); transition: var(--transition); }
.feature-card:hover .feature-icon i { color: var(--white); }
.feature-card h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services { padding: 80px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--grey-border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.service-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--dark-blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-head);
}
.service-body { padding: 22px; }
.service-body h3 {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}
.service-body p { font-size: 14px; color: var(--grey); margin-bottom: 18px; }
.service-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.service-features span {
    background: var(--grey-light);
    color: var(--text-medium);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.service-body a { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--dark-blue); display: flex; align-items: center; gap: 6px; }
.service-body a:hover { color: var(--dark-blue-light); gap: 10px; }

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet { padding: 80px 0; background: var(--grey-light); }
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-img { height: 190px; overflow: hidden; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.06); }
.fleet-info { padding: 22px; }
.fleet-name {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 6px;
}
.fleet-type { font-size: 13px; color: var(--grey); margin-bottom: 16px; }
.fleet-specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
}
.spec-item { text-align: center; }
.spec-val { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--dark-blue); }
.spec-label { font-size: 11px; color: var(--grey); }
.fleet-price { font-family: var(--font-head); font-size: 15px; color: var(--grey); margin-bottom: 16px; }
.fleet-price span { color: var(--dark-blue); font-size: 22px; font-weight: 800; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 80px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--dark-blue);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #f5a623; font-size: 15px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14px; color: var(--text-medium); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--dark-blue);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 700; font-size: 16px;
    color: var(--white);
    flex-shrink: 0;
}
.reviewer-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--dark-blue); }
.reviewer-city { font-size: 12px; color: var(--grey); }

/* ============================================
   COUNTER BANNER
   ============================================ */
.counter-banner {
    background: var(--dark-blue);
    padding: 60px 0;
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}
.counter-item { color: var(--white); }
.counter-num {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
}
.counter-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-img { position: relative; }
.about-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge-img {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--dark-blue);
    color: var(--white);
    padding: 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-badge-img .num { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--accent); }
.about-badge-img .lbl { font-size: 13px; }
.about-text .tag {
    display: inline-block;
    background: rgba(13,43,94,0.08);
    color: var(--dark-blue);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-head);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.about-text h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 18px;
}
.about-text p { color: var(--grey); margin-bottom: 14px; }
.about-points { margin: 24px 0; }
.about-points li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px;
    font-size: 15px; color: var(--text-medium);
}
.about-points li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-2) 100%);
    padding: 70px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    position: relative;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--white); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}
.contact-info h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.ci-icon {
    width: 46px; height: 46px;
    background: rgba(13,43,94,0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ci-icon i { font-size: 18px; color: var(--dark-blue); }
.ci-text strong { display: block; font-family: var(--font-head); font-size: 14px; color: var(--dark-blue); margin-bottom: 2px; }
.ci-text span { font-size: 14px; color: var(--grey); }
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--grey-border);
}
.contact-form-box h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 24px;
}

/* ============================================
   MAP
   ============================================ */
.map-section { padding: 0 0 80px; }
.map-section iframe {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-md);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer { background: var(--dark-blue); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}
.footer-logo { height: 54px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.65); 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: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.social-links a:hover { background: var(--accent); color: var(--dark-blue); }
.footer-col h4 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}
.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;
}
.footer-col ul li a i { font-size: 10px; color: var(--accent); }
.footer-col ul li a:hover { color: var(--accent); gap: 12px; }
.contact-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.contact-list li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.contact-list li a { color: rgba(255,255,255,0.65); }
.contact-list li a:hover { color: var(--accent); }
.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 .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; width: 100%; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float, .call-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float {
    background: #25D366;
    color: var(--white);
    bottom: 160px;
}
.call-float {
    background: var(--dark-blue);
    color: var(--white);
    bottom: 100px;
}
.whatsapp-float:hover, .call-float:hover { transform: scale(1.12) translateY(-3px); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 4px 28px rgba(0,0,0,0.35); }
}

/* ============================================
   ROUTE BANNER
   ============================================ */
.routes-section { padding: 70px 0; background: var(--grey-light); }
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.route-pill {
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--dark-blue);
    transition: var(--transition);
    cursor: default;
}
.route-pill:hover { background: var(--dark-blue); color: var(--white); transform: translateX(4px); }
.route-pill i { color: var(--accent); }

/* ============================================
   BOOKING / CONFIRMATION PAGE
   ============================================ */
.booking-confirm { padding: 80px 0; }
.confirm-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 50px 40px;
    text-align: center;
    border-top: 6px solid var(--dark-blue);
}
.confirm-icon {
    width: 80px; height: 80px;
    background: rgba(16,185,129,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.confirm-icon i { font-size: 36px; color: var(--success); }
.confirm-card h2 {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 10px;
}
.confirm-card p { color: var(--grey); margin-bottom: 30px; }
.confirm-details {
    background: var(--grey-light);
    border-radius: var(--radius);
    padding: 22px;
    text-align: left;
    margin-bottom: 28px;
}
.confirm-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--grey-border);
    font-size: 14px;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row strong { color: var(--dark-blue); }

/* ============================================
   OUTSTATION / SERVICE PAGES
   ============================================ */
.service-detail { padding: 80px 0; }
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.service-detail-content h2 {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 18px;
}
.service-detail-content p { color: var(--grey); margin-bottom: 16px; line-height: 1.8; }
.service-detail-content h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 28px 0 14px;
}
.check-list li {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 10px;
    font-size: 14px; color: var(--text-medium);
}
.check-list li i { color: var(--success); margin-top: 3px; }
.pricing-box {
    background: var(--dark-blue);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 100px;
}
.pricing-box h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.price-row:last-of-type { border-bottom: none; }
.price-row span:last-child { font-weight: 700; color: var(--accent); }
.pricing-box .btn-accent { width: 100%; justify-content: center; margin-top: 20px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-content .container { grid-template-columns: 1fr; }
    .booking-box { max-width: 560px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .pricing-box { position: static; }
}
@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .main-nav { 
        position: fixed; top: 0; right: -100%; bottom: 0;
        width: 280px; background: var(--white);
        padding: 80px 20px 20px;
        flex-direction: column;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.35s ease;
        z-index: 9999;
        overflow-y: auto;
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul li a { padding: 12px 16px; border-bottom: 1px solid var(--grey-border); }
    .main-nav .dropdown { position: static; opacity: 1; visibility: visible; box-shadow: none; transform: none; border-top: none; background: var(--grey-light); }
    .hamburger { display: flex; z-index: 10000; }
    .header-cta .btn-call { display: none; }
    .hero { min-height: 100vh; }
    .hero-stats { gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .about-badge-img { display: none; }
    .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { justify-content: center; }
    .confirm-card { padding: 30px 20px; }
    .contact-form-box { padding: 24px; }
}
