/* ============================================================
   PARIJAT TOUR & TRAVELS — Design System v2.0
   Clean & Bold Aesthetic | Mobile-First
   ============================================================ */

/* ----------------------------------------------------------
   1. RESET & BASE
   ---------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: #1F2937;
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ----------------------------------------------------------
   2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ---------------------------------------------------------- */
:root {
    /* Colors */
    --primary: #F97316;
    --primary-dark: #EA580C;
    --primary-light: #FFF7ED;
    --primary-glow: rgba(249, 115, 22, 0.25);
    --dark: #111827;
    --dark-secondary: #1F2937;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-400: #9CA3AF;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --white: #FFFFFF;
    --success: #16A34A;
    --whatsapp: #25D366;

    /* Typography */
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing (8px grid) */
    --s1: 4px;
    --s2: 8px;
    --s3: 12px;
    --s4: 16px;
    --s5: 24px;
    --s6: 32px;
    --s7: 48px;
    --s8: 64px;
    --s9: 80px;
    --s10: 96px;
    --s11: 128px;

    /* Border radius */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-orange: 0 4px 20px rgba(249, 115, 22, 0.35);

    /* Transitions */
    --transition: 0.22s ease;
    --transition-slow: 0.4s ease;

    /* Layout */
    --container: 1200px;
    --nav-h: 72px;
}

/* ----------------------------------------------------------
   3. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s5);
}

.section {
    padding: var(--s9) 0;
}

.section-sm {
    padding: var(--s7) 0;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gap-2 {
    gap: var(--s2);
}

.gap-3 {
    gap: var(--s3);
}

.gap-4 {
    gap: var(--s4);
}

.gap-5 {
    gap: var(--s5);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

/* ----------------------------------------------------------
   4. TYPOGRAPHY
   ---------------------------------------------------------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: var(--s1) var(--s3);
    border-radius: var(--r-pill);
    margin-bottom: var(--s4);
}

.section-tag.light {
    background: rgba(249, 115, 22, 0.15);
    color: #FDBA74;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: var(--s4);
}

.section-title .hl {
    color: var(--primary);
}

.section-title.white {
    color: var(--white);
}

.section-title.white .hl {
    color: #FDBA74;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 640px;
    line-height: 1.75;
}

.section-header {
    margin-bottom: var(--s8);
}

.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--r-pill);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn .material-icons {
    font-size: 18px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 28px rgba(249, 115, 22, 0.45);
    transform: translateY(-2px);
}

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

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

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.btn-dark {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.btn-dark:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

/* ----------------------------------------------------------
   6. TOP BAR
   ---------------------------------------------------------- */
.top-bar {
    background: var(--dark);
    color: var(--gray-400);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: var(--s4);
    flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-400);
    font-size: 12.5px;
    transition: color var(--transition);
}

.top-bar-left a:hover {
    color: var(--primary);
}

.top-bar-left .material-icons {
    font-size: 14px;
    color: var(--primary);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    display: block !important;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--s3);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gray-400);
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* ----------------------------------------------------------
   7. NAVBAR
   ---------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 0 var(--gray-200);
    height: var(--nav-h);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--s5);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--s1);
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gray-700);
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--s3);
    flex-shrink: 0;
}

.nav-call {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--white);
    padding: 9px 20px;
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    transition: all var(--transition);
    box-shadow: var(--shadow-orange);
}

.nav-call:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.nav-call .material-icons {
    font-size: 16px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--r-sm);
    transition: background var(--transition);
}

.hamburger:hover {
    background: var(--gray-100);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
    padding: var(--s8) var(--s5) var(--s5);
    flex-direction: column;
    gap: var(--s3);
    overflow-y: auto;
    top: var(--nav-h);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: var(--s3);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    padding: var(--s4);
    border-radius: var(--r-md);
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    margin-top: var(--s5);
}

.mobile-nav-cta .btn {
    justify-content: center;
    font-size: 15px;
}

