/* === 1. VARIABLES & RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Light Theme Colors - Enhanced Contrast & Readability */
    --primary: #2563eb;
    /* Professional blue */
    --primary-dark: #1d4ed8;
    /* Darker blue for hover states */
    --secondary: #f59e0b;
    /* Warm amber/orange */
    --accent: #f59e0b;
    /* Accent color (same as secondary) */
    --white: #ffffff;
    /* Pure white */
    --text: #1f2937;
    /* Dark gray text for better readability */
    --text-light: #6b7280;
    /* Medium gray for secondary text */
    --text-muted: #9ca3af;
    /* Light gray for muted text */
    --bg-light: #f8fafc;
    /* Very light blue-gray background */
    --bg-white: #ffffff;
    /* Pure white for cards */
    --bg-section: #f1f5f9;
    /* Light section backgrounds */
    --border: #e2e8f0;
    /* Light borders */
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* === DARK MODE THEME === */
/* Dark mode color scheme for better night-time viewing */
body.dark-mode {
    --primary: #60a5fa;
    /* Brighter blue for dark mode */
    --primary-dark: #3b82f6;
    /* Medium blue for hover states */
    --secondary: #fbbf24;
    /* Brighter amber for visibility */
    --accent: #fbbf24;
    /* Accent color (same as secondary) */
    --white: #0f172a;
    /* Very dark background instead of white */
    --text: #f8fafc;
    /* Very light text for maximum readability */
    --text-light: #e2e8f0;
    /* Light gray for secondary text */
    --text-muted: #94a3b8;
    /* Medium gray for muted text */
    --bg-light: #1e293b;
    /* Dark slate background */
    --bg-white: #0f172a;
    /* Very dark background for cards */
    --bg-section: #334155;
    /* Medium dark for sections */
    --border: #475569;
    /* Medium gray borders */
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.6), 0 4px 6px rgba(0, 0, 0, 0.4);
}

/* === DARK MODE ENHANCEMENTS === */
/* Additional dark mode overrides for better visibility */
body.dark-mode {
    /* Ensure body uses dark background */
    background: var(--bg-light);
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: none;
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--primary);
    font-size: 16px;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.dark-mode-toggle:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

body.dark-mode .dark-mode-toggle {
    border-color: var(--secondary);
    color: var(--secondary);
}

body.dark-mode .dark-mode-toggle:hover {
    background: var(--secondary);
    color: var(--bg-white);
}

/* Dark mode navigation improvements */
body.dark-mode .navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

/* Dark mode button improvements */
body.dark-mode .btn-white {
    background: var(--bg-section);
    color: var(--text);
    border-color: var(--border);
}

body.dark-mode .btn-white:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

/* Dark mode card and section improvements */
body.dark-mode .service-card,
body.dark-mode .fleet-card,
body.dark-mode .pricing-card,
body.dark-mode .testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
}

/* Dark mode form improvements */
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background: var(--bg-section);
    color: var(--text);
    border-color: var(--border);
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: var(--text-muted);
}

/* Dark mode footer improvements */
body.dark-mode .footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

/* Dark mode booking calculator */
body.dark-mode .booking-calculator {
    background: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

body.dark-mode .calculator-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text);
}

body.dark-mode .calculator-body {
    background: var(--bg-white);
}

body.dark-mode .calculator-body input {
    background: var(--bg-section);
    color: var(--text);
    border: 1px solid var(--border);
}

body.dark-mode .calculator-body input::placeholder {
    color: var(--text-muted);
}

body.dark-mode .fare-display {
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

body.dark-mode .fare-display strong {
    color: var(--secondary);
}

/* Enhanced dark mode buttons */
body.dark-mode .btn-primary {
    background: var(--primary);
    color: var(--bg-white);
    border: 1px solid var(--primary);
}

body.dark-mode .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

body.dark-mode .btn-dark {
    background: var(--bg-section);
    color: var(--text);
    border: 1px solid var(--border);
}

body.dark-mode .btn-dark:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

body.dark-mode .btn-outline-white {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

body.dark-mode .btn-outline-white:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

body.dark-mode .btn-book {
    background: var(--secondary);
    color: var(--bg-white) !important;
}

body.dark-mode .btn-book:hover {
    background: var(--accent);
}

/* === 2. BASE - MOBILE FIRST DESIGN === */
/* Base styles optimized for mobile devices first, then enhanced for larger screens */

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base for rem calculations */
}

/* MOBILE FIRST: Base styles for mobile devices (default) */
body {
    /* Modern font stack optimized for mobile readability */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Mobile-optimized typography */
    font-size: 15px;
    /* Slightly smaller for mobile screens */
    line-height: 1.6;
    /* Comfortable reading on small screens */

    /* Colors and rendering */
    color: var(--text);
    background: var(--bg-light);

    /* Performance optimizations */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

    /* Mobile-first text alignment */
    text-align: left;
    /* Left-aligned by default for better mobile readability */
}

/* TABLET: Enhanced typography for medium screens */
@media (min-width: 768px) {
    body {
        font-size: 16px;
        /* Standard size for tablets and desktops */
        line-height: 1.7;
        /* More spacious for larger screens */
    }
}

/* === TYPOGRAPHY - MOBILE FIRST === */
/* Headings optimized for mobile screens first */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    /* Tight line height for headings */
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    /* Slight negative tracking for better appearance */
    text-align: left;
    /* Left-aligned by default on mobile */
    color: var(--primary);
}

