/* ============================================
   Adinath Travels - Main Stylesheet
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    background: var(--white);
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: block;
}

/* Show logo text if image fails to load */
.logo-img[style*="display: none"] ~ .logo-text {
    display: block !important;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-contact .phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
/* Scrolling Ticker */
.ticker-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--secondary-color);
}

.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    width: fit-content;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: ticker-scroll 25s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

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

.ticker-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.ticker-item a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.ticker-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    margin: 0 0.5rem;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    line-height: 1.6;
    word-wrap: break-word;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 2;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Hero section buttons - smaller and more refined */
.hero-content .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 5px;
    font-weight: 500;
}

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

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

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

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

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-call {
    background: var(--primary-color);
}

/* Hero CTA buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    min-width: 180px;
}

/* Quick Booking */
.quick-booking {
    padding: 3rem 0;
    background: var(--bg-light);
}

.quick-booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.quick-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.quick-card h3 {
    margin-bottom: 0.5rem;
}

.quick-card p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.quick-book-btn {
    width: 100%;
}

/* Fleet preview */
.fleet-preview {
    padding: 3rem 0;
    background: var(--white);
}

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

@media (min-width: 768px) {
    .fleet-preview-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.car-specs {
    list-style: none;
    margin: 0.75rem 0 1rem;
    padding: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.car-specs li + li {
    margin-top: 0.25rem;
}

.car-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.car-actions .btn {
    flex: 1;
    text-align: center;
}

/* Compact Why Choose section */
.why-choose-compact {
    padding: 3rem 0;
    background: var(--bg-light);
}

.why-list {
    list-style: disc;
    padding-left: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.fleet-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.fleet-list li::before {
    content: "• ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.fleet-list li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.why-list li + li {
    margin-top: 0.75rem;
}

/* Quick Services */
.quick-services {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    text-decoration: none;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Featured Cars */
.featured-cars {
    padding: 4rem 0;
    overflow: hidden;
}

.featured-cars .container {
    position: relative;
}

@media (max-width: 768px) {
    .featured-cars {
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .featured-cars .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .featured-cars .container {
        overflow: visible;
        padding-left: 0;
        padding-right: 0;
    }
}

.cars-carousel {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: nowrap;
    width: 100%;
}

@media (max-width: 768px) {
    .cars-carousel {
        gap: 1rem;
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        scroll-padding-right: 20px;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
    }
}

.cars-carousel::-webkit-scrollbar {
    height: 8px;
}

.cars-carousel::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.cars-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.cars-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.cars-carousel .car-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .cars-carousel {
        gap: 2rem;
    }
    
    .cars-carousel .car-card {
        flex: 0 0 300px;
        min-width: 300px;
        max-width: 300px;
    }
}

.car-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.car-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

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

.car-info {
    padding: 1.5rem;
}

.car-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.car-type {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.car-features span {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.car-price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}


/* Why Choose Us Home */
.why-choose-home {
    padding: 4rem 0;
    background: var(--white);
}

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

.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

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

.feature-box:hover .feature-icon {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.feature-box h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

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

/* Tour Packages */
.tour-packages {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.package-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-content {
    padding: 1.5rem;
}

.package-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-content .package-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.package-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.package-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-content ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-content ul li i {
    color: var(--success);
}

.package-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-preview {
    padding: 4rem 0;
    overflow: hidden;
}

.testimonials-preview .container {
    position: relative;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    width: 100%;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 8px;
}

.testimonials-carousel::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .testimonials-carousel {
        gap: 1rem;
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        scroll-padding-right: 20px;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
    }
    
    .testimonials-carousel .testimonial-card {
        flex: 0 0 85vw;
        min-width: 85vw;
        max-width: 85vw;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .testimonials-preview .container {
        overflow: visible;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 769px) {
    .testimonials-carousel {
        gap: 2rem;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .testimonials-carousel .testimonial-card {
        flex: 0 0 350px;
        min-width: 350px;
        max-width: 350px;
        flex-shrink: 0;
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}


.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Gujarat Tourist Places */
.gujarat-tourist-places {
    padding: 4rem 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.tourist-places-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.tourist-places-slider::-webkit-scrollbar {
    height: 8px;
}

.tourist-places-slider::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 4px;
}

.tourist-places-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.tourist-places-slider::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.tourist-place-card {
    flex: 0 0 350px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    scroll-snap-align: start;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tourist-place-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.place-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.place-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    animation: zoomIn 8s ease-in-out infinite;
}

@keyframes zoomIn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.tourist-place-card:hover .place-image-wrapper img {
    transform: scale(1.15);
    animation: none;
}

.place-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(0);
    transition: var(--transition);
}

.place-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.place-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.place-info {
    padding: 1.5rem;
}

.place-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.place-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Moving Images Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.slide-left {
    animation: slideLeft 0.8s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-scale {
    animation: fadeInScale 0.6s ease;
}

/* Fleet in Action Section */
.fleet-action {
    padding: 4rem 0;
    background: var(--white);
}

.fleet-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.fleet-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.fleet-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.fleet-card.large {
    grid-row: span 2;
}

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

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

.fleet-card.large img {
    min-height: 500px;
}

.fleet-card:not(.large) img {
    min-height: 240px;
}

.fleet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    padding: 2rem;
    transform: translateY(0);
}

.fleet-overlay h3,
.fleet-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.fleet-overlay h4 {
    font-size: 1.25rem;
}

.fleet-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

@media (max-width: 968px) {
    .fleet-showcase {
        grid-template-columns: 1fr;
    }
    
    .fleet-card.large {
        grid-row: span 1;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Filters Section */
.filters-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.filters {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Cars Listing */
.cars-listing {
    padding: 3rem 0;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Booking Section */
.booking-section {
    padding: 3rem 0;
}

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.booking-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.booking-form h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.booking-form h3 {
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Location Input with Map Button */
.location-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.location-input-wrapper input {
    padding-right: 3.5rem;
}

.location-btn {
    position: absolute;
    right: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.location-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.location-btn:active {
    transform: scale(0.95);
}

.location-btn i {
    font-size: 1rem;
}

.location-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-hint i {
    color: var(--primary-color);
}

/* Google Places Autocomplete Dropdown Styling */
.pac-container {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e5e7eb;
    margin-top: 0.25rem;
    z-index: 1000;
}

.pac-item {
    padding: 0.75rem;
    cursor: pointer;
    border-top: 1px solid #f3f4f6;
    transition: var(--transition);
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover {
    background: var(--bg-light);
}

.pac-item-selected {
    background: rgba(37, 99, 235, 0.1);
}

.pac-icon {
    margin-right: 0.75rem;
}

.pac-matched {
    font-weight: 600;
    color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: var(--transition);
}

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

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.booking-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.booking-summary h3 {
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-item.total {
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
}

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

.contact-info-card,
.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-info-card h2,
.contact-form-card h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-text a:hover {
    text-decoration: underline;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.map-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.map-link i {
    margin-left: 0.25rem;
    font-size: 0.8rem;
}

.quick-contact-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Large Social Buttons in Footer */
.footer-social-large {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-btn-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.social-btn-large:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.social-btn-large.facebook {
    background: #1877f2;
}

.social-btn-large.facebook:hover {
    background: #166fe5;
}

.social-btn-large.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn-large.instagram:hover {
    opacity: 0.9;
}

.social-btn-large.maps {
    background: #ea4335;
}

.social-btn-large.maps:hover {
    background: #d33b2c;
}

.social-btn-large.justdial {
    background: #ff6600;
}

.social-btn-large.justdial:hover {
    background: #e55a00;
}

/* Additional Social Media Buttons */
.social-btn-large[style*="#0073e6"] {
    background: #0073e6 !important;
}

.social-btn-large[style*="#0073e6"]:hover {
    background: #005bb5 !important;
    transform: translateY(-5px) scale(1.1);
}

.social-btn-large[style*="#ff6b35"] {
    background: #ff6b35 !important;
}

.social-btn-large[style*="#ff6b35"]:hover {
    background: #e55a2b !important;
    transform: translateY(-5px) scale(1.1);
}

.social-btn-large[style*="#ff6600"]:not(.justdial) {
    background: #ff6600 !important;
}

.social-btn-large[style*="#ff6600"]:not(.justdial):hover {
    background: #e55a00 !important;
    transform: translateY(-5px) scale(1.1);
}

.map-section {
    margin-top: 3rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
}

/* About Section */
.about-section {
    padding: 3rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text {
    max-width: 100%;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.125rem;
    font-weight: 400;
}

.about-text p strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.15rem;
}

.about-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

.values-section {
    margin: 4rem 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 400;
}

.why-choose-section {
    margin: 4rem 0;
}

.why-choose-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--bg-light);
    padding-left: 1.25rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item h4 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Gallery Section */
.gallery-section {
    padding: 3rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Testimonials Page */
.testimonials-page {
    padding: 3rem 0;
}

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

.testimonial-card-large {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.testimonial-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}

.testimonial-date {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
}

.testimonial-cta {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.testimonial-cta h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.footer > * {
    position: relative;
    z-index: 1;
}

/* Footer CTA Bar */
.footer-cta {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.cta-phone i {
    color: #ef4444;
    font-size: 1.5rem;
}

.cta-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Footer Company Section */
.footer-company {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-logo-container {
    background: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    overflow: visible;
}

.footer-logo-container:hover {
    background: none;
    transform: translateY(-2px);
    box-shadow: none;
    border: none;
}

.footer-logo-img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    filter: brightness(1.5) contrast(1.2) saturate(1.1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.footer-logo-container:hover .footer-logo-img {
    filter: brightness(1.7) contrast(1.3) saturate(1.2) drop-shadow(0 6px 12px rgba(255, 255, 255, 0.4));
    transform: scale(1.05);
}

/* Fallback styling for logo without container (direct in wrapper) */
.footer-logo-wrapper > .footer-logo-img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    filter: brightness(1.5) contrast(1.2) saturate(1.1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
    transition: var(--transition);
    display: block;
}

.footer-logo-wrapper > .footer-logo-img:hover {
    filter: brightness(1.7) contrast(1.3) saturate(1.2) drop-shadow(0 6px 12px rgba(255, 255, 255, 0.4));
    transform: translateY(-2px);
    background: none;
    box-shadow: none;
}

.footer-company-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin: 0.75rem 0 0.5rem 0;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    color: #60a5fa;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Google Reviews Section */
.footer-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-reviews h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.google-review-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    max-width: 300px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.google-review-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.google-logo-container {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-logo-img {
    height: 32px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    display: block;
}

.google-stars {
    display: flex;
    gap: 0.4rem;
    color: #fbbf24;
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.review-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.review-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Footer Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-list li i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.6;
}

.footer-contact-list li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile sticky bottom bar */
.mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 1100;
}

.mobile-sticky-bar .mobile-sticky-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.mobile-sticky-bar .mobile-call {
    background: var(--primary-color);
}

.mobile-sticky-bar .mobile-whatsapp {
    background: #25d366;
}

.mobile-sticky-bar i {
    font-size: 1.1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.payment-modal {
    max-width: 600px;
}

.payment-options {
    margin: 2rem 0;
}

.payment-method {
    margin-bottom: 1rem;
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.payment-method label i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.payment-amount {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.payment-amount p {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.payment-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

/* Responsive Design - Combined Media Queries */
@media (max-width: 768px) {
    .hamburger{display:flex}.nav-menu{position:fixed;left:-100%;top:70px;flex-direction:column;background:var(--white);width:100%;text-align:center;transition:0.3s;box-shadow:var(--shadow);padding:2rem 0;gap:1rem}.nav-menu.active{left:0}.nav-contact{display:none}.hero{height:auto;min-height:420px;padding:2.5rem 0}.hero-content{padding:1.5rem 1rem;max-width:100%;width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;box-sizing:border-box}.hero-content h1{font-size:1.6rem;line-height:1.3;margin-bottom:0.75rem;word-wrap:break-word;hyphens:auto;max-width:100%}.hero-content p{font-size:0.95rem;line-height:1.5;margin-bottom:1rem;word-wrap:break-word;hyphens:auto;max-width:100%}.hero-cta{flex-direction:column;width:100%}.hero-cta .btn{width:100%;max-width:420px}.section-title{font-size:2rem}.page-header h1{font-size:2rem}.page-header p{font-size:1rem}.form-row{grid-template-columns:1fr}.contact-wrapper{grid-template-columns:1fr}.about-content{grid-template-columns:1fr}.about-text h2{font-size:2rem}.about-text p{font-size:1.05rem}.values-section h2,.why-choose-section h2{font-size:2rem}.value-card h3{font-size:1.35rem}.value-card p{font-size:1rem}.feature-item h4{font-size:1.25rem}.feature-item p{font-size:1rem}.filters{flex-direction:column}.filter-group{width:100%}.hero-nav{padding:0 1rem}.hero-prev,.hero-next{width:40px;height:40px;font-size:1rem}.whatsapp-float{display:none}.location-btn{width:2.25rem;height:2.25rem}.location-hint{font-size:0.8rem}.car-info{padding:1.2rem}.car-info h3{font-size:1.1rem}.car-image{height:180px}.carousel-controls{margin-top:1.5rem}.carousel-btn{width:45px;height:45px;font-size:1rem;box-shadow:0 2px 6px rgba(0,0,0,0.2)}.testimonial-card{padding:1.5rem}.testimonial-text{font-size:0.95rem;line-height:1.6}.testimonial-author{font-size:0.9rem}.desktop-section{display:none}.mobile-sticky-bar{display:flex}.scroll-top-btn{display:none !important}
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .ticker-item {
        font-size: 0.8rem;
    }

    .ticker-item i {
        font-size: 0.9rem;
    }

    .ticker-separator {
        font-size: 1rem;
        margin: 0 0.25rem;
    }

    .ticker-content {
        gap: 1.5rem;
    }

    .hero {
        height: 550px;
        min-height: 550px;
    }

    .hero-content {
        padding: 1.25rem 1rem;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    .hero-content h1 {
        font-size: 1.35rem;
        line-height: 1.3;
        margin-bottom: 0.65rem;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.9rem;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-content .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
        white-space: nowrap;
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .hero-dots {
        bottom: 0.75rem;
    }

    .packages-grid,
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .booking-form,
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

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

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

/* Extra Small Devices (320px and below) */
@media (max-width: 360px) {
    .hero {
        height: 580px;
        min-height: 580px;
    }

    .hero-content {
        padding: 1rem 0.75rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    .hero-content h1 {
        font-size: 1.2rem;
        line-height: 1.25;
        margin-bottom: 0.6rem;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.85rem;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-content .btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.85rem;
        white-space: nowrap;
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .hero-dots {
        bottom: 0.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .hero-nav,
    /* Keep carousel controls visible on mobile for better UX */
    .carousel-controls {
        display: flex;
    }
}

