/* ==================== Google Fonts ==================== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==================== CSS Variables — NEW VRD Palette ==================== */
:root {
    --brand-blue: #2972b6;
    --brand-blue-dark: #1a5a96;
    --brand-blue-deep: #0d3d70;
    --brand-teal: #1a9bd8;
    --brand-green: #5eb64b;
    --brand-green-dark: #45922e;
    --brand-red: #dc2c26;
    --brand-red-dark: #b51f1a;
    --text-color: #1a1a2e;
    --text-light: #64748b;
    --bg-light: #f0f7ff;
    --bg-section: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(41,114,182,0.12);
    --shadow-md: 0 6px 20px rgba(41,114,182,0.18);
    --shadow-lg: 0 15px 40px rgba(41,114,182,0.25);
    --border-radius: 10px;
    --border-radius-lg: 16px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-blue: linear-gradient(135deg, #2972b6 0%, #1a9bd8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13,61,112,0.88) 0%, rgba(26,155,216,0.72) 100%);
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ==================== Utilities ==================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-primary { color: var(--brand-blue); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.w-100 { width: 100%; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.align-center { align-items: center; }
.section { padding: 5rem 0; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}
@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
    to { opacity: 1; transform: rotate(0deg) scale(1); }
}

.animate-fade-up { animation: fadeInUp 0.7s ease both; }
.animate-fade-left { animation: fadeInLeft 0.7s ease both; }
.animate-slide-right { animation: slideInRight 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}
.btn:hover::before { width: 300px; height: 300px; }

.btn-primary { background: var(--brand-green); color: var(--white); border-color: var(--brand-green); }
.btn-primary:hover { background: var(--brand-green-dark); border-color: var(--brand-green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(94,182,75,0.4); }

.btn-secondary { background: var(--brand-red); color: var(--white); border-color: var(--brand-red); }
.btn-secondary:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(220,44,38,0.4); }

.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--brand-blue); transform: translateY(-2px); }

.btn-outline-blue { background: transparent; border-color: var(--brand-blue); color: var(--brand-blue); }
.btn-outline-blue:hover { background: var(--brand-blue); color: var(--white); transform: translateY(-2px); }

.btn-wa { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.4); }

/* ==================== Top Bar ==================== */
.top-bar {
    background: var(--brand-blue-deep);
    color: var(--white);
    padding: 9px 0;
    font-size: 0.85rem;
}
.top-bar .contact-info { display: flex; gap: 20px; }
.top-bar .contact-info a { display: flex; align-items: center; gap: 6px; color: #cce4ff; transition: var(--transition); }
.top-bar .contact-info a:hover { color: var(--brand-green); }
.top-bar .social-links { display: flex; gap: 10px; }
.top-bar .social-links a {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 0.75rem;
}
.top-bar .social-links a:hover { background: var(--brand-green); transform: translateY(-2px); }

/* ==================== Header & Navbar ==================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 25px rgba(41,114,182,0.25); }

.navbar { padding: 12px 20px; }

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-circle {
    width: 100px;
    height: 100px;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition);
}
.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.logo-wrap:hover .logo-circle { transform: scale(1.05); box-shadow: 0 5px 18px rgba(41,114,182,0.45); }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 1px;
}
.logo-name span { color: var(--brand-red); }
.logo-sub {
    font-size: 0.65rem;
    color: var(--brand-green);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links { display: flex; gap: 5px; align-items: center; }
.nav-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: var(--text-color);
    padding: 8px 14px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 50%;
    width: 0; height: 2px;
    background: var(--brand-red);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }

.nav-book-btn {
    background: var(--brand-red);
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 50px !important;
}
.nav-book-btn::after { display: none !important; }
.nav-book-btn:hover { background: var(--brand-red-dark) !important; transform: translateY(-1px); box-shadow: 0 5px 15px rgba(220,44,38,0.4); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--brand-blue);
    padding: 5px;
}

/* ==================== Page Header ==================== */
.page-header {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-red), var(--brand-green));
}
.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.page-header p { font-size: 1.1rem; opacity: 0.85; }

