/* ================================================
   SANJANA CAB & TAXI SERVICE - MAIN STYLESHEET
   Colors: White | Dark Green (#0d4a2e) | Blue (#1a4fa0)
   ================================================ */

:root {
    --green: #0d4a2e;
    --green-light: #1a6b42;
    --green-dark: #082b1a;
    --blue: #1a4fa0;
    --blue-light: #2563c5;
    --blue-dark: #0f3070;
    --white: #ffffff;
    --off-white: #f7f9fc;
    --gray-light: #eef1f5;
    --gray: #8a9ab5;
    --text: #1a2332;
    --text-muted: #5a6b80;
    --gold: #c9a84c;
    --shadow: 0 8px 40px rgba(13,74,46,0.12);
    --shadow-blue: 0 8px 40px rgba(26,79,160,0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.25; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

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

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

/* ===== PRELOADER ===== */
#preloader {
    position: fixed; inset: 0;
    background: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner {
    text-align: center; color: white;
}
.preloader-inner i { font-size: 3rem; color: var(--gold); animation: pulse 1s infinite; }
.preloader-inner span { display: block; margin-top: 12px; font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--green-dark);
    color: white;
    font-size: 0.82rem;
    padding: 8px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-info a, .top-info span { color: rgba(255,255,255,0.85); }
.top-info a:hover { color: var(--gold); }
.top-info i { color: var(--gold); margin-right: 5px; }
.top-social { display: flex; gap: 12px; }
.top-social a {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.75rem;
}
.top-social a:hover { background: var(--gold); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    padding: 14px 0;
    position: sticky; top: 0; z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(13,74,46,0.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo a { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.4rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--green); line-height: 1.1; }
.logo-sub { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links li a {
    padding: 8px 16px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--text); border-radius: var(--radius-sm);
}
.nav-links li a:hover, .nav-links li a.active { color: var(--green); background: rgba(13,74,46,0.06); }
.btn-call {
    background: linear-gradient(135deg, var(--green), var(--blue)) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 18px rgba(13,74,46,0.3);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(13,74,46,0.4) !important; background: white !important; color: var(--green) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 2px; background: var(--green); border-radius: 2px; transition: var(--transition); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px;
    font-size: 0.95rem; font-weight: 600;
    cursor: pointer; border: none; outline: none;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    box-shadow: 0 6px 25px rgba(13,74,46,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(13,74,46,0.45); }
.btn-outline {
    background: transparent;
    color: white; border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: white; color: var(--green); border-color: white; transform: translateY(-3px); }
.btn-blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    box-shadow: 0 6px 25px rgba(26,79,160,0.35);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(26,79,160,0.5); }
.btn-green-outline {
    background: transparent;
    color: var(--green); border: 2px solid var(--green);
}
.btn-green-outline:hover { background: var(--green); color: white; transform: translateY(-3px); }

/* ===== SECTION STYLES ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(13,74,46,0.1), rgba(26,79,160,0.1));
    color: var(--green);
    padding: 6px 18px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 14px;
    border: 1px solid rgba(13,74,46,0.15);
}
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--text); margin-bottom: 16px; }
.section-title span { color: var(--green); }
.section-desc { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===== HERO SECTION ===== */
.hero {
    position: relative; overflow: hidden;
    background: var(--green-dark);
    min-height: 92vh;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://preview.moxcreative.com/mangata/wp-content/uploads/sites/9/2022/02/a-senior-hispanic-man-at-the-wheel-of-his-convertible-sports-car-at-sunset.jpg');
    background-size: cover; background-position: center;
    opacity: 0.25;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,43,26,0.92) 0%, rgba(15,48,112,0.8) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    padding: 80px 0 60px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.2); color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 20px;
    animation: slideDown 0.6s ease both;
}
.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    color: white; text-align: center;
    max-width: 750px;
    line-height: 1.15; margin-bottom: 18px;
    animation: slideDown 0.8s ease both;
}
.hero-title .highlight { color: var(--gold); }
.hero-subtitle {
    color: rgba(255,255,255,0.78);
    text-align: center; max-width: 540px;
    font-size: 1.1rem; margin-bottom: 28px;
    animation: slideDown 0.9s ease both;
}
.hero-stats {
    display: flex; gap: 40px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 50px;
    animation: slideUp 1s ease both;
}
.stat-item { text-align: center; color: white; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }

/* ===== BOOKING TABS ===== */
.booking-section {
    position: relative; z-index: 10;
    margin-top: 10px;
    width: 100%; max-width: 860px;
    animation: slideUp 1.1s ease both;
}
.booking-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.tab-header {
    display: flex;
    background: var(--green-dark);
}
.tab-btn {
    flex: 1; padding: 16px 10px;
    background: transparent; border: none;
    color: rgba(255,255,255,0.6);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    border-bottom: 3px solid transparent;
}
.tab-btn.active {
    color: white;
    border-bottom-color: var(--gold);
    background: rgba(255,255,255,0.06);
}
.tab-btn:hover { color: white; background: rgba(255,255,255,0.05); }

.tab-panels { padding: 28px 30px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.tab-panel h3 i { color: var(--green); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    color: var(--text); background: var(--off-white);
    outline: none; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green); background: white;
    box-shadow: 0 0 0 3px rgba(13,74,46,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group.full-width { grid-column: 1 / -1; }
.honeypot { display: none !important; }

.form-submit-row { margin-top: 18px; display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.security-note { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.security-note i { color: var(--green); }
.form-message { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.88rem; margin-top: 12px; display: none; }
.form-message.success { background: rgba(13,74,46,0.1); color: var(--green); border: 1px solid rgba(13,74,46,0.2); }
.form-message.error { background: rgba(220,38,38,0.08); color: #dc2626; border: 1px solid rgba(220,38,38,0.2); }

/* ===== SERVICES SECTION ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: white; border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-img { position: relative; overflow: hidden; height: 200px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-badge {
    position: absolute; top: 14px; left: 14px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white; padding: 5px 12px;
    border-radius: 50px; font-size: 0.72rem; font-weight: 600;
}
.service-body { padding: 22px; }
.service-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(13,74,46,0.1), rgba(26,79,160,0.1));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--green); margin-bottom: 12px;
}
.service-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.service-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.service-tag { font-size: 0.72rem; background: var(--gray-light); color: var(--text-muted); padding: 4px 10px; border-radius: 50px; font-weight: 500; }
.service-footer { display: flex; align-items: center; justify-content: space-between; }
.service-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--green); }
.service-price span { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: var(--text-muted); }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { position: relative; }
.why-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); }
.why-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white; padding: 20px 26px;
    border-radius: 16px; text-align: center;
    box-shadow: var(--shadow-blue);
}
.why-badge-float .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; display: block; }
.why-badge-float .label { font-size: 0.75rem; opacity: 0.85; }

.why-content { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(13,74,46,0.1), rgba(26,79,160,0.1));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--green);
}
.why-text h4 { font-size: 1rem; margin-bottom: 4px; }
.why-text p { font-size: 0.87rem; color: var(--text-muted); }

/* ===== FLEET ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fleet-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--gray-light);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fleet-card img { width: 100%; height: 150px; object-fit: cover; }
.fleet-info { padding: 18px 14px; }
.fleet-info h4 { font-size: 1rem; margin-bottom: 6px; }
.fleet-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; }
.fleet-specs { display: flex; justify-content: center; gap: 14px; font-size: 0.78rem; color: var(--text-muted); }
.fleet-specs span { display: flex; align-items: center; gap: 4px; }
.fleet-specs i { color: var(--green); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-dark) 100%); }
.testimonials-section .section-tag { background: rgba(255,255,255,0.1); color: var(--gold); border-color: rgba(255,255,255,0.2); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-desc { color: rgba(255,255,255,0.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius); padding: 28px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-card p { color: rgba(255,255,255,0.85); font-size: 0.92rem; font-style: italic; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: white; font-size: 1rem;
}
.reviewer-info h5 { color: white; font-size: 0.9rem; margin-bottom: 2px; }
.reviewer-info span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--green), var(--blue));
    padding: 70px 0; text-align: center;
}
.cta-section h2 { color: white; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--green-dark); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo i { font-size: 2rem; color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8); font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-3px); }
.footer-col h4 { color: white; font-size: 1rem; margin-bottom: 18px; 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 { color: rgba(255,255,255,0.65); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a i { font-size: 0.7rem; color: var(--green-light); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-item i { color: var(--gold); margin-top: 3px; width: 16px; flex-shrink: 0; }
.contact-item span { color: rgba(255,255,255,0.5); font-size: 0.75rem; display: block; }
.contact-item a, .contact-item p { color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.contact-item a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex; /* Actually this is nested */
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom i { color: #e53e3e; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed; bottom: 28px; left: 28px; z-index: 999;
    display: flex; align-items: center; gap: 10px;
    background: #25d366; color: white;
    padding: 12px 20px; border-radius: 50px;
    font-weight: 600; font-size: 0.88rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.45);
    animation: float 3s ease-in-out infinite;
}
.whatsapp-float i { font-size: 1.3rem; }
.whatsapp-float:hover { transform: scale(1.05); background: #1ea950; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white; border: none; cursor: pointer;
    box-shadow: var(--shadow); font-size: 0.9rem;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--blue-dark));
    padding: 80px 0;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('https://preview.moxcreative.com/mangata/wp-content/uploads/sites/9/2022/02/car-dealer-introducing-with-sale-procedures.jpg');
    background-size: cover; background-position: center;
    opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { color: white; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 14px; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: 20px; }
.about-img-badge {
    position: absolute; bottom: 24px; left: -20px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white; padding: 16px 22px;
    border-radius: 14px; text-align: center;
    box-shadow: 0 10px 35px rgba(13,74,46,0.35);
}
.about-img-badge .big { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; display: block; }
.about-img-badge small { font-size: 0.75rem; opacity: 0.85; }

.about-text .section-tag { display: inline-block; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-list { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 0.92rem; }
.about-list li i { color: var(--green); font-size: 0.85rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
    background: white; border-radius: var(--radius);
    overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card-body span { font-size: 0.82rem; color: var(--green); font-weight: 500; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
.contact-info-card {
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 20px; padding: 40px;
    color: white;
}
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-info-card > p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 30px; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(255,255,255,0.15); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.ci-text label { font-size: 0.75rem; opacity: 0.65; display: block; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.ci-text a, .ci-text p { font-size: 0.95rem; font-weight: 500; color: white; }
.contact-form-card {
    background: white; border-radius: 20px; padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 400px; border: none; }

/* ===== SERVICES PAGE ===== */
.services-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-full-card {
    background: white; border-radius: var(--radius);
    overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    display: flex; transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.service-full-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-full-card img { width: 160px; height: 160px; object-fit: cover; flex-shrink: 0; }
.service-full-body { padding: 22px; }
.service-full-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.service-full-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.service-full-body .service-features { margin-bottom: 14px; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
    background: white; border-radius: var(--radius); padding: 36px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: center; border: 2px solid var(--gray-light);
    transition: var(--transition); position: relative;
}
.pricing-card:hover, .pricing-card.featured {
    border-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}
.pricing-card.featured .pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white; padding: 5px 20px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600; white-space: nowrap;
}
.pricing-icon { font-size: 2.2rem; margin-bottom: 14px; }
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.pricing-card .price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--green); margin: 10px 0; }
.pricing-card .price span { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--text-muted); }
.pricing-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; }
.pricing-features li i { color: var(--green); font-size: 0.75rem; }

/* ===== ANIMATIONS ===== */
@keyframes slideDown { from { opacity:0; transform:translateY(-30px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-up { opacity:0; transform:translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-grid.cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links {
        display: none; position: fixed;
        top: 0; right: 0; bottom: 0; width: 280px;
        background: white; flex-direction: column;
        padding: 80px 24px 40px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        gap: 4px; z-index: 9999;
        transform: translateX(100%); transition: transform 0.35s ease;
    }
    .nav-links.open { display: flex; transform: translateX(0); }
    .nav-links li a { padding: 12px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
    .hamburger { display: flex; z-index: 10000; }
    .section { padding: 60px 0; }
    .hero { min-height: auto; }
    .hero-content { padding: 60px 0 40px; }
    .hero-stats { gap: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .why-image, .about-img-wrap { margin-bottom: 20px; }
    .why-badge-float, .about-img-badge { position: relative; bottom: auto; right: auto; left: auto; margin-top: 16px; display: inline-block; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .tab-panels { padding: 20px 16px; }
    .services-page-grid, .pricing-grid { grid-template-columns: 1fr; }
    .service-full-card { flex-direction: column; }
    .service-full-card img { width: 100%; height: 180px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; width: 54px; height: 54px; justify-content: center; }
    .booking-section { max-width: 100%; }
}
