/* GoKarnaGo-Explore - Enhanced Styles with Logo, Dropdown & Service Toggles */

/* Global Styles */
:root {
    --primary-color: #21808d;
    --secondary-color: #2a9ba8;
    --accent-color: #ffa726;
    --success-color: #4caf50;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
    --text-dark: #333;
    --text-light: #666;
    --border-radius: 10px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
    z-index: 1000;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.whatsapp-float:hover {
    background-color: #20B358;
    transform: scale(1.1);
    animation: none;
}

.whatsapp-float i {
    margin: 0;
}

/* Enhanced Navigation with Logo */
.navbar {
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.about-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.about-.about-logo:hover {
    transform: scale(1.1);
}

.brand-text {
    margin-left: 0.75rem;
    color: white !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.navbar-nav .nav-link {
    margin: 0 0.5rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Animated Services Dropdown */
.services-dropdown {
    position: relative;
}

.taxi-icon {
    animation: drive 3s ease-in-out infinite;
}

@keyframes drive {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.services-menu {
    background: #21808d;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 1rem 0;
    margin-top: 0.5rem;
    min-width: 280px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-menu .dropdown-item {
    padding: 0;
    border: none;
    margin: 0.25rem 0.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.service-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
}

.service-item:hover .car-animation {
    animation: carMove 0.6s ease-out;
}

@keyframes carMove {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.service-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-content {
    flex: 1;
    color: #fff;
}

.service-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #fff;
}

.service-content small {
    color: var(--text-light);
    font-size: 0.85rem;
    color: #fff;
}

.service-item:hover .service-content small {
    color: #fff;
}

.service-item:hover .service-content strong {
    color: #dda24a;
}

.car-animation {
    position: absolute;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0;
    transition: var(--transition);
}

.service-item:hover .car-animation {
    opacity: 1;
    color: #dda24a
}

/* Service Toggle Buttons */
.service-toggles {
    border-bottom: 3px solid var(--primary-color);
    position: sticky;
    top: 76px;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(248, 249, 250, 0.95);
}

.toggle-buttons {
    gap: 1rem;
    padding: 0.5rem 0;
}

.service-toggle-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.service-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.service-toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(33, 128, 141, 0.3);
}

.service-toggle-btn.active .car-move {
    animation: carSlide 2s ease-in-out infinite;
}

.toggle-icon {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.car-move {
    position: absolute;
    right: -25px;
    font-size: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.service-toggle-btn:hover .car-move {
    opacity: 0.7;
    animation: carSlide 1s ease-in-out infinite;
}

.service-toggle-btn.active .car-move {
    opacity: 1;
    color: white;
}

@keyframes carSlide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Service Sections Toggle */
.service-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section with Image Slider */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Navigation Controls */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(33, 128, 141, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 3;
    transition: var(--transition);
}

.hero-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev {
    left: 30px;
}

.hero-nav.next {
    right: 30px;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: var(--accent-color);
    border-color: white;
    transform: scale(1.3);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Hero Overlay */
.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: bold;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

/* Enhanced Package Cards with Image Sliders */
.package-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: none;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Image Slider Container */
.package-image-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.package-image-slider .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.package-image-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.package-image-slider .slide.active {
    opacity: 1;
}

.package-image-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.package-card:hover .slide img {
    transform: scale(1.05);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: var(--accent-color);
    border-color: white;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

/* Slider Arrow Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(33, 128, 141, 0.8);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    font-size: 16px;
    z-index: 10;
}

.package-card:hover .slider-nav,
.temple-package-card:hover .slider-nav,
.airport-card:hover .slider-nav {
    opacity: 1;
}

.slider-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.package-badge.popular {
    background: var(--primary-color);
}

.package-badge.new {
    background: var(--success-color);
}

/* Updated Package Card Body */
.package-card .card-body {
    padding: 1.5rem;
    position: relative;
}

.package-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.package-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-includes {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Expandable Pricing Section */
.pricing-section {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-header {
    padding: 1rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transition: var(--transition);
}

.pricing-header:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.pricing-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.expand-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.pricing-section:not(.collapsed) .expand-icon {
    transform: rotate(180deg);
}

.pricing-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.pricing-section:not(.collapsed) .pricing-content {
    max-height: 400px;
    padding: 1rem;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color);
    transition: var(--transition);
}

.price-item:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: white;
}

.car-type {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.car-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Package Action Button */
.package-action {
    margin-top: 1rem;
    text-align: center;
}

.package-action .btn {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Temple Cards Styles - Updated */
.temple-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
    height: 280px;
    position: relative;
}

.temple-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.temple-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.temple-image {
    position: relative;
    width: 100%;
    height: 70%;
    overflow: hidden;
}

.temple-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    
}

.temple-card:hover .temple-image img {
    transform: scale(1.1);
}

.temple-card-body {
    padding: 1rem;
    height: 30%;
    background: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.temple-name {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.temple-description {
    color: var(--text-light);
    margin: 0;
    font-size: 0.85rem;
}

/* Temple Package Cards */
.temple-package-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.temple-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.temple-package-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.temple-package-slider .slide img {
    object-fit: contain; /* Changed from cover */
    
}

.temple-package-body {
    padding: 1.5rem;
}

.temple-package-body h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.temple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.temple-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
}

.temple-list li:last-child {
    border-bottom: none;
}

.temple-list li:hover,
.temple-list li.active {
    color: var(--primary-color);
    padding-left: 1rem;
    background: rgba(33, 128, 141, 0.05);
}

.temple-list li i {
    margin-right: 1rem;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

/* Airport Cards */
.airport-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.airport-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.airport-slider {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.airport-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.airport-card:hover .slide img {
    transform: scale(1.05);
}

.airport-body {
    padding: 1rem;
}

.airport-body h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.airport-pricing {
    margin-bottom: 1rem;
}

.airport-pricing .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
}

.airport-pricing .price-item:last-child {
    border-bottom: none;
}

.airport-pricing .price-item span:first-child {
    color: var(--text-dark);
    font-weight: 500;
}

.airport-pricing .price-item span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-box:hover {
    background: white;
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.feature-box h5 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(42, 155, 168, 0.25);
}

.social-section {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.social-links .btn {
    margin: 0.25rem;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 128, 141, 0.4);
}

.btn-warning {
    background: var(--accent-color);
    color: white;
}

.btn-warning:hover {
    background: #ff9800;
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-color);
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Enhanced Footer with Logo */
.footer {
    background: var(--dark-bg) !important;
    color: white;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255,255,255,0.1);
}

.footer-map-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #444;
}

.social-links a {
    transition: var(--transition);
    margin: 0 0.5rem;
}

.social-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-nav.prev {
        left: 15px;
    }

    .hero-nav.next {
        right: 15px;
    }

    .hero-dots {
        bottom: 20px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .navbar-logo {
        width: 35px;
        height: 35px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .services-menu {
        min-width: 150px;
    }

    .service-toggle-btn {
        min-width: 80px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-toggles {
        top: 50px;
    }

    .toggle-buttons {
        gap: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .package-image-slider {
        height: 280px;
    }

    .temple-card {
        height: 250px;
    }

    .temple-package-slider {
        height: 200px;
    }

    .airport-slider {
        height: 150px;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .package-card .card-body {
        padding: 1rem;
    }

    .pricing-section {
        padding: 0;
    }

    .pricing-section:not(.collapsed) .pricing-content {
        max-height: 500px; /* Increased for mobile */
    }

    .pricing-header {
        padding: 0.75rem;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 150px;
        right: 20px;
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-logo {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .package-image-slider {
        height: 250px;
    }

    .temple-card {
        height: 220px;
    }

    .temple-package-slider {
        height: 180px;
    }

    .airport-slider {
        height: 140px;
    }

    .slider-dots {
        bottom: 10px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .services-menu {
        min-width: 220px;
    }

    .service-item {
        padding: 0.75rem;
    }

    .service-toggle-btn {
        min-width: 120px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .toggle-buttons {
        justify-content: center;
    }
}

/* Loading Animation for Images */
.slide img,
.hero-slide img {
    loading: lazy;
}

.slide.loading,
.hero-slide.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Badge Styles */
.badge {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 50px;
}

/* Card Hover Effects */
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
    z-index: 1;
}

.package-card:hover::before {
    left: 100%;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Additional styles for better brand consistency */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.navbar-dark .navbar-brand,
.navbar-dark .navbar-nav .nav-link {
    color: white !important;
}

.badge-warning {
    background-color: var(--accent-color) !important;
    color: white !important;
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .footer,
    .whatsapp-float,
    .hero-nav,
    .hero-dots,
    .service-toggles {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .service-section {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}