/* Mobile heading sizes (optimized for small screens) */
h1 {
    font-size: 1.75rem;
}

/* 28px - Large but not overwhelming on mobile */
h2 {
    font-size: 1.5rem;
}

/* 24px - Clear hierarchy */
h3 {
    font-size: 1.25rem;
}

/* 20px - Subheadings */
h4 {
    font-size: 1.125rem;
}

/* 18px - Minor headings */
h5 {
    font-size: 1rem;
}

/* 16px - Small headings */
h6 {
    font-size: 0.875rem;
}

/* 14px - Tiny headings */

/* TABLET: Larger heading sizes for medium screens */
@media (min-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    /* 36px */
    h2 {
        font-size: 1.875rem;
    }

    /* 30px */
    h3 {
        font-size: 1.5rem;
    }

    /* 24px */
    h4 {
        font-size: 1.25rem;
    }

    /* 20px */
}

/* DESKTOP: Maximum heading sizes for large screens */
@media (min-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    /* 40px - Full size for desktop */
    h2 {
        font-size: 2rem;
    }

    /* 32px */
    h3 {
        font-size: 1.75rem;
    }

    /* 28px */
}

/* Paragraphs - Mobile first */
p {
    margin-bottom: 1rem;
    text-align: left;
    /* Always left-aligned for readability */
    line-height: 1.65;
    /* Comfortable reading on mobile */
    word-wrap: break-word;
    /* Prevent text overflow */
    hyphens: auto;
    /* Auto-hyphenation for better text flow */
}

/* TABLET: Enhanced paragraph spacing */
@media (min-width: 768px) {
    p {
        line-height: 1.7;
        /* More spacious on larger screens */
        margin-bottom: 1.25rem;
    }
}

/* === CONTAINER - MOBILE FIRST === */
/* Responsive container with progressive padding enhancement */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    /* Mobile: Compact padding for small screens */
}

/* TABLET: More breathing room */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
        /* Tablet: Medium padding */
    }
}

/* DESKTOP: Maximum spacing */
@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
        /* Desktop: Generous padding */
    }
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === 3. NAVIGATION === */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--primary-dark);
}

