/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Main Layout */
.main-wrapper {
    min-height: 100vh;
    background: var(--light-bg);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: var(--primary-color);
    overflow: hidden;
    perspective: 1500px;
}

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

.swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.2) rotate(-5deg) translateZ(-100px);
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: brightness(0.7);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.swiper-slide-active .slide-inner {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
}

.swiper-slide-active .slide-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: inherit;
    animation: zoomInOut 20s infinite ease-in-out;
    z-index: -1;
}

.swiper-slide-active:hover .slide-inner::before {
    animation-play-state: paused;
}

.slide-content {
    position: absolute;
   
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    perspective: 1000px;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.slide-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translate3d(0, 50px, -100px) rotateX(-45deg);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: gold;
    width: 100%;
}

.slide-content p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translate3d(-100%, 0, -100px) rotateY(-90deg);
    transform-origin: left;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
    position: relative;
    padding: 0 20px;
    color: white;
    width: 100%;
    max-width: 800px;
}

.btn-booking {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: 2px solid white;
    opacity: 0;
    transform: translate3d(0, 50px, -50px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.btn-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.5));
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.5s ease;
}

.swiper-slide-active .btn-booking {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.btn-booking:hover {
    background: transparent;
    color: white;
    transform: translate3d(0, -5px, 30px) scale(1.05);
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.btn-booking:hover::before {
    transform: translateX(100%) rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-content {
        padding: 0 15px;
    }

    .slide-content h2 {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .slide-content p {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
    }
}

/* Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-color) !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    transform: scale(0.8) translateZ(-20px);
}

.hero-slider:hover .swiper-button-next,
.hero-slider:hover .swiper-button-prev {
    opacity: 1;
    transform: scale(1) translateZ(0);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.2) translateZ(20px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid white;
    transform: translateZ(-50px);
    opacity: 0;
    transition: all 0.5s ease;
}

.swiper-pagination-bullet-active::before {
    opacity: 1;
    transform: translateZ(0);
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-color), #1a2634);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
    margin-right: 10px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.rating .stars {
    color: #ffd700;
    margin: 0.5rem 0;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.services-links {
    column-count: 2;
    column-gap: 2rem;
}

.additional-services {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tags a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.service-tags a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-links {
        column-count: 1;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .additional-services {
        padding: 1rem;
    }

    .booking-page {
        padding: 1rem;
    }

    #map {
        height: 400px;
        margin-top: 2rem;
    }
}

/* Booking Form Styles */
.booking-page {
    background: linear-gradient(rgba(44, 62, 80, 0.05), rgba(52, 152, 219, 0.05));
    border-radius: 20px;
    padding: 2rem;
}

.booking-form {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

#map {
    height: 600px;
    border-radius: 10px;
}

.input-group-text {
    background: transparent;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

.input-group .form-control:focus + .input-group-text {
    border-color: #dee2e6;
}

/* Booking Form Page */
.booking-form-page {
    background: linear-gradient(rgba(44, 62, 80, 0.05), rgba(52, 152, 219, 0.05));
    border-radius: 20px;
    padding: 2rem;
}

.booking-form {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

#map {
    height: 600px;
    border-radius: 10px;
}

.input-group-text {
    background: transparent;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

.input-group .form-control:focus + .input-group-text {
    border-color: #dee2e6;
}

@media (max-width: 768px) {
    .booking-form-page {
        padding: 1rem;
    }

    #map {
        height: 400px;
        margin-top: 2rem;
    }
}

/* Bookings Page */
.bookings-page {
    background: linear-gradient(rgba(44, 62, 80, 0.05), rgba(52, 152, 219, 0.05));
    border-radius: 20px;
    padding: 2rem;
}

.booking-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.booking-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.booking-table th {
    border: none;
    padding: 1rem;
    font-weight: 500;
}

.booking-table td {
    padding: 1rem;
    vertical-align: middle;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.btn-group .btn {
    border-radius: 8px;
    margin: 0 2px;
}

.btn-group .btn i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .bookings-page {
        padding: 1rem;
    }

    .table-responsive {
        border-radius: 15px;
        overflow: hidden;
    }
}

/* Loading Animation */
.loading {
    overflow: hidden;
}

.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.loading.loaded::before {
    opacity: 0;
    pointer-events: none;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #dc3545, #f86781);
    color: white;
}

.alert .btn-close {
    color: white;
    opacity: 1;
    text-shadow: none;
}

/* Home Page */
.main-wrapper {
    min-height: 100vh;
    background-color: #fff;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide-inner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.slide-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.slide-content .animate__animated {
    animation-delay: 0.5s;
}

.btn-booking {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.btn-booking h6 {
    font-size: 1rem;
    margin: 10px 0 0;
    font-weight: 400;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    padding: 60px 0 30px;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #fff;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

.rating {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.stars {
    color: #f1c40f;
    margin: 10px 0;
}

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

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

.services-links {
    column-count: 2;
    column-gap: 30px;
}

.additional-services {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tags a {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-tags a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2rem;
    }

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

    .services-links {
        column-count: 1;
    }

    .footer {
        padding: 40px 0 20px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
    transform: translateY(100%);
}
.service-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

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

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.service-card:hover .service-icon {
    background: white;
    transform: rotateY(360deg);
}

.service-card:hover h3,
.service-card:hover p {
    color: white;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card p {
    color: #666;
    margin-bottom: 0;
    transition: var(--transition);
    font-size: 1.1rem;
}


/* Features Section */
.features-section {
    background-color: #fff;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    height: 100%;
    border: 2px solid transparent;
}

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

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

.feature-card:hover .feature-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.step-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-card h4 {
    color: var(--accent-color);
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(rgba(0, 123, 255, 0.9), rgba(0, 123, 255, 0.9)), url('../images/taxi1.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cta-buttons .btn-primary {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #fff;
}

.cta-buttons .btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

.cta-buttons .btn-outline-primary {
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn-outline-primary:hover {
    background-color: #fff;
    color: #007bff;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card, .feature-card {
        margin-bottom: 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
}

/* Map Section */
.map-section {
    background-color: #fff;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .map-container iframe {
        height: 300px;
    }
}