/* ==================== Hero Slider ==================== */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease, transform 1.2s ease;
    transform: scale(1.04);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide.active { opacity: 1; transform: scale(1); z-index: 2; }
.slide.prev { opacity: 0; transform: scale(0.98); z-index: 1; }

.slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 800px;
}
.slide-tag {
    display: inline-block;
    background: var(--brand-green);
    color: white;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.6s ease both;
}
.slide-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    animation: fadeInUp 0.7s 0.1s ease both;
    text-shadow: 0 3px 12px rgba(0,0,0,0.3);
}
.slide-content p {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s 0.2s ease both;
}
.slide-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.7s 0.3s ease both;
}
.slide-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 7px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.25);
}
.slide-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 0.7s 0.4s ease both;
    flex-wrap: wrap;
}

.slide-1 { background: linear-gradient(135deg, #0d3d70 0%, #1a6da8 50%, #1a9bd8 100%); }
.slide-2 { background: linear-gradient(135deg, #1a4a0a 0%, #2d7a1a 50%, #45922e 100%); }
.slide-3 { background: linear-gradient(135deg, #5a0d6b 0%, #8a1a9b 50%, #b830d0 100%); }
.slide-4 { background: linear-gradient(135deg, #6b2a0d 0%, #c4520f 50%, #e87020 100%); }
.slide-5 { background: linear-gradient(135deg, #0d4a5a 0%, #0f7a8a 50%, #14a0b8 100%); }

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
                      pointer-events: none;
}

.slide-pattern {
    position: absolute;
    bottom: 0; left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

.slider-nav {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.slider-dot.active { background: var(--brand-green); width: 30px; border-radius: 5px; }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--brand-green); border-color: var(--brand-green); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 25px; }
.slider-next { right: 25px; }

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    right: 35px;
    color: rgba(255,255,255,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    animation: float 2s infinite;
    z-index: 10;
}
.scroll-indicator i { font-size: 1.2rem; }

/* ==================== Section Headings ==================== */
.section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-heading .tag {
    display: inline-block;
    background: rgba(94,182,75,0.12);
    color: var(--brand-green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(94,182,75,0.3);
    margin-bottom: 0.8rem;
}
.section-heading h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.7rem;
}
.section-heading h2 span { color: var(--brand-blue); }
.section-heading p { color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-heading .divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* ==================== Why Choose Section ==================== */
.features-bg { background: var(--bg-section); }

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(41,114,182,0.08);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon 
{
    width: 72px; height: 72px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--brand-blue);
    transition: var(--transition);
}
.feature-card:hover .feature-icon 
{ 
    background: var(--gradient-blue); 
    color: white; transform: rotateY(360deg); 
}
.feature-card h3 
{ 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 0.7rem; 
    color: var(--text-color); 
}
.feature-card p 
{ color: var(--text-light); 
  font-size: 0.92rem; 
  line-height: 1.7; 
}

/* ==================== Stats Banner ==================== */
.stats-banner 
{
    background: var(--gradient-blue);
    color: white;
    padding: 3.5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item { padding: 1rem; }
.stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #dc2c26;
    display: block;
    line-height: 1;
}
.stat-label { font-size: 0.9rem; opacity: 0.85; margin-top: 0.4rem; }

/* ==================== Trip / Service Cards ==================== */
.trip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
}

.trip-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(41,114,182,0.1);
    display: flex;
    flex-direction: column;
}
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.trip-card-thumb {
    height: 290px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* INDIVIDUAL TRIP CARD IMAGE BANNERS */
.trip-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the area without stretching */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: transform 0.6s ease;
}

/* Zoom effect on card hover */
.trip-card:hover .trip-banner-img {
    transform: scale(1.08);
}

.trip-card-thumb .trip-type-badge {
    position: absolute;
    bottom: 12px; left: 12px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 1; /* Keeps badge above the image */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5); /* Helps text pop over bright photos */
}

.trip-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.trip-route {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.6rem;
}
.trip-route h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-color); }
.route-arrow { color: var(--brand-blue); font-size: 0.85rem; }

.trip-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.trip-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 3px 10px;
    border-radius: 20px;
}
.trip-meta span i { color: var(--brand-blue); font-size: 0.75rem; }

.trip-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; flex: 1; margin-bottom: 1.2rem; }

.trip-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 1rem;
}
.trip-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-light); }