/* ----------------------------------------------------------
   8. PAGE HERO (inner pages)
   ---------------------------------------------------------- */
.page-hero {
    background: var(--dark);
    background-image: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    padding: var(--s8) 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--s2);
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: var(--s4);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.25);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
}

.page-hero h1 .hl {
    color: var(--primary);
}

.page-hero p {
    font-size: 17px;
    color: var(--gray-400);
    margin-top: var(--s4);
    max-width: 560px;
}

/* ----------------------------------------------------------
   9. HERO (Homepage)
   ---------------------------------------------------------- */
.hero {
    background: var(--dark);
    background-image:
        linear-gradient(135deg, rgba(17, 24, 39, 0.97) 0%, rgba(31, 41, 55, 0.95) 100%),
        url('images/hero-banner-bg.jpg') center/cover no-repeat;
    min-height: calc(100vh - var(--nav-h) - 40px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--s10) 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--r-pill);
    margin-bottom: var(--s5);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.10;
    margin-bottom: var(--s5);
    letter-spacing: -0.01em;
}

.hero h1 .hl {
    color: var(--primary);
    position: relative;
}

.hero-sub {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: var(--s7);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3);
    margin-bottom: var(--s8);
}

/* Rating badge in hero */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-pill);
    padding: 8px 16px;
    margin-bottom: var(--s8);
}

.hero-rating-stars {
    color: #FBBF24;
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-rating-text {
    font-size: 13px;
    color: var(--gray-400);
}

.hero-rating-text strong {
    color: var(--white);
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: var(--s7);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--s6);
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--primary);
    display: block;
    line-height: 1;
}

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

/* ----------------------------------------------------------
   10. TRUST STRIP
   ---------------------------------------------------------- */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--s5) 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--s4) var(--s8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--s3);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.trust-item .material-icons {
    font-size: 22px;
    color: var(--primary);
}

.trust-item .trust-divider {
    width: 1px;
    height: 30px;
    background: var(--gray-200);
}

/* ----------------------------------------------------------
   11. CARDS
   ---------------------------------------------------------- */
.card {
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

/* Feature cards */
.feature-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: var(--s6);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s5);
    transition: background var(--transition);
}

.feature-icon .material-icons {
    font-size: 28px;
    color: var(--primary);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
}

.feature-card:hover .feature-icon .material-icons {
    color: var(--white);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--s3);
}

.feature-card p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ----------------------------------------------------------
   12. FLEET CARDS
   ---------------------------------------------------------- */
.fleet-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.fleet-img {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--gray-100);
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img img {
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: var(--r-pill);
}

.fleet-review {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--r-pill);
}

.fleet-info {
    padding: var(--s5) var(--s5) var(--s6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: var(--s2);
}

.fleet-price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: var(--s4);
}

.fleet-price small {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s2);
    margin-bottom: var(--s5);
    flex: 1;
}

.fleet-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

.fleet-specs .material-icons {
    font-size: 16px;
    color: var(--primary);
}

.fleet-card .btn {
    width: 100%;
    justify-content: center;
}

/* ----------------------------------------------------------
   13. SERVICE CARDS
   ---------------------------------------------------------- */
.service-card {
    background: var(--dark-secondary);
    border-radius: var(--r-lg);
    padding: var(--s7) var(--s6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
    display: block;
}

.service-card:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s5);
    transition: background var(--transition);
}

.service-icon .material-icons {
    font-size: 30px;
    color: var(--primary);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-card:hover .service-icon .material-icons {
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--s3);
}

.service-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-top: var(--s4);
    transition: gap var(--transition);
}

.service-card:hover .service-link {
    gap: 10px;
}