.logo i {
    font-size: 1.8rem;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.logo:hover i {
    transform: rotate(15deg);
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu>li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: all .3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary);
    padding-left: 1.5rem;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.btn-book {
    background: var(--secondary);
    color: var(--white) !important;
    padding: .5rem 1.5rem;
    border-radius: 50px;
    transition: all .3s;
}

.btn-book:hover {
    background: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* === 4. HERO === */
.hero,
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #f59e0b 100%);
    color: var(--white);
    padding: 250px 0 100px;
    margin-left: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(251,191,36,0.15)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Blog Meta in Hero */
.hero-content .back-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.hero-content .back-link:hover {
    color: var(--accent);
}

.hero-content .blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content .blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* === 5. BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-dark {
    background: var(--primary);
    color: var(--bg-white);
}

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

.btn-white:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

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

.btn-outline-white:hover {
    background: var(--bg-white);
    color: var(--secondary);
}

.btn-full {
    width: 100%;
}

/* === 6. SECTIONS === */
.services-overview,
.main-services,
.fleet-section,
.service-areas,
.blog-section,
.why-choose,
.contact-form-section,
.blog-post {
    padding: 80px 0;
    background: var(--white);
}

.about-section,
.pricing-section,
.contact-section,
.company-info,
.categories-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title,
.section-header h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.section-title::after,
.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 1rem auto 0;
    border-radius: 2px;
    animation: shimmer 2s infinite;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: -1.5rem auto 3rem;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* === 7. GRIDS === */
.services-grid,
.services-grid-2,
.pricing-grid,
.fleet-grid,
.blog-grid,
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #fbbf24;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.feature-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-item:hover .feature-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-icon-circle i {
    font-size: 3.5rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-amber {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.feature-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

/* Enhanced Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(99,102,241,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.feature-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-bg-icon {
    transform: translate(-50%, -50%) scale(1.1);
    color: rgba(255, 255, 255, 0.15);
}

.feature-icon-circle {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.feature-item:hover .feature-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-circle i {
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-circle i {
    transform: scale(1.1);
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.feature-item:nth-child(1) {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-item:nth-child(2) {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.feature-item:nth-child(3) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-item:nth-child(4) {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.feature-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-features span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-features span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-features i {
    margin-right: 0.4rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.feature-features span:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Icon-specific color enhancements */
.feature-features .fa-spray-can {
    color: #fbbf24;
}

.feature-features .fa-snowflake {
    color: #60a5fa;
}

.feature-features .fa-satellite-dish {
    color: #34d399;
}

.feature-features .fa-id-card {
    color: #f87171;
}

.feature-features .fa-graduation-cap {
    color: #a78bfa;
}

.feature-features .fa-language {
    color: #fbbf24;
}

.feature-features .fa-gem {
    color: #60a5fa;
}

.feature-features .fa-concierge-bell {
    color: #fbbf24;
}

.feature-features .fa-bolt {
    color: #fbbf24;
}

.feature-features .fa-car-side {
    color: #34d399;
}

.feature-features .fa-truck-monster {
    color: #f87171;
}

.feature-features .fa-car-alt {
    color: #a78bfa;
}

/* Enhanced animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-icon-circle {
    animation: float 3s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon-circle {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) .feature-icon-circle {
    animation-delay: 1s;
}

.feature-item:nth-child(4) .feature-icon-circle {
    animation-delay: 1.5s;
}

.about-grid,
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.about-content {
    animation: slideInLeft 0.8s ease-out;
}

.features-grid {
    animation: slideInRight 0.8s ease-out;
}

.destinations-grid,
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* === 8. CARDS === */
.service-card,
.service-card-large {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    transition: all .3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.service-card:hover,
.service-card-large:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px) scale(1.02);
    animation: pulse 0.6s ease;
}

.service-icon,
.service-icon-large {
    background: var(--secondary);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon,
.service-card-large:hover .service-icon-large {
    transform: rotate(360deg) scale(1.1);
    background: var(--accent);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.service-icon i,
.service-icon-large i {
    font-size: 2rem;
    color: var(--white);
}

.link-arrow {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* === 9. FEATURES === */
.feature-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out both;
}

.feature-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.2);
    color: var(--accent);
    animation: bounce 0.6s ease;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-amber {
    background: #fef3c7;
}

.feature-blue {
    background: #dbeafe;
}

.feature-green {
    background: #d1fae5;
}

.feature-purple {
    background: #ede9fe;
}

/* === 10. CONTACT === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info-header i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

.contact-info-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details {
    position: relative;
    z-index: 1;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--accent);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #ff9800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-weight: 600;
}

.contact-text a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent);
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.badge-24,
.response-time {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid var(--accent);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.5rem;
}

.contact-social {
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

/* === Enhanced Pricing Section === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

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

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: var(--bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    background: var(--primary);
    color: var(--bg-white);
    transform: scale(1.1);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.pricing-price::before {
    content: '₹';
    font-size: 1.5rem;
    position: absolute;
    top: -0.2rem;
    left: -1.2rem;
}

.pricing-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-cta {
    margin-top: 1.5rem;
}

.pricing-cta .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pricing-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Pricing Info Box */
.pricing-info-box {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-section));
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid var(--primary);
}

.pricing-info-box h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-info-box ul {
    list-style: none;
    padding: 0;
}

.pricing-info-box li {
    padding: 0.75rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.pricing-info-box li:last-child {
    border-bottom: none;
}

.pricing-info-box li i {
    color: var(--accent);
    font-size: 1rem;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-price {
        font-size: 2rem;
    }

    .pricing-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.social-link.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0C85D0);
}

.contact-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-action-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.quick-action-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.quick-action-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.quick-action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.quick-action-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #0DA85C);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.2rem;
    margin: 0;
    color: var(--white);
}

/* Old contact box styles for backward compatibility */
.contact-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-box i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-box:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent);
}

/* Contact Info Side */
.contact-info-side {
    background: linear-gradient(135deg, var(--primary), #1a1a1a);
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-info-list {
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--accent);
}

.social-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: translateY(-5px);
}

/* Contact Form Side */
.contact-form-side {
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-side h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: .75rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out both;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
    animation: slideInRight 0.5s ease-out;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
    animation: slideInRight 0.5s ease-out;
}

/* === 11. MAP SECTION === */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: -1.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    animation: scaleIn 0.8s ease-out;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.map-address {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex: 1;
}

.map-address i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-top: 0.5rem;
}

.map-address h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.map-address p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.map-directions {
    flex-shrink: 0;
}