.trip-actions { display: flex; gap: 10px; }
.trip-actions .btn { flex: 1; justify-content: center; font-size: 0.82rem; padding: 9px 14px; }

/* ==================== Service Type Cards ==================== */
.service-type-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--brand-blue);
    transition: var(--transition);
}
.service-type-card:hover { transform: translateX(5px); box-shadow: var(--shadow-md); border-left-color: var(--brand-green); }
.service-type-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--brand-blue); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 10px; }
.service-type-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ==================== Car Cards ==================== */
.car-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(41,114,182,0.1);
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.car-thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.car-thumb i { font-size: 5rem; color: rgba(255,255,255,0.8); transition: var(--transition); }
.car-card:hover .car-thumb i { transform: scale(1.1) translateY(-5px); }
.car-thumb-1 { background: linear-gradient(135deg, #1a5a96, #2972b6); }
.car-thumb-2 { background: linear-gradient(135deg, #2d7a1a, #5eb64b); }
.car-thumb-3 { background: linear-gradient(135deg, #5a0d2a, #b01855); }
.car-thumb-4 { background: linear-gradient(135deg, #8a5a0d, #c88020); }
.car-thumb-5 { background: linear-gradient(135deg, #0d4a5a, #1a8aaa); }
.car-thumb-6 { background: linear-gradient(135deg, #4a0d8a, #7a30c0); }
.car-thumb-7 { background: linear-gradient(135deg, #1a3a6a, #0d3d70); }

.popular-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--brand-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.car-info { padding: 1.5rem; }
.car-info h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-color); margin-bottom: 0.6rem; }
.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}
.car-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 20px;
}
.car-spec i { color: var(--brand-blue); font-size: 0.72rem; }
.car-price { font-size: 1.3rem; font-weight: 700; color: var(--brand-red); margin-bottom: 1.2rem; }
.car-price small { font-size: 0.75rem; font-weight: 400; color: var(--text-light); }
.car-actions { display: flex; gap: 10px; }
.car-actions .btn { flex: 1; justify-content: center; font-size: 0.82rem; }

/* ==================== About Page ==================== */
.about-highlight {
    background: var(--bg-section);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.about-highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 100%;
    background: var(--gradient-blue);
}
.list-styled li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-color);
    border-bottom: 1px solid rgba(41,114,182,0.07);
}
.list-styled li i { color: var(--brand-green); font-size: 1rem; flex-shrink: 0; }

/* ==================== Contact Page ==================== */
.contact-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact-info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--bg-light);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--brand-blue);
    flex-shrink: 0;
    transition: var(--transition);
}
.contact-info-item:hover .contact-icon { background: var(--gradient-blue); color: white; }
.contact-info-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.97rem; color: var(--text-color); }
.contact-info-item a:hover { color: var(--brand-blue); }

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 380px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

.quick-contact-btns {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.quick-contact-btns .btn { flex: 1; justify-content: center; min-width: 150px; }

/* ==================== Popup / Modal ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 45, 0.65);
    backdrop-filter: blur(6px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 540px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
    position: relative;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

.modal-header {
    background: var(--gradient-blue);
    color: white;
    padding: 1.5rem 1.8rem;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    position: relative;
}
.modal-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.modal-header p { opacity: 0.85; font-size: 0.9rem; }
.modal-close {
    position: absolute;
    top: 14px; right: 16px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }

.modal-body { padding: 1.8rem; }

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 0.93rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--text-light); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.detail-label i { color: var(--brand-blue); width: 16px; }
.detail-value { font-weight: 600; color: var(--text-color); }

.car-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 1.2rem 0;
}
.car-option {
    border: 2px solid rgba(41,114,182,0.15);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.car-option:hover, .car-option.selected { border-color: var(--brand-blue); background: var(--bg-light); }
.car-option i { font-size: 1.5rem; color: var(--brand-blue); display: block; margin-bottom: 5px; }
.car-option .car-opt-name { font-size: 0.82rem; font-weight: 700; color: var(--text-color); }
.car-option .car-opt-price { font-size: 0.72rem; color: var(--brand-red); font-weight: 600; }

/* ==================== Footer ==================== */
.footer {
    background: var(--brand-blue-deep);
    color: var(--white);
    padding-top: 4rem;
    border-top: 5px solid var(--brand-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-wrap { margin-bottom: 1.2rem; }
.footer-brand .logo-circle { border-color: rgba(255,255,255,0.3); }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-sub { color: var(--brand-green); }
.footer-brand p { color: #a8c8e8; font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.2rem; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: #cce4ff;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--brand-green); border-color: var(--brand-green); transform: translateY(-3px); }

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: #a8c8e8;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--brand-green); font-size: 1rem; }
.footer-links a:hover { color: white; padding-left: 5px; }

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.footer-contact-item i { color: var(--brand-green); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item p, .footer-contact-item a {
    color: #a8c8e8;
    font-size: 0.88rem;
    line-height: 1.6;
    transition: var(--transition);
}
.footer-contact-item a:hover { color: white; }

.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 1.4rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { color: #7aa8cc; font-size: 0.85rem; }
.footer-bottom a { color: var(--brand-green); font-weight: 600; }
.footer-bottom a:hover { color: white; }

/* ==================== FABs ==================== */
.fab-group {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 900;
}

.fab-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
}
.fab-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.wa-fab { background: #25D366; }
.wa-fab:hover { background: #1da851; transform: scale(1.12); }
.call-fab { background: var(--brand-blue); }
.call-fab:hover { background: var(--brand-blue-dark); transform: scale(1.12); }
.scroll-top-fab {
    background: var(--brand-red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.scroll-top-fab.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-fab:hover { background: var(--brand-red-dark); transform: translateY(-3px) !important; }
.scroll-top-fab::before { display: none; }

.fab-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: rgba(10,20,45,0.85);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}
.fab-btn:hover .fab-tooltip { opacity: 1; }

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .nav-links {
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 10px 30px rgba(41,114,182,0.15);
        display: none;
        border-top: 3px solid var(--brand-blue);
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 14px 20px; border-radius: 0; border-bottom: 1px solid var(--bg-light); }
    .nav-links a.active::after, .nav-links a::after { display: none; }
    .nav-book-btn { margin: 10px 20px; border-radius: 50px !important; text-align: center; }
    .menu-toggle { display: block; }
    
    .logo-circle { width: 46px; height: 46px; }
    .logo-name { font-size: 1.3rem; }
    
    .slide-content h2 { font-size: 2.2rem; }
    .slide-meta { gap: 8px; }
    .slide-meta span { font-size: 0.8rem; padding: 5px 11px; }
    .slider-arrow { display: none; }
    
    .page-header h1 { font-size: 2rem; }
    .section-heading h2 { font-size: 2rem; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    
    .car-select-grid { grid-template-columns: 1fr 1fr; }
    .trip-actions { flex-direction: row; }
    
    .fab-group { bottom: 16px; right: 16px; }
    .fab-btn { width: 50px; height: 50px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .slide-content h2 { font-size: 1.7rem; }
    .slide-btns { gap: 10px; }
    .slide-btns .btn { padding: 10px 18px; font-size: 0.82rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .trip-actions .btn { font-size: 0.78rem; padding: 8px 10px; }
}