/* ===================== MAHADEV CAB SERVICES - MAIN STYLESHEET ===================== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --blue: #E87722;
  --blue-dark: #1a1a1a;
  --blue-light: #F59432;
  --red: #E87722;
  --red-dark: #C45E0A;
  --red-light: #F59432;
  --white: #ffffff;
  --gray-light: #f8f5f0;
  --gray: #e8e2d9;
  --gray-text: #6b6b6b;
  --dark: #111111;
  --shadow: 0 4px 24px rgba(232,119,34,0.12);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--dark); background: var(--white); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--blue-dark); line-height: 1.2; }
.section-title span { color: var(--red); }
.section-sub { color: var(--gray-text); font-size: 1.05rem; margin-top: 8px; }
.section-header { text-align: center; margin-bottom: 48px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: 50px; font-weight: 700; font-size: 0.97rem; cursor: pointer; border: none; transition: var(--transition); letter-spacing: 0.5px; }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 4px 16px rgba(232,119,34,0.35); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,119,34,0.45); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-blue { background: var(--dark); color: var(--white); }
.btn-blue:hover { background: #333333; transform: translateY(-2px); }

/* ---- TOP BAR ---- */
.topbar { background: var(--blue-dark); color: #cccccc; font-size: 0.85rem; padding: 7px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar a { color: #cccccc; transition: color 0.2s; }
.topbar a:hover { color: var(--white); }
.topbar i { margin-right: 5px; color: var(--red-light); }

/* ---- HEADER ---- */
header { background: var(--white); box-shadow: 0 2px 20px rgba(232,119,34,0.12); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo { display: flex; align-items: center; gap: 13px; }
.logo-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--red) 60%, var(--blue-dark) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.6rem; font-family: 'Rajdhani', sans-serif; font-weight: 900; letter-spacing: -1px; }
.logo-text h1 { font-family: 'Rajdhani', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--blue-dark); line-height: 1; }
.logo-text span { font-size: 0.78rem; color: var(--red); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 4px; }
nav a { padding: 8px 14px; border-radius: 8px; color: var(--dark); font-weight: 600; font-size: 0.92rem; transition: var(--transition); position: relative; }
nav a:hover, nav a.active { color: var(--red); background: #fef3e8; }
nav a.active::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 20px; height: 2px; background: var(--red); border-radius: 2px; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { display: flex; align-items: center; gap: 8px; background: var(--gray-light); border-radius: 50px; padding: 8px 18px; }
.header-phone i { color: var(--red); font-size: 1.1rem; }
.header-phone span { font-weight: 700; color: var(--blue-dark); font-size: 0.95rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--blue-dark); border-radius: 2px; transition: var(--transition); }