.map-directions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* === 12. PRICING & AREAS === */
.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.pricing-icon {
    background: var(--secondary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.area-local {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.area-cities {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.area-tourist {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

/* Service Areas - New Design */
.service-areas {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%230ea5e9" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.service-areas .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.areas-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.area-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.area-card-header {
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #ff9800);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.area-icon i {
    font-size: 2rem;
    color: var(--white);
}

.area-header-text h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.area-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid var(--accent);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}

.area-card-body {
    padding: 2rem;
    flex: 1;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.area-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bae6fd;
    border-radius: 25px;
    font-size: 0.85rem;
    color: #0c4a6e;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.area-tag:hover {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: var(--white);
    border-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.area-card-footer {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.area-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary), #1a1a1a);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.area-cta:hover {
    background: linear-gradient(135deg, #1a1a1a, var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.area-cta i {
    font-size: 1.1rem;
}

/* Coverage Stats */
.coverage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.coverage-stat {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.coverage-stat:hover {
    transform: translateY(-5px);
}

.coverage-stat i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.coverage-stat:hover i {
    transform: scale(1.2) rotate(10deg);
}

.coverage-stat h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.coverage-stat p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Old area-box styles for backward compatibility */
.area-box {
    padding: 2rem;
    border-radius: 10px;
}

.area-list {
    list-style: none;
}

.area-list li:before {
    content: "•";
    color: var(--secondary);
    font-weight: 700;
    margin-right: .5rem;
}

/* === 12. FLEET SECTION === */
.fleet-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.fleet-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fleet-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fleet-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

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

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

.fleet-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.fleet-content {
    padding: 1.5rem;
}

.fleet-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.fleet-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.fleet-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #64748b;
    font-size: 0.9rem;
}

.fleet-features i {
    color: var(--secondary);
    font-size: 1rem;
}

.fleet-price {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.price-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

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

.fleet-cta {
    margin-top: 2rem;
}

/* Fleet Card Animation Delays */
.fleet-card:nth-child(1) {
    animation-delay: 0.1s;
}

.fleet-card:nth-child(2) {
    animation-delay: 0.2s;
}

.fleet-card:nth-child(3) {
    animation-delay: 0.3s;
}

.fleet-card:nth-child(4) {
    animation-delay: 0.4s;
}

.fleet-card:nth-child(5) {
    animation-delay: 0.5s;
}

.fleet-card:nth-child(6) {
    animation-delay: 0.6s;
}

.fleet-card:nth-child(7) {
    animation-delay: 0.7s;
}

/* === 13. RELIABLE SERVICE SECTION === */
.reliable-service {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #8b5a00 100%);
    padding: 100px 0;
    overflow: hidden;
}

.reliable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(251,191,36,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.reliable-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.reliable-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.reliable-badge i {
    font-size: 1.2rem;
    color: var(--accent);
}

.reliable-badge span {
    font-weight: 600;
    color: var(--white);
}

.reliable-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    animation: fadeInUp 0.8s ease;
}

.reliable-content h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 0.9s ease;
}

.reliable-content>p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease;
}

/* Stats Grid */
.reliable-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeInUp 1.1s ease;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* CTA Buttons */
.reliable-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeInUp 1.2s ease;
}

.reliable-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

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

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

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* === 14. CTA SECTION === */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 100px 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(251,191,36,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.cta-badge i {
    font-size: 1.2rem;
    color: var(--accent);
}

.cta-badge span {
    font-weight: 600;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    animation: fadeInUp 0.8s ease;
}

.cta-content>p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1.1s ease;
}

.cta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-stat-item i {
    font-size: 2rem;
    color: var(--accent);
}

.cta-stat-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* === 13. FLEET === */
.fleet-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all .3s;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fleet-header {
    padding: 3rem 2rem;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fleet-taxicab .fleet-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.fleet-minivan .fleet-header {
    background: linear-gradient(135deg, #10b981, #059669);
}

.fleet-suv .fleet-header {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.fleet-vip .fleet-header {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.fleet-header i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.fleet-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.fleet-body {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-body p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* === 14. COMPANY INFO === */
.company-box {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.company-badge i {
    font-size: 1.3rem;
}

.company-box h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.company-intro {
    font-size: 1.3rem;
    color: var(--secondary);
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
}

.company-description {
    margin-bottom: 3rem;
}

.company-description p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.company-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.company-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-light);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* === 15. BLOG === */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all .3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
}

.blog-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 1rem;
}

.blog-image-placeholder i {
    font-size: 3rem;
}

.blog-image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

.blog-placeholder-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.blog-placeholder-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.blog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.blog-category-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.blog-category-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Category Cards */
.categories-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-amber {
    border-top-color: var(--secondary);
}

.category-blue {
    border-top-color: #3b82f6;
}

.category-green {
    border-top-color: #10b981;
}

.category-purple {
    border-top-color: #8b5cf6;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.category-amber .category-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.category-blue .category-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.category-green .category-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.category-purple .category-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.category-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Blog Post Enhancements */
.blog-image-placeholder-large {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.blog-image-placeholder-large i {
    font-size: 4rem;
}

.blog-image-placeholder-large span {
    font-size: 1.5rem;
    font-weight: 700;
}

.article-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.article-share span {
    color: var(--text-light);
    font-weight: 600;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.blog-post-content h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.blog-post-content h2 i {
    color: var(--secondary);
}

.destinations-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.destination-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.destination-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.destination-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.destination-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.destination-icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.destination-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.destination-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.destination-distance {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.highlight-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    border-left: 4px solid var(--accent);
}

.highlight-box i {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.highlight-box h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.services-highlight {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.services-highlight h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.services-grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
}

.service-feature i {
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-feature h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.blog-cta-box-enhanced {
    background: linear-gradient(135deg, var(--primary), #1a1a1a);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    margin-top: 4rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.blog-cta-box-enhanced h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.blog-cta-box-enhanced p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23fbbf24" opacity="0.1"/></svg>');
    pointer-events: none;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(255, 193, 7, 0.5);
    }
}

.testimonials-section .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(5) {
    animation-delay: 0.5s;
}

.testimonial-card:nth-child(6) {
    animation-delay: 0.6s;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: var(--secondary);
    opacity: 0.05;
    font-family: Georgia, serif;
    line-height: 1;
    transform: rotate(180deg);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    animation: starPop 0.5s ease-out backwards;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-rating i:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-rating i:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-rating i:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-rating i:nth-child(4) {
    animation-delay: 0.4s;
}

.testimonial-rating i:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes starPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.testimonial-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--bg-light);
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.author-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: rotate(360deg) scale(1.1);
}

.testimonial-card:hover .author-avatar::before {
    opacity: 1;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.author-info h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: width 0.3s ease;
}

.testimonial-card:hover .author-info h4::after {
    width: 100%;
}

.author-info p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-info p::before {
    content: '✓';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.testimonials-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe9a3 50%, #fff9e6 100%);
    border-radius: 20px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.testimonials-cta p {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-cta .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: bounce 2s infinite;
}

/* === GOOGLE REVIEWS SECTION === */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-widget-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.google-reviews-container {
    margin-top: 3rem;
}

.reviews-header {
    margin-bottom: 3rem;
}

.google-rating-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rating-badge .fab.fa-google {
    font-size: 3rem;
    color: #4285f4;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.review-count {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.reviews-widget {
    margin: 3rem 0;
    min-height: 400px;
}

.reviews-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 15px;
    margin-top: 3rem;
}

.reviews-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.reviews-cta .btn {
    margin-top: 0.5rem;
}


/* === 15. FOOTER === */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-col h3 i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col p,
.footer-contact a,
.footer-links a {
    color: #ddc7c7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-5px) scale(1.2) rotate(10deg);
    animation: bounce 0.6s ease;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.visitor-counter {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 25px;
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    animation: pulse 2s ease-in-out infinite;
    max-width: fit-content;
    margin-left: auto;
    margin-right: 0;
}

.visitor-counter i {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

.visitor-counter strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

/* === 16. RESPONSIVE === */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reliable-content h2 {
        font-size: 2.5rem;
    }

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

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .logo span {
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left .3s;
        align-items: flex-start;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Hero Section */
    .hero,
    .page-hero {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Sections Padding */
    .services-overview,
    .about-section,
    .contact-section,
    .map-section,
    .reviews-section {
        padding: 60px 0;
    }

    /* Section Titles */
    .section-title,
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .section-description {
        font-size: 1rem;
        margin: -1rem auto 2rem;
    }

    /* Grids */
    .services-grid,
    .services-grid-2,
    .features-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Service Cards */
    .service-card,
    .service-card-large {
        padding: 1.5rem;
    }

    .service-icon,
    .service-icon-large {
        width: 56px;
        height: 56px;
    }

    .service-icon i,
    .service-icon-large i {
        font-size: 1.75rem;
    }

    /* About Section */
    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .feature-box {
        padding: 1.25rem;
    }

    .feature-box i {
        font-size: 2rem;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    /* Fleet Section */
    .fleet-section {
        padding: 60px 0;
    }

    .fleet-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .fleet-image {
        height: 200px;
    }

    .fleet-content h3 {
        font-size: 1.3rem;
    }

    .fleet-features {
        gap: 0.75rem;
    }

    .fleet-features span {
        font-size: 0.85rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    /* Reliable Service Section */
    .reliable-service {
        padding: 60px 0;
    }

    .reliable-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .reliable-content h3 {
        font-size: 1.2rem;
    }

    .reliable-content>p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .reliable-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-item i {
        font-size: 2rem;
    }

    .stat-item h4 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .reliable-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .reliable-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-card {
        padding: 2rem;
    }

    .contact-info-header i {
        font-size: 3rem;
    }

    .contact-info-header h3 {
        font-size: 1.5rem;
    }

    .contact-detail-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.25rem;
    }

    .quick-action-card {
        padding: 1.5rem;
    }

    .quick-action-card i {
        font-size: 2.5rem;
    }

    .quick-action-card h3 {
        font-size: 1.3rem;
    }

    .contact-box {
        padding: 1.5rem;
    }

    .contact-box i {
        font-size: 2.5rem;
    }

    .contact-box h3 {
        font-size: 1.2rem;
    }

    .contact-box p,
    .contact-box a {
        font-size: 0.95rem;
    }

    /* Service Areas Responsive */
    .areas-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .area-card-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .area-icon {
        width: 60px;
        height: 60px;
    }

    .area-icon i {
        font-size: 1.75rem;
    }

    .area-header-text h3 {
        font-size: 1.2rem;
    }

    .area-card-body {
        padding: 1.5rem;
    }

    .area-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .coverage-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }

    .coverage-stat i {
        font-size: 2.5rem;
    }

    .coverage-stat h4 {
        font-size: 2rem;
    }

    /* Map Section Responsive */
    .map-section {
        padding: 60px 0;
    }

    .map-info {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .map-address {
        flex-direction: column;
        gap: 1rem;
    }

    .map-address i {
        font-size: 2rem;
    }

    .map-address h3 {
        font-size: 1.2rem;
    }

    .map-address p {
        font-size: 0.95rem;
    }

    .map-directions {
        width: 100%;
    }

    .map-directions .btn {
        width: 100%;
        justify-content: center;
    }

    .map-container iframe {
        height: 300px;
    }

    /* Reviews Section */
    .reviews-section {
        padding: 60px 0;
    }

    .google-rating-summary {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }

    .rating-badge {
        flex-direction: column;
        gap: 1rem;
    }

    .rating-number {
        font-size: 2rem;
    }

    .reviews-cta {
        padding: 1.5rem;
    }

    .reviews-cta p {
        font-size: 1rem;
    }


    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 1.2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        font-size: 0.95rem;
    }

    .footer-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Company Info Responsive */
    .company-box {
        padding: 2.5rem 1.5rem;
    }

    .company-box h2 {
        font-size: 2rem;
    }

    .company-intro {
        font-size: 1.1rem;
    }

    .company-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-item {
        padding: 1.25rem;
    }

    /* Contact Form Responsive */
    .contact-info-side,
    .contact-form-side {
        padding: 2rem 1.5rem;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info-item:hover {
        transform: translateX(0);
        transform: translateY(-5px);
    }

    .social-links-large {
        justify-content: center;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .logo {
        font-size: 1.2rem;
    }

    .logo span {
        font-size: 1rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero,
    .page-hero {
        padding: 100px 0 50px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    /* Sections */
    .services-overview,
    .about-section,
    .contact-section,
    .map-section,
    .testimonials-section {
        padding: 40px 0;
    }

    .section-title,
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Service Cards */
    .services-grid {
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    /* About Section */
    .about-content h2 {
        font-size: 1.75rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-box {
        padding: 1rem;
    }

    .feature-box h3 {
        font-size: 1rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }

    /* Fleet Section */
    .fleet-section {
        padding: 50px 0;
    }

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

    .fleet-image {
        height: 180px;
    }

    .fleet-content {
        padding: 1.25rem;
    }

    .fleet-content h3 {
        font-size: 1.2rem;
    }

    .fleet-features {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .fleet-price {
        padding: 0.75rem;
    }

    .price-value {
        font-size: 1.4rem;
    }

    /* Visitor Counter - Hide on mobile */
    .visitor-counter {
        display: none;
    }

    /* Reliable Service */
    .reliable-service {
        padding: 50px 0;
    }

    .reliable-badge {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .reliable-content h2 {
        font-size: 1.75rem;
    }

    .reliable-content h3 {
        font-size: 1.1rem;
    }

    .reliable-content>p {
        font-size: 0.95rem;
    }

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

    .stat-item {
        padding: 1.25rem 1rem;
    }

    .stat-item h4 {
        font-size: 1.75rem;
    }

    .reliable-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Contact Section */
    .contact-grid {
        gap: 1.25rem;
    }

    .contact-box {
        padding: 1.25rem;
    }

    .contact-box h3 {
        font-size: 1.1rem;
    }

    /* Map Section */
    .map-container iframe {
        height: 250px;
    }

    .map-info {
        padding: 1.25rem;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-col h3 {
        font-size: 1.1rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col p,
    .footer-contact p {
        font-size: 0.9rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }

    .copyright {
        font-size: 0.85rem;
    }
}

/* === UTILITY CLASSES === */
.services-cta {
    margin-top: 3rem;
}

.about-cta {
    margin-top: 3rem;
}

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

/* === MOBILE OPTIMIZATION === */
/* Improve touch targets for mobile */
@media (max-width: 768px) {

    a,
    button,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent text size adjustment on orientation change */
    html {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Improve tap highlight */
    * {
        -webkit-tap-highlight-color: rgba(245, 158, 11, 0.2);
    }

    /* Better mobile typography */
    body {
        font-size: 15px;
        line-height: 1.65;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    p {
        margin-bottom: 1rem;
        text-align: left;
        hyphens: auto;
        word-wrap: break-word;
    }

    /* Improve readability on mobile */
    .service-card p,
    .feature-box p,
    .contact-box p,
    .about-content p,
    .blog-content p {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }

    /* Better heading sizes for mobile */
    h1 {
        font-size: 1.875rem;
        letter-spacing: -0.02em;
    }

    h2 {
        font-size: 1.5rem;
        letter-spacing: -0.01em;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.125rem;
    }

    /* Improve button text */
    .btn {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.01em;
    }
}

/* ========================================
   CLEAN TEXT ALIGNMENT - NO WORD BREAKING
   ======================================== */

/* Prevent automatic hyphenation globally */
body,
p,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6,
li,
td,
th {
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
}

/* FAQ specific fixes */
.faq-answer p {
    text-align: left !important;
    line-height: 1.7 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: normal !important;
}

.faq-question {
    word-break: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
}

/* Clean paragraph styling */
p {
    text-align: left;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
}

/* Header and title fixes */
h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    line-height: 1.3;
}

/* Prevent breaking in important elements */
.no-break {
    white-space: nowrap;
    word-break: keep-all;
}

/* Safe breaking for long strings */
.safe-break {
    word-break: break-all;
    word-wrap: break-word;
}

/* Responsive text sizing */
@media (max-width: 768px) {

    p,
    .faq-answer p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {

    p,
    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ========================================
   UNIQUE FEATURES STYLES
   ======================================== */

/* 1. FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes whatsappPulse {

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

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* 2. SCROLL PROGRESS BAR */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5);
}

/* 3. BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* 4. VISITOR COUNTER */
.visitor-counter {
    position: fixed;
    top: 80px;
    left: 20px;
    background: rgba(26, 26, 26, 0.95);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9997;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 0.5s ease-out;
    backdrop-filter: blur(10px);
}

.visitor-counter i {
    color: var(--accent);
    margin-right: 8px;
}

/* 5. PARTICLE EFFECT */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(251, 191, 36, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* 6. LIVE CLOCK */
.live-clock {
    text-align: center;
    padding: 20px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    animation: fadeIn 1s ease-out;
}

.live-clock i {
    margin-right: 10px;
    animation: rotate 4s linear infinite;
}

/* 7. CURSOR TRAIL */
.cursor-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px var(--accent);
}

/* 8. BOOKING CALCULATOR */
.booking-calculator {
    position: fixed;
    bottom: 20px;
    left: -350px;
    width: 320px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9996;
    transition: left 0.4s ease;
}

.booking-calculator.active {
    left: 20px;
}

.calculator-header {
    background: linear-gradient(135deg, var(--primary), #2d2d2d);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculator-header h3 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
}

.calculator-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.calculator-close:hover {
    transform: rotate(90deg);
}

.calculator-body {
    padding: 20px;
}

.calc-input {
    margin-bottom: 15px;
}

.calc-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.calc-input input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.calc-input input:focus {
    outline: none;
    border-color: var(--secondary);
}

.calc-result {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

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

.fare-display span {
    color: var(--text-light);
}

.fare-display strong {
    font-size: 1.8rem;
    color: var(--secondary);
}

.calculator-toggle {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 9995;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.calculator-toggle:hover {
    background: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* 10. REMOVED - Dark mode toggle removed */

/* === 16. BLOG REDESIGN ENHANCEMENTS === */

/* Blog Hero */
.blog-hero-bg {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#fbbf24 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    animation: bgPan 20s linear infinite;
}

@keyframes bgPan {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 30px 30px;
    }
}

.hero-subtitle {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent);
    animation: fadeInDown 0.8s ease-out;
}

.hero-search-wrapper {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-search-form {
    display: flex;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero-search-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

.search-icon {
    padding: 1rem 0 1rem 1.5rem;
    color: var(--text-light);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.hero-search-input {
    flex: 1;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.hero-search-form .btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
}

/* Section Headers Left Aligned */
.section-header-left {
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--secondary);
}

.section-title-left {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.section-description-left {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Blog Card Enhancements */
.blog-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-image {
    overflow: hidden;
}

.blog-image-placeholder {
    transition: transform 0.5s ease;
}

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

.blog-content {
    position: relative;
    z-index: 2;
    background: var(--white);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.newsletter-content {
    position: relative;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.newsletter-icon i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.newsletter-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.input-group-newsletter {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group-newsletter input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group-newsletter input:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.input-group-newsletter .btn {
    padding: 0 2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-privacy i {
    color: #10b981;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .newsletter-icon {
        margin: 0 auto 1.5rem;
    }

    .input-group-newsletter {
        flex-direction: column;
    }

    .input-group-newsletter .btn {
        width: 100%;
        padding: 1rem;
    }

    .newsletter-privacy {
        justify-content: center;
    }

    .section-header-left {
        text-align: center;
        padding-left: 0;
        border-left: none;
        border-bottom: 4px solid var(--secondary);
        padding-bottom: 1.5rem;
        margin: 0 auto 3rem;
        max-width: 600px;
    }
}

/* === FAQ SECTION STYLES === */
/* Comprehensive FAQ styling to replace inline styles */

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section .section-label {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

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

.faq-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i.fa-question-circle {
    color: #667eea;
    margin-right: 12px;
}

.faq-question i.fa-chevron-down {
    color: #667eea;
    transition: transform 0.3s;
}

.faq-question.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 3.5rem;
    color: #666;
    line-height: 1.8;
}

/* Mobile responsive FAQ */
@media (max-width: 768px) {
    .faq-accordion {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem 2.5rem;
        font-size: 0.95rem;
    }
}

/* === FOOTER STYLES === */
/* Professional footer styling to replace inline styles */

.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-company-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-company-info i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-right: 15px;
}

.footer-company-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-section-title {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.footer-link:hover {
    color: #ffd700;
    padding-left: 10px;
}

.footer-link i {
    font-size: 0.8rem;
    margin-right: 10px;
}

.footer-availability-badge {
    margin-top: 1.5rem;
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.footer-availability-badge p {
    margin: 0;
    color: #ffd700;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-item {
    display: flex;
    align-items: start;
}

.footer-contact-item i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-word;
}

.footer-contact-item a:hover {
    color: #ffd700;
}

.footer-contact-address {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-cta-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-cta-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-btn-call {
    background: #ffd700;
    color: #1e3c72;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.footer-btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-visitor-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-visitor-count strong {
    color: #ffd700;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-cta-buttons {
        flex-direction: column;
    }

    .footer-btn-whatsapp,
    .footer-btn-call {
        width: 100%;
        justify-content: center;
    }

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

/* Enhanced Why Choose Us Responsive Design */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .features-grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   FLOATING WHATTSAPP BUTTON
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }

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

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

/* SCROLL PROGRESS BAR */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* COMPREHENSIVE MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

    /* Navigation */
    .navbar {
        padding: 10px 0;
    }

    .nav-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo span {
        font-size: 0.8rem;
    }

    .mobile-menu-btn {
        display: block;
        background: var(--primary);
        border: none;
        color: white;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .nav-menu a {
        display: block;
        padding: 15px;
        border-radius: 8px;
        background: var(--bg-light);
    }

    .btn-book {
        margin-top: 20px;
        width: 100%;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.2;
        text-align: center !important;
        width: 100%;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
        text-align: center !important;
        width: 100%;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
        display: flex;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
    }

    /* Service Cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 20px;
        text-align: center;
    }

    /* Fleet Section */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fleet-card {
        padding: 20px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
        text-align: center;
    }

    /* Why Choose Section */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    /* Contact Section */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-info {
        padding: 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card {
        margin-bottom: 20px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-card {
        padding: 20px;
        text-align: center;
    }

    /* Forms */
    .form-group {
        margin-bottom: 20px;
    }

    .form-control {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Tables */
    table {
        font-size: 0.9rem;
    }

    th,
    td {
        padding: 8px;
    }

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

    /* Spacing */
    .section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Typography */
    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    h3 {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    /* Cards */
    .card {
        margin-bottom: 20px;
        border-radius: 10px;
    }

    /* FAQ */
    .faq-item {
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 15px;
        font-size: 0.9rem;
    }

    /* Location Cards */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-card {
        padding: 15px;
    }

    /* Price Tables */
    .price-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card {
        margin-bottom: 20px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 50px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .service-card,
    .fleet-card,
    .feature-item {
        padding: 15px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .logo span {
        font-size: 0.7rem;
    }

    .logo i {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .section {
        padding: 30px 0;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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

/* IMPROVED ACCESSIBILITY */
.btn:focus,
.nav-menu a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-whatsapp {
        animation: none;
    }
}

/* Performance Optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Font Display Optimization */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reduce Layout Shift */
.hero-content {
    min-height: 400px;
}

/* Optimize Animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Critical CSS Inlining */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Enhanced Why Choose Us Responsive Design - Mobile */
@media (max-width: 768px) {
    .feature-item {
        padding: 2rem 1.5rem;
    }

    .feature-icon-circle {
        width: 80px;
        height: 80px;
    }

    .feature-icon-circle i {
        font-size: 2rem;
    }

    .feature-bg-icon {
        font-size: 5rem;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    .feature-item p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .feature-features {
        gap: 0.4rem;
    }

    .feature-features span {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .feature-item {
        padding: 1.5rem 1rem;
    }

    .feature-icon-circle {
        width: 70px;
        height: 70px;
    }

    .feature-icon-circle i {
        font-size: 1.8rem;
    }

    .feature-bg-icon {
        font-size: 4rem;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .feature-features span {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}