/* ----------------------------------------------------------
   14. TESTIMONIAL CARDS
   ---------------------------------------------------------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--s6);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--s4);
    right: var(--s5);
    font-size: 72px;
    font-family: Georgia, serif;
    color: var(--primary-light);
    line-height: 1;
}

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

.testimonial-stars {
    color: #FBBF24;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: var(--s4);
}

.testimonial-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: var(--s5);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--s3);
}

.author-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-400);
}

/* ----------------------------------------------------------
   15. BLOG CARDS
   ---------------------------------------------------------- */
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.blog-img {
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-info {
    padding: var(--s5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    margin-bottom: var(--s3);
}

.blog-info h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--s3);
    line-height: 1.4;
}

.blog-info p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-top: var(--s4);
    transition: gap var(--transition);
}

.blog-card:hover .blog-link {
    gap: 10px;
}

/* ----------------------------------------------------------
   16. ROUTE PILLS
   ---------------------------------------------------------- */
.routes-section {
    background: var(--dark);
    padding: var(--s9) 0;
}

.routes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3);
    justify-content: center;
}

.route-pill {
    display: flex;
    align-items: center;
    gap: var(--s2);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
    cursor: default;
}

.route-pill:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.route-pill .material-icons {
    font-size: 18px;
    color: var(--primary);
}

.route-pill:hover .material-icons {
    color: var(--white);
}

/* ----------------------------------------------------------
   17. CTA BANNER
   ---------------------------------------------------------- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--s9) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--s4);
    line-height: 1.2;
}

.cta-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--s7);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--s3);
    flex-wrap: wrap;
}

/* ----------------------------------------------------------
   18. ABOUT PAGE COMPONENTS
   ---------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--r-lg);
}

.about-badge {
    position: absolute;
    bottom: var(--s5);
    left: var(--s5);
    background: var(--primary);
    color: var(--white);
    border-radius: var(--r-md);
    padding: var(--s4) var(--s5);
    font-family: var(--font-display);
}

.about-badge .years {
    font-size: 40px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.about-badge .label {
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: var(--s5);
}

.about-content h2 .hl {
    color: var(--primary);
}

.about-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--s4);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s4);
}

.value-card {
    text-align: center;
    padding: var(--s6) var(--s4);
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--s4);
    transition: background var(--transition);
}

.value-icon .material-icons {
    font-size: 32px;
    color: var(--primary);
}

.value-card:hover .value-icon {
    background: var(--primary);
}

.value-card:hover .value-icon .material-icons {
    color: var(--white);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--s2);
}

.value-card p {
    font-size: 14px;
    color: var(--gray-600);
}

/* Stats bar */
.stats-bar {
    background: var(--dark);
    padding: var(--s7) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s5);
    text-align: center;
}

.stats-grid .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--s3) 0;
}

.stats-grid .stat-item:last-child {
    border-right: none;
}

/* ----------------------------------------------------------
   19. FLEET PAGE
   ---------------------------------------------------------- */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
    justify-content: center;
    margin-bottom: var(--s8);
}

.filter-tab {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 2px solid transparent;
    padding: 9px 22px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-tab:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-light);
}

.filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.fleet-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
    margin-bottom: var(--s5);
}

.amenity-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--r-pill);
}

.amenity-tag .material-icons {
    font-size: 14px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--s6);
}

.fleet-item {
    display: none;
}

.fleet-item.visible {
    display: flex;
}

.pricing-note {
    background: var(--primary-light);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--r-md);
    padding: var(--s5);
    display: flex;
    gap: var(--s3);
    align-items: flex-start;
    margin-top: var(--s7);
}

.pricing-note .material-icons {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ----------------------------------------------------------
   20. GALLERY
   ---------------------------------------------------------- */
.gallery-grid {
    columns: 3;
    column-gap: var(--s4);
    gap: var(--s4);
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: var(--s4);
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: none;
}

.gallery-item.visible {
    display: block;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(249, 115, 22, 0);
    transition: background var(--transition);
}

.gallery-item:hover::after {
    background: rgba(249, 115, 22, 0.2);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--s5);
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--r-md);
    animation: fadeIn 0.2s ease;
}

.lightbox-close {
    position: fixed;
    top: var(--s5);
    right: var(--s5);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: background var(--transition);
    border: none;
    font-size: 28px;
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--primary);
}