/* ---- HERO SLIDER ---- */
.hero { position: relative; height: 92vh; min-height: 600px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(26,26,26,0.85) 40%, rgba(232,119,34,0.22) 100%); }
.slide-1 { background: linear-gradient(110deg, #1a1a1a 40%, #2d2d2d 100%); }
.slide-2 { background: linear-gradient(110deg, #2d2d2d 40%, #1a1a1a 100%); }
.slide-3 { background: linear-gradient(110deg, #1a1a1a 30%, #3a3a3a 100%); }

/* Animated cars for slides */
.slide-car { position: absolute; bottom: 0; right: 0; width: 60%; height: 100%; overflow: hidden; opacity: 0.18; }
.slide-car::before { content: '🚖'; font-size: 18rem; position: absolute; bottom: 10%; right: 5%; animation: carFloat 4s ease-in-out infinite; }
@keyframes carFloat { 0%,100%{transform:translateY(0) rotate(-3deg);} 50%{transform:translateY(-20px) rotate(3deg);} }

.hero-content { position: relative; z-index: 10; height: 100%; display: flex; align-items: center; }
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 40px; 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); border-radius: 50px; padding: 6px 18px; font-size: 0.82rem; font-weight: 700; color: #e0c8a0; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.hero-badge i { color: var(--red-light); }
.hero-title { font-family: 'Rajdhani', sans-serif; font-size: 3.4rem; font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.hero-title span { color: var(--red-light); }
.hero-desc { font-size: 1.08rem; color: #d4c4a8; line-height: 1.7; margin-bottom: 28px; max-width: 500px; }
.hero-stats { display: flex; gap: 30px; margin-bottom: 32px; }
.stat { text-align: left; }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.78rem; color: #b8a888; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- BOOKING FORM CARD ---- */
.booking-card { background: var(--white); border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); overflow: hidden; }
.booking-card-header { background: var(--blue-dark); padding: 20px 24px; }
.booking-card-header h3 { font-family: 'Rajdhani', sans-serif; color: var(--white); font-size: 1.4rem; font-weight: 700; }
.booking-card-header p { color: #aaaaaa; font-size: 0.85rem; margin-top: 4px; }
.booking-tabs { display: flex; background: rgba(255,255,255,0.08); border-radius: 8px; padding: 4px; margin-top: 14px; gap: 4px; }
.tab-btn { flex: 1; padding: 8px 6px; border: none; background: transparent; color: #aaaaaa; font-size: 0.78rem; font-weight: 700; border-radius: 6px; cursor: pointer; transition: var(--transition); text-align: center; letter-spacing: 0.3px; }
.tab-btn.active { background: var(--red); color: var(--white); }
.booking-form-area { padding: 20px 24px; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--blue-dark); display: block; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select { width: 100%; padding: 10px 14px; border: 1.5px solid var(--gray); border-radius: 8px; font-size: 0.9rem; color: var(--dark); background: var(--gray-light); transition: var(--transition); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px rgba(232,119,34,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.booking-form-area .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ---- SLIDER DOTS ---- */
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 20; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--red); width: 28px; border-radius: 5px; }

/* ---- FEATURES ---- */
.features { padding: 70px 0; background: var(--gray-light); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border-bottom: 3px solid transparent; }
.feature-card:hover { transform: translateY(-6px); border-bottom-color: var(--red); box-shadow: 0 12px 36px rgba(232,119,34,0.15); }
.feature-icon { width: 64px; height: 64px; background: linear-gradient(135deg, #fef3e8, #fddbb8); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.8rem; }
.feature-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.feature-card p { color: var(--gray-text); font-size: 0.88rem; line-height: 1.6; }

/* ---- SERVICES ---- */
.services { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--white); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(232,119,34,0.18); }
.service-img { height: 200px; background: linear-gradient(135deg, var(--dark) 0%, #333333 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; overflow: hidden; }
.service-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,0.88), rgba(50,50,50,0.7)); }
.service-img-icon { position: relative; z-index: 1; }
.service-img.red-bg { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%); }
.service-img.red-bg::before { background: linear-gradient(135deg, rgba(196,94,10,0.88), rgba(232,119,34,0.7)); }
.service-body { padding: 24px; }
.service-body h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.service-body p { color: var(--gray-text); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.service-tag { display: inline-flex; align-items: center; gap: 5px; background: #fef3e8; color: var(--red); font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }

/* ---- FLEET ---- */
.fleet { padding: 80px 0; background: var(--gray-light); }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fleet-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.fleet-card:hover { transform: translateY(-6px); }
.fleet-img { height: 180px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; }
.fleet-badge { position: absolute; top: 10px; right: 10px; background: var(--red); color: white; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.fleet-body { padding: 18px 16px; }
.fleet-body h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--blue-dark); }
.fleet-specs { display: flex; gap: 10px; margin: 10px 0; flex-wrap: wrap; }
.spec { font-size: 0.75rem; color: var(--gray-text); display: flex; align-items: center; gap: 4px; }
.spec i { color: var(--red); }
.fleet-price { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--red); margin-top: 8px; }

/* ---- WHY CHOOSE US ---- */
.why-us { padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-img-side { position: relative; }
.why-big-box { background: linear-gradient(135deg, var(--blue-dark), #3a3a3a); border-radius: 20px; height: 420px; display: flex; align-items: center; justify-content: center; font-size: 10rem; position: relative; overflow: hidden; }
.why-big-box::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(232,119,34,0.12), transparent); }
.why-stat-box { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: white; border-radius: 16px; padding: 20px 24px; text-align: center; box-shadow: 0 8px 30px rgba(232,119,34,0.45); }
.why-stat-box .num { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; font-weight: 900; line-height: 1; }
.why-stat-box .lbl { font-size: 0.8rem; opacity: 0.9; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #fef3e8, #fddbb8); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; }
.why-point h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.why-point p { font-size: 0.87rem; color: var(--gray-text); line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 80px 0; background: linear-gradient(135deg, var(--blue-dark) 0%, #2d2d2d 100%); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: #aaaaaa; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; padding: 28px; transition: var(--transition); }
.testi-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.testi-stars { color: #ffd600; font-size: 0.9rem; margin-bottom: 14px; }
.testi-text { color: #cccccc; font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-light)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1.1rem; }
.testi-author h4 { font-weight: 700; color: var(--white); font-size: 0.92rem; }
.testi-author span { color: #aaaaaa; font-size: 0.78rem; }

/* ---- CTA BAND ---- */
.cta-band { padding: 60px 0; background: var(--red); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-text h2 { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-top: 6px; }
.cta-band .btn-outline { border-color: white; }
.cta-band .btn-outline:hover { background: white; color: var(--red); }

/* ---- FOOTER ---- */
footer { background: var(--blue-dark); color: #cccccc; }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--red), #C45E0A); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-family: 'Rajdhani', sans-serif; font-weight: 900; font-size: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: #aaaaaa; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #cccccc; transition: var(--transition); font-size: 0.95rem; }
.social-links a:hover { background: var(--red); color: white; }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaaaaa; font-size: 0.88rem; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 1.1rem; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--red); font-size: 1rem; margin-top: 2px; }
.footer-contact-item span { font-size: 0.87rem; color: #aaaaaa; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.83rem; color: #777777; }
.footer-bottom a { color: var(--red-light); }

/* ---- INNER PAGE HERO ---- */
.page-hero { background: linear-gradient(110deg, var(--blue-dark) 60%, #333333 100%); padding: 60px 0; color: white; text-align: center; }
.page-hero h1 { font-family: 'Rajdhani', sans-serif; font-size: 2.6rem; font-weight: 800; }
.page-hero p { color: #aaaaaa; margin-top: 10px; font-size: 1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 14px; font-size: 0.85rem; color: #aaaaaa; }
.breadcrumb a { color: #cccccc; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: var(--red-light); }

/* ---- ABOUT PAGE ---- */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-box { background: linear-gradient(135deg, var(--blue-dark), #3a3a3a); border-radius: 20px; height: 450px; display: flex; align-items: center; justify-content: center; font-size: 12rem; position: relative; }
.mission-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.mission-card { background: var(--gray-light); border-radius: 12px; padding: 20px; border-left: 4px solid var(--red); }
.mission-card.red { border-left-color: var(--red-dark); }
.mission-card h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.mission-card p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.6; }

/* ---- TEAM ---- */
.team { padding: 60px 0; background: var(--gray-light); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); }
.team-photo { height: 160px; background: linear-gradient(135deg, var(--red), var(--red-dark)); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.team-info { padding: 16px; }
.team-info h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--blue-dark); }
.team-info span { font-size: 0.82rem; color: var(--red); font-weight: 600; }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; }
.contact-form-box { background: white; border-radius: 20px; box-shadow: var(--shadow); padding: 36px; }
.contact-form-box h2 { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 8px; }
.contact-form-box .form-group { margin-bottom: 18px; }
.contact-form-box input, .contact-form-box select, .contact-form-box textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray); border-radius: 8px; font-size: 0.92rem; background: var(--gray-light); transition: var(--transition); }
.contact-form-box textarea { height: 110px; resize: vertical; }
.contact-form-box input:focus, .contact-form-box select:focus, .contact-form-box textarea:focus { outline: none; border-color: var(--red); background: white; }
.contact-info-box { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start; border-left: 4px solid var(--red); }
.contact-info-card.red { border-left-color: var(--red-dark); }
.c-icon { width: 46px; height: 46px; background: linear-gradient(135deg, #fef3e8, #fddbb8); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.2rem; flex-shrink: 0; }
.c-icon.red { background: linear-gradient(135deg, #fef3e8, #fddbb8); color: var(--red-dark); }
.c-info h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.c-info p { font-size: 0.87rem; color: var(--gray-text); }
.map-box { margin-top: 30px; border-radius: 16px; overflow: hidden; height: 280px; background: linear-gradient(135deg, var(--gray-light), var(--gray)); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--gray-text); }

/* ---- SERVICES PAGE ---- */
.services-detail { padding: 80px 0; }
.service-detail-card { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--gray); }
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-img { border-radius: 16px; height: 300px; display: flex; align-items: center; justify-content: center; font-size: 9rem; background: linear-gradient(135deg, var(--blue-dark), #3a3a3a); }
.service-detail-img.alt { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.service-detail-text h2 { font-family: 'Rajdhani', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 12px; }
.service-detail-text p { color: var(--gray-text); line-height: 1.7; margin-bottom: 18px; }
.service-features-list { display: flex; flex-direction: column; gap: 10px; }
.sf-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--dark); }
.sf-item i { color: var(--red); }

/* ---- BOOKING PAGE ---- */
.booking-section { padding: 80px 0; background: var(--gray-light); }
.booking-full-card { background: white; border-radius: 20px; box-shadow: var(--shadow); padding: 40px; max-width: 800px; margin: 0 auto; }
.booking-full-card h2 { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 24px; }
.booking-full-tabs { display: flex; background: var(--gray-light); border-radius: 10px; padding: 5px; gap: 5px; margin-bottom: 28px; }
.booking-full-tabs .tab-btn { flex: 1; padding: 12px; border-radius: 8px; font-size: 0.88rem; }

/* ---- GALLERY PAGE ---- */
.gallery-section { padding: 80px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--dark), #3a3a3a); display: flex; align-items: center; justify-content: center; font-size: 5rem; transition: var(--transition); cursor: pointer; position: relative; }
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 10px 30px rgba(232,119,34,0.25); }
.gallery-item:nth-child(even) { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,26,26,0.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: white; font-size: 2rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- FLEET IMG WITH REAL IMAGES ---- */
.fleet-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-box img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .booking-card { max-width: 520px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 20px; flex-direction: column; }
  nav.open { display: flex; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .hero { height: auto; min-height: 100vh; }
  .hero-title { font-size: 2.2rem; }
  .hero-content { padding: 100px 0 50px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .section-title { font-size: 1.7rem; }
}
@media (max-width: 768px) {
  .site-logo {
    height: 80px !important;
  }
}
