/* CSS Variables & Theme setup - Modern Trust Option */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-card: #F1F5F9;
    
    --text-primary: #0F2A44; /* Trust Blue */
    --text-secondary: #475569; /* Slate Gray */
    --text-light: #FFFFFF;
    
    --trust-blue: #0F2A44;
    --action-blue: #1D4ED8;
    --action-hover: #1E40AF;
    
    --gold-primary: #D4AF37;
    --gold-hover: #E4C56D;
    
    --accent-color: #25D366; /* WhatsApp Green */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section-padding {
    padding: 80px 0;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--trust-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.sub-heading {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.gold-text {
    color: var(--gold-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

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

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--action-blue);
    color: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(29, 78, 216, 0.2);
}

.btn-primary:hover {
    background-color: var(--action-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(29, 78, 216, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--trust-blue);
    color: var(--trust-blue);
    border-radius: 8px;
}

.btn-outline:hover {
    background-color: var(--trust-blue);
    color: var(--text-light);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #1EBE55;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 42, 68, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled .nav-container {
    padding: 10px 20px;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--trust-blue);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--action-blue);
    margin-left: 5px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    font-family: var(--font-heading);
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--action-blue);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--action-blue);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--trust-blue);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section & Swiper */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 0; /* Remove padding for true full height, header overlays */
}

.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 42, 68, 0.85) 0%, rgba(15, 42, 68, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding-top: 80px; /* Offset for header inside the slide content */
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 10px;
    height: 10px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gold-primary);
    width: 25px;
    border-radius: 5px;
}

/* New Hero Elements */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-light); /* Override for hero */
    font-weight: 800; /* Extra bold */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-trust-line {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 35px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust-line .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Active Slide Animations */
.swiper-slide-active .hero-badge { animation: fadeInUp 0.8s ease 0.1s both; }
.swiper-slide-active .hero-title { animation: fadeInUp 0.8s ease 0.2s both; }
.swiper-slide-active .hero-subtitle { animation: fadeInUp 0.8s ease 0.3s both; }
.swiper-slide-active .hero-trust-line { animation: fadeInUp 0.8s ease 0.4s both; }
.swiper-slide-active .hero-btns { animation: fadeInUp 0.8s ease 0.5s both; }

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

/* Services */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(15, 42, 68, 0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 78, 216, 0.3); /* Action Blue border on hover */
    box-shadow: 0 10px 30px rgba(15, 42, 68, 0.08);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--action-blue);
    margin-bottom: 20px;
}

/* USP Section */
.usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.usp-list {
    margin-top: 30px;
}

.usp-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--trust-blue);
}

.usp-list li i {
    color: var(--action-blue);
    font-size: 1.2rem;
    margin-top: 3px;
}

.usp-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(15, 42, 68, 0.15);
    border: 3px solid var(--bg-primary);
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fleet-card {
    background-color: var(--bg-primary); /* White for cards inside grey section */
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(15, 42, 68, 0.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 42, 68, 0.1);
    border-color: rgba(29, 78, 216, 0.3);
}

.fleet-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-card);
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.fleet-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--trust-blue);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.fleet-details {
    padding: 25px;
}

.fleet-details p {
    font-size: 0.9rem;
    min-height: 45px;
}

/* Corporate */
.corporate-banner {
    background-image: linear-gradient(rgba(15, 42, 68, 0.9), rgba(15, 42, 68, 0.9)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
    color: var(--text-light);
}

.corporate-banner h2 {
    color: var(--text-light);
}

.corporate-banner p {
    color: rgba(255, 255, 255, 0.8);
}

.corporate-content {
    max-width: 800px;
    margin: 0 auto;
}

.corporate-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.corporate-benefits li {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.corporate-benefits i {
    color: var(--gold-primary);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    border-top: 3px solid var(--action-blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.stars {
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    font-weight: 700;
    color: var(--trust-blue);
    font-family: var(--font-heading);
}

/* Quick Booking CTA Form */
.booking-cta {
    background-color: var(--trust-blue);
    color: var(--text-light);
    border-top: none;
}

.booking-text h2 {
    font-size: 3rem;
    color: var(--text-light);
}

.booking-text p {
    color: rgba(255, 255, 255, 0.8);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.booking-form-container {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(15, 42, 68, 0.1);
}

.quick-booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-booking-form h3 {
    color: var(--trust-blue);
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--trust-blue);
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background-color: var(--bg-card);
    border: 1px solid rgba(15, 42, 68, 0.2);
    border-radius: 4px;
    color: var(--trust-blue);
    font-family: var(--font-body);
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: var(--action-blue);
    background-color: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

/* Local SEO Block */
.local-seo {
    background-color: var(--bg-secondary);
}
.seo-text {
    color: var(--text-secondary) !important;
}

/* Footer */
.footer {
    background-color: #0A1929; /* Very Dark Blue */
    padding-top: 80px;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.brand-col h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
}

.brand-col span {
    color: var(--gold-primary);
}

.brand-col p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--action-blue);
    color: var(--text-light);
}

.footer h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer ul li a:hover {
    color: var(--gold-primary);
}

.contact-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-col i {
    color: var(--gold-primary);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .usp-grid, .booking-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
    .trust-divider { display: none; }
}

@media (max-width: 768px) {
    .nav-list, .nav-actions { display: none; }
    .mobile-toggle { display: block; }
    
    .nav-list.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 20px;
        border-bottom: 1px solid rgba(15, 42, 68, 0.1);
    }
    
    .nav-actions.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 20px 20px;
        background-color: rgba(255, 255, 255, 0.98);
        align-items: stretch;
    }
    
    .hero-title { font-size: 2.2rem; }
    
    /* Ensure buttons stack cleanly on mobile */
    .hero-btns { 
        flex-direction: column; 
        width: 100%;
    }
    .hero-btns .btn {
        width: 100%;
        padding: 16px; /* Ensuring minimum 44px touch target height */
    }
    
    .hero-trust-line { font-size: 0.9rem; flex-direction: column; align-items: flex-start; gap: 8px; }
    .hero-trust-line .divider { display: none; }

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

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: var(--action-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.floating-call:hover {
    background: var(--trust-blue);
    transform: translateY(-5px);
    color: white;
}
@media (max-width: 768px) {
    .floating-call {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}
