/* =======================
   MODERN HOMEPAGE STYLES
   ======================= */

/* Modern Hero Section */
.modern-hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.05;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e8b923, #d4af37);
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #e8b923, #d4af37);
    bottom: -80px;
    left: -80px;
    animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #e8b923, #d4af37);
    top: 50%;
    left: 50%;
    animation: float 30s infinite ease-in-out;
}

.hero-content-wrapper {
    z-index: 3;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 185, 35, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 185, 35, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    animation: pulse-glow 3s infinite;
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #e8b923;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(232, 185, 35, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(232, 185, 35, 0.5);
    }
}

/* Hero Title */
.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #e8b923 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

/* Hero Description */
.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #e8b923 0%, #d4af37 100%);
    color: #0a2540;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(232, 185, 35, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modern-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(232, 185, 35, 0.6);
    color: #0a2540;
    text-decoration: none;
}

.btn-modern-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modern-secondary:hover {
    background: rgba(232, 185, 35, 0.2);
    border-color: #e8b923;
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.trust-item i {
    color: #e8b923;
    font-size: 18px;
}

/* Modern Booking Card */
.booking-card-modern {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(232, 185, 35, 0.1);
    transition: all 0.4s ease;
}

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

.booking-card-modern .booking-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8b923 0%, #d4af37 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-icon i {
    color: #ffffff;
    font-size: 24px;
}

.booking-card-modern .booking-card-header h5 {
    font-size: 22px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 4px;
}

.booking-card-modern .booking-card-header p {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.booking-card-modern .section-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-card-modern .section-label i {
    color: #e8b923;
    font-size: 14px;
}

/* Vehicle Type Section */
.booking-card-modern .vehicle-type-section {
    margin-bottom: 20px;
}

.booking-card-modern .vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.booking-card-modern .vehicle-option-wrapper {
    position: relative;
}

.booking-card-modern .vehicle-option-wrapper input[type="radio"] {
    display: none;
}

.booking-card-modern .vehicle-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.booking-card-modern .vehicle-option-card:hover {
    border-color: #e8b923;
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 185, 35, 0.15);
}

.booking-card-modern .vehicle-option-wrapper input[type="radio"]:checked+.vehicle-option-card {
    background: linear-gradient(135deg, #e8b923 0%, #d4af37 100%);
    border-color: #e8b923;
    color: #fff;
    box-shadow: 0 8px 25px rgba(232, 185, 35, 0.3);
    transform: translateY(-3px);
}

.booking-card-modern .vehicle-icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.booking-card-modern .vehicle-option-wrapper input[type="radio"]:checked+.vehicle-option-card .vehicle-icon-box {
    background: rgba(255, 255, 255, 0.25);
}

.booking-card-modern .vehicle-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.booking-card-modern .vehicle-label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.booking-card-modern .vehicle-option-wrapper input[type="radio"]:checked+.vehicle-option-card .vehicle-label {
    color: #fff;
}

/* Vehicle Carousel Selected State Fix */
.vehicle-carousel-container .vehicle-option-wrapper input[type="radio"]:checked+.vehicle-option-card {
    background: linear-gradient(135deg, #e8b923 0%, #d4af37 100%) !important;
    border-color: #e8b923 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(232, 185, 35, 0.3) !important;
    transform: translateY(-3px) !important;
}

.vehicle-carousel-container .vehicle-option-wrapper input[type="radio"]:checked+.vehicle-option-card .vehicle-icon-box {
    background: rgba(255, 255, 255, 0.25) !important;
}

.vehicle-carousel-container .vehicle-option-wrapper input[type="radio"]:checked+.vehicle-option-card .vehicle-label {
    color: #fff !important;
}

.vehicle-carousel-container .vehicle-option-wrapper input[type="radio"]:checked+.vehicle-option-card img {
    filter: brightness(0) invert(1) !important;
}

/* Form Section */
.booking-card-modern .form-section {
    margin-bottom: 18px;
}

.booking-card-modern .form-group {
    margin-bottom: 12px;
}

.booking-card-modern .location-group {
    margin-bottom: 12px;
}

.booking-card-modern .date-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.booking-card-modern .input-modern {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
    color: #0a2540;
}

.booking-card-modern .input-modern:focus {
    border-color: #e8b923;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(232, 185, 35, 0.1);
}

.booking-card-modern .input-modern::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Submit Button */
.booking-card-modern .btn-search-modern {
    background: linear-gradient(135deg, #e8b923 0%, #d4af37 100%);
    color: #0a2540;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(232, 185, 35, 0.25);
}

.booking-card-modern .btn-search-modern:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #e8b923 100%);
    box-shadow: 0 12px 30px rgba(232, 185, 35, 0.4);
    transform: translateY(-2px);
}

.booking-card-modern .btn-search-modern:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .modern-hero-section {
        min-height: 55vh;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .booking-card-modern .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-card-modern {
        padding: 25px;
        margin-top: 40px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modern-hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .booking-card-modern .date-row {
        grid-template-columns: 1fr;
    }

    .booking-card-modern {
        padding: 20px;
    }

    .booking-card-modern .vehicle-label {
        font-size: 11px;
    }

    .hero-trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}