:root {
    --primary-color: #E31E24;
    --secondary-color: #1a1a1a;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--secondary-color) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--secondary-color) !important;
    font-size: 1.05rem;
    margin: 0 12px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    opacity: 1;
    transform: translateY(-1px);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    border-radius: 10px;
    transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: #ffd700;
    margin-right: 8px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, #E31E24 0%, #ff6b6b 50%, #ffd700 100%);
    -webkit-background-clip: text;
    color: rgba(255, 255, 255, 0.9) !important;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.highlight-text {
    color: #ffd700;
    font-weight: 600;
    padding: 0 5px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    color: #4ade80;
    font-size: 1.2rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Booking Card */
.booking-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 25px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    overflow: hidden;
    animation: cardFloatIn 0.8s ease-out;
}

@keyframes cardFloatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-card .card-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41217 100%);
    color: white !important;
    padding: 1.2rem !important;
    margin: -1rem -1rem 1.5rem -1rem !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.booking-card .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.booking-card .form-control,
.booking-card .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(227, 30, 36, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.booking-card .form-check-input {
    width: 1.3rem;
    height: 1.3rem;
    border: 2px solid #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-card .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.3);
}

.booking-card .form-check-label {
    margin-left: 0.6rem;
    font-weight: 500;
    cursor: pointer;
}

.booking-card .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41217 100%);
    border: none;
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booking-card .btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(227, 30, 36, 0.5);
}

.booking-card .btn-outline-dark {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    border-width: 2px;
}

.booking-card .btn-outline-dark:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
}

/* Choices.js */
.choices__inner.is-invalid {
    border-color: #dc3545;
}

/* About section */
.about-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
}

/* Why Choose Us */
.why-choose-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(227, 30, 36, 0.4);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-title {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.feature-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.why-choose-section h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.why-choose-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    border-radius: 2px;
}

/* Pricing */
.pricing-section {
    position: relative;
    background: linear-gradient(-45deg, #f8f9fa, #e3e7ed, #f0f4f8, #dde5ef);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.pricing-section .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    margin-top: 30px;
}

.pricing-section .card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-section .card img {
    border-radius: 10px;
    transition: transform 0.4s ease;
    max-height: 180px;
    object-fit: cover;
}

.pricing-section .card:hover img {
    transform: scale(1.1);
}

.pricing-section .card-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1rem;
    font-size: 1.5rem;
}

.pricing-section .card-text {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-section .card-body {
    padding: 2rem 1.5rem;
}

.pricing-section h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.pricing-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    border-radius: 2px;
}

.driver-info {
    display: inline-block;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 10px 20px;
    border-radius: 25px;
    margin: 15px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.driver-info i {
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 1rem;
}

.pricing-section .card:hover .driver-info {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.15);
}

.price-tag {
    font-size: 1.5rem;
    margin: 15px 0;
}

.pricing-section .btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing-section .btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
}

.pricing-section .btn-success:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.pricing-section .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-section .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.pricing-section .btn i {
    margin-right: 5px;
}

/* Mobile Buttons */
.mobile-action-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    padding: 12px;
    gap: 12px;
}

@media (max-width: 768px) {
    .mobile-action-buttons {
        display: flex;
    }
}

.mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.mobile-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mobile-btn:active::before {
    width: 300px;
    height: 300px;
}

.mobile-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-btn:hover i {
    transform: scale(1.15);
}

.mobile-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulseGreen 2s ease-in-out infinite;
}

@keyframes pulseGreen {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
}

.mobile-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.mobile-btn-call {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41217 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
    animation: pulseRed 2s ease-in-out infinite;
}

@keyframes pulseRed {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
    }

    50% {
        box-shadow: 0 6px 25px rgba(227, 30, 36, 0.6);
    }
}

.mobile-btn-call:hover {
    background: linear-gradient(135deg, #c41217 0%, #a00f13 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.5);
    color: white;
}

/* Modal */
.modal-dialog {
    max-width: 600px;
}

.modal-content {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.85);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41217 100%);
    color: white;
    padding: 2rem 2.5rem;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(-10px);
    }
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.modal-header .modal-title::before {
    content: '🚗';
    margin-right: 12px;
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.modal-header .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

#modalBookingForm .mb-3 {
    margin-bottom: 1.5rem !important;
}

#modalBookingForm .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

#modalBookingForm .form-label::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

#modalBookingForm .form-control,
#modalBookingForm .form-select {
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    padding: 0.9rem 1.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#modalBookingForm .form-control:focus,
#modalBookingForm .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(227, 30, 36, 0.12), 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    background: #ffffff;
}

#modalBookingForm .form-control:hover,
#modalBookingForm .form-select:hover {
    border-color: #d0d0d0;
}

#modalBookingForm .form-check-input {
    width: 1.3rem;
    height: 1.3rem;
    border: 2px solid #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#modalBookingForm .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(227, 30, 36, 0.35);
}

#modalBookingForm .form-check-label {
    margin-left: 0.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

#modalBookingForm .form-check-input:checked+.form-check-label {
    color: var(--primary-color);
    font-weight: 600;
}

#modalBookingForm .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

#modalBookingForm .btn-primary:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

#modalBookingForm .btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

#modalBookingForm .btn-primary i {
    margin-right: 8px;
    font-size: 1.3rem;
}

/* Invalid feedback styling */
#modalBookingForm .invalid-feedback {
    font-size: 0.85rem;
    margin-top: 0.4rem;
    font-weight: 500;
}

/* Rotating Word Animation */
.rotating-word-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
    min-width: 200px;
    height: 1.2em;
}

.rotating-word {
    display: inline-block;
    position: absolute;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.5s ease;
    color: #ffd700;
    font-weight: 700;
}