/* ----------------------------------------------------------
   21. FAQ
   ---------------------------------------------------------- */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--primary);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
    padding: var(--s5) var(--s6);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    transition: color var(--transition);
    user-select: none;
}

.faq-item.open .faq-q {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.faq-icon .material-icons {
    font-size: 18px;
    color: var(--gray-600);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--primary);
}

.faq-item.open .faq-icon .material-icons {
    color: var(--white);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-a-inner {
    padding: 0 var(--s6) var(--s5);
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    border-top: 1px solid var(--gray-100);
    padding-top: var(--s4);
}

.faq-item.open .faq-a {
    max-height: 500px;
}

/* ----------------------------------------------------------
   22. CONTACT PAGE
   ---------------------------------------------------------- */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5);
    margin-bottom: var(--s8);
}

.contact-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--s6);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--s4);
}

.contact-icon .material-icons {
    font-size: 32px;
    color: var(--primary);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--s2);
}

.contact-card p,
.contact-card a {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--primary);
}

.map-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

.hours-card {
    background: var(--dark);
    border-radius: var(--r-lg);
    padding: var(--s6);
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.hours-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--s2);
}

.hours-row {
    display: flex;
    align-items: center;
    gap: var(--s3);
    color: var(--gray-400);
    font-size: 14.5px;
}

.hours-row .material-icons {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ----------------------------------------------------------
   23. FOOTER
   ---------------------------------------------------------- */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: var(--s10) 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: var(--s8);
    padding-bottom: var(--s8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--s5);
    padding-bottom: var(--s3);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: var(--s4);
}

.footer-col>p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: var(--s5);
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: var(--s2);
}

.footer-links li {
    margin-bottom: var(--s3);
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: var(--s2);
    transition: color var(--transition);
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-size: 18px;
    line-height: 1;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: var(--s4);
    line-height: 1.6;
}

.footer-contact .material-icons {
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: var(--s5) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s3);
    font-size: 13px;
    color: var(--gray-600);
}

.footer-bottom a {
    color: var(--primary);
    font-weight: 600;
}

/* ----------------------------------------------------------
   24. FLOATING WHATSAPP
   ---------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
    transition: all var(--transition);
    animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65);
    animation: none;
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.08);
    }
}

/* ----------------------------------------------------------
   25. SECTION BACKGROUNDS
   ---------------------------------------------------------- */
.bg-light {
    background: var(--gray-100);
}

.bg-dark {
    background: var(--dark);
}

.bg-dark-secondary {
    background: var(--dark-secondary);
}

.bg-orange {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.bg-white {
    background: var(--white);
}

/* ----------------------------------------------------------
   26. ANIMATIONS
   ---------------------------------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease both;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease both;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease both;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-1 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
    transition-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

/* ----------------------------------------------------------
   27. GRIDS
   ---------------------------------------------------------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s6);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s6);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s5);
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--s6);
}

/* ----------------------------------------------------------
   28. RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------- */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--s6);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrap {
        order: -1;
    }

    .about-img-wrap img {
        height: 360px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .top-bar {
        display: none;
    }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
    :root {
        --s9: 56px;
        --s10: 64px;
    }

    .nav-links,
    .nav-cta .nav-call {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: var(--s10) 0;
    }

    .hero-stats {
        gap: var(--s5);
        flex-wrap: wrap;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--s6);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 2;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .trust-items {
        gap: var(--s3) var(--s5);
    }

    .routes-grid {
        flex-direction: column;
        align-items: center;
    }

    .route-pill {
        width: 100%;
        justify-content: center;
    }

    .page-hero {
        padding: var(--s7) 0;
    }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--s4);
    }

    .hero-stats {
        gap: var(--s4);
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .filter-tabs {
        gap: var(--s2);
    }

    .filter-tab {
        font-size: 12px;
        padding: 8px 16px;
    }

    .gallery-grid {
        columns: 1;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}