/* ============================================
   ROOT VARIABLES & GLOBAL STYLES
   ============================================ */
:root {
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --secondary-gradient: linear-gradient(135deg, #ec4899 0%, #ef4444 100%);
    --success-gradient: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    --warning-gradient: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --info-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --dark-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --card-shadow: 0 10px 40px rgba(0,0,0,0.15);
    --card-hover-shadow: 0 15px 50px rgba(0,0,0,0.25);
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-x: hidden;
}

section {
    opacity: 1 !important;
    visibility: visible !important;
    padding: 4rem 0 !important;
}

.container {
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Section Specific Padding */
.hero-section {
    padding: 0 0 2rem !important;
    min-height: auto;
}

.special-offers-section,
.package-section,
.explore-destinations-section,
.features-section,
.about-section,
.download-section,
.contact-section {
    padding: 4rem 0 !important;
}




/* Ensure split screen is hidden by default */
.split-screen-2026 {
    display: none;
    position: relative;
    z-index: 4;
    max-width: 1400px;
    width: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    min-height: 700px;
    margin: 0 auto;
}

.split-screen-2026.active {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
}



/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
    z-index: 1030;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hamburger-btn {
    background: rgba(255,255,255,0.25);
    border: none;
    color: white;
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    font-size: 1.25rem;
    transition: all 0.3s;
    cursor: pointer;
}

.hamburger-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.05);
}

.mobile-sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 20px rgba(0,0,0,0.15);
    transition: left 0.3s ease;
    z-index: 1040;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    background: var(--primary-gradient);
    padding: 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
}

.sidebar-close:hover {
    background: rgba(255,255,255,0.3);
}

.sidebar-menu {
    padding: 0.5rem 0;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.sidebar-menu-item:hover,
.sidebar-menu-item.active {
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.1) 0%, transparent 100%);
    color: #4f46e5;
    border-left-color: #4f46e5;
}

.sidebar-menu-item i {
    margin-right: 0.75rem;
    font-size: 1.15rem;
    width: 24px;
    text-align: center;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1035;
    backdrop-filter: blur(2px);
}

.sidebar-overlay.active {
    display: block;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    padding: 0.75rem 0;
    z-index: 1020;
    border-top: 1px solid #e2e8f0;
}

.bottom-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.bottom-nav-item.active {
    color: #4f46e5;
    font-weight: 600;
}

.bottom-nav-item:hover {
    color: #4f46e5;
}

.bottom-nav-item i {
    font-size: 1.35rem;
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: visible;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 0 0 2rem !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.08;
}

/* ============================================
   SERVICE ICONS HEADER - MAKEMYTRIP STYLE
   ============================================ */
.services-header-container {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto 0;
    padding: 0 1rem;
}

.services-header {
    background: white;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 2px solid rgba(79, 70, 229, 0.08);
    background: linear-gradient(to bottom, #ffffff 0%, #fafbff 100%);
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: headerGlossyShine 4s infinite;
}

@keyframes headerGlossyShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    min-width: 80px;
    z-index: 1;
}

.service-icon-item:hover {
    transform: translateY(-3px);
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: 12px 12px 0 0;
}

.service-icon-box i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-icon-item:hover .service-icon-box {
    transform: scale(1.08);
}

.service-icon-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a5568;
    text-align: center;
    line-height: 1.2;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Individual Service Colors */
.service-icon-item[data-service="flights"] .service-icon-box {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.service-icon-item[data-service="flights"]:hover .service-icon-box {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.service-icon-item[data-service="flights"].active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.05) 100%);
}

.service-icon-item[data-service="flights"].active span {
    color: #2563eb;
}

.service-icon-item[data-service="hotels"] .service-icon-box {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.service-icon-item[data-service="hotels"]:hover .service-icon-box {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.4);
}

.service-icon-item[data-service="hotels"].active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(196, 181, 253, 0.05) 100%);
}

.service-icon-item[data-service="hotels"].active span {
    color: #9333ea;
}

.service-icon-item[data-service="cabs"] .service-icon-box {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.service-icon-item[data-service="cabs"]:hover .service-icon-box {
    background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.4);
}

.service-icon-item[data-service="cabs"].active {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(251, 207, 232, 0.05) 100%);
}

.service-icon-item[data-service="cabs"].active span {
    color: #db2777;
}

.service-icon-item[data-service="trains"] .service-icon-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.service-icon-item[data-service="trains"]:hover .service-icon-box {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.service-icon-item[data-service="trains"].active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(167, 243, 208, 0.05) 100%);
}

.service-icon-item[data-service="trains"].active span {
    color: #059669;
}

.service-icon-item[data-service="buses"] .service-icon-box {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.service-icon-item[data-service="buses"]:hover .service-icon-box {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.service-icon-item[data-service="buses"].active {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(253, 186, 116, 0.05) 100%);
}

.service-icon-item[data-service="buses"].active span {
    color: #ea580c;
}

.service-icon-item[data-service="packages"] .service-icon-box {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.service-icon-item[data-service="packages"]:hover .service-icon-box {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.service-icon-item[data-service="packages"].active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(253, 230, 138, 0.05) 100%);
}

.service-icon-item[data-service="packages"].active span {
    color: #d97706;
}

.new-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.6rem;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

/* ============================================
   2026 SPLIT SCREEN BOOKING SYSTEM
   ============================================ */
.split-screen-2026 {
    display: none;
    position: relative;
    z-index: 4;
    max-width: 1320px;
    width: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    min-height: 700px;
    margin: 0 auto 2rem;
}

.split-screen-2026.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.split-left-carousel {
    position: relative;
    background: #1e293b;
    overflow: hidden;
}

.carousel-2026-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.carousel-2026-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-2026-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-2026-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-2026-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 20;
}

.carousel-2026-nav:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-2026-nav.prev {
    left: 15px;
}

.carousel-2026-nav.next {
    right: 15px;
}

.carousel-2026-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.carousel-2026-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-2026-indicator.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

.split-right-form {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem 2.5rem;
    overflow-y: auto;
    max-height: 700px;
}

.form-header-2026 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header-2026 h2 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.form-header-2026 p {
    color: #64748b;
    font-size: 1rem;
}

.form-tabs-2026 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-tab-btn {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-tab-btn i {
    font-size: 1.1rem;
}

.form-tab-btn:hover {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.form-tab-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.form-content-2026 {
    position: relative;
}

.form-pane-2026 {
    display: none;
}

.form-pane-2026.active {
    display: block;
    animation: fadeInForm 0.4s ease;
}

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group-2026 {
    margin-bottom: 1.5rem;
}

.form-group-2026 label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

.form-group-2026 label .required {
    color: #ef4444;
    margin-left: 2px;
}

.form-control-2026 {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-control-2026:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-control-2026::placeholder {
    color: #94a3b8;
}

select.form-control-2026 {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.counter-group {
    display: flex;
    gap: 1rem;
}

.counter-item {
    flex: 1;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
    color: #64748b;
}

.counter-btn:hover {
    border-color: #4f46e5;
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.05);
}

.counter-value {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
}

.submit-btn-2026 {
    width: 100%;
    padding: 1.125rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.submit-btn-2026:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.submit-btn-2026 i {
    font-size: 1.2rem;
}

.submit-btn-2026:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.success-modal.active {
    display: flex;
}

.success-modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPulse 0.5s ease;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-icon i {
    font-size: 2rem;
    color: white;
}

.success-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.success-modal-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal-close-btn {
    padding: 0.75rem 2.5rem;
    background: linear-gradient(135deg, #008cff 0%, #0066cc 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 140, 255, 0.4);
}

/* ============================================
   BOOKING CARD - MAKEMYTRIP STYLE
   ============================================ */
.booking-card-mmt {
    position: sticky;
    top: 60px;
    z-index: 99;
    background: white;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    max-width: 1320px;
    width: 100%;
    overflow: visible;
    margin: 0 auto 2rem;
}

.service-tabs-mmt {
    background: #f8f9fa;
    padding: 0.75rem 2rem;
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #e6e6e6;
}

.service-tab-mmt {
    background: none;
    border: none;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-tab-mmt:hover {
    color: #008cff;
}

.service-tab-mmt.active {
    color: #008cff;
    border-bottom-color: #008cff;
}

.service-tab-mmt i {
    font-size: 1.1rem;
}

.service-content-mmt {
    display: none;
}

.service-content-mmt.active {
    display: block;
}

.trip-type-selector {
    background: white;
    padding: 1.25rem 2rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-bottom: 1px solid #e6e6e6;
}

.trip-radio-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a4a4a;
    margin: 0;
    user-select: none;
}

.trip-radio-btn input[type="radio"] {
    display: none;
}

.trip-radio-btn i {
    font-size: 1.1rem;
    color: #ccc;
}

.trip-radio-btn.active i {
    color: #008cff;
}

.trip-radio-btn.active span {
    color: #008cff;
}

.international-notice {
    margin-left: auto;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.booking-fields-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 1.5fr 2fr;
    background: white;
}

.booking-field {
    padding: 1.25rem 1.5rem;
    border-right: 1px solid #e6e6e6;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 90px;
}

.booking-field:last-child {
    border-right: none;
}

.booking-field:hover {
    background: #f8f9fa;
}

.field-label {
    font-size: 0.75rem;
    color: #9e9e9e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.field-label i {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.field-content {
    position: relative;
}

.city-input {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    border: none;
    background: transparent;
    width: 100%;
    padding: 0;
    outline: none;
}

.city-code {
    font-size: 0.8rem;
    color: #9e9e9e;
    margin-top: 0.25rem;
    font-weight: 500;
}

.date-display-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.date-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    min-width: 40px;
}

.date-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.date-text span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4a4a4a;
}

.date-text small {
    font-size: 0.75rem;
    color: #9e9e9e;
    font-weight: 500;
}

.tap-text {
    font-size: 0.8rem;
    color: #9e9e9e;
    line-height: 1.4;
    display: block;
    padding: 0.5rem;
}

.date-input-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.travellers-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.traveller-count {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.traveller-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.traveller-text span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4a4a4a;
}

.traveller-text small {
    font-size: 0.75rem;
    color: #9e9e9e;
    font-weight: 500;
}

.swap-icon {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.swap-icon:hover {
    background: #008cff;
    border-color: #008cff;
}

.swap-icon:hover i {
    color: white;
}

.swap-icon i {
    font-size: 0.85rem;
    color: #666;
}

/* Travellers & Hotel Dropdowns */
.travellers-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e6e6e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
}

.traveller-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.traveller-row:last-child {
    border-bottom: none;
}

.traveller-row span:first-child {
    font-weight: 600;
    color: #4a4a4a;
}

.counter-controls-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-controls-inline button {
    width: 32px;
    height: 32px;
    border: 1px solid #d0d0d0;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    color: #008cff;
    transition: all 0.2s;
}

.counter-controls-inline button:hover {
    background: #008cff;
    color: white;
    border-color: #008cff;
}

.counter-controls-inline span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.traveller-row select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.dropdown-done-btn {
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-done-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Autocomplete Suggestions */
.autocomplete-suggestions-mmt {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e6e6e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 0;
}

.autocomplete-suggestions-mmt.active {
    display: block;
}

.autocomplete-item-mmt {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.autocomplete-item-mmt:hover {
    background: #f0f7ff;
    color: #008cff;
}

.autocomplete-item-mmt:last-child {
    border-bottom: none;
}

.autocomplete-item-mmt strong {
    display: block;
    font-size: 0.95rem;
}

.autocomplete-item-mmt small {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 2px;
}

.search-button-container {
    padding: 1.5rem 2rem;
    background: white;
    text-align: center;
}

.btn-search-mmt {
    background: linear-gradient(93deg, #53b2fe 0%, #065af3 100%);
    color: white;
    border: none;
    padding: 1rem 5rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(5, 90, 243, 0.3);
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-search-mmt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 90, 243, 0.4);
}

.btn-search-mmt:active {
    transform: translateY(0);
}

/* Cab Sub Tabs */
.cab-sub-tabs {
    background: white;
    padding: 1rem 2rem 0;
    display: flex;
    gap: 1rem;
}

.cab-sub-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: none;
}

.cab-sub-tab:hover {
    background: #e7f3ff;
    border-color: #008cff;
    color: #008cff;
}

.cab-sub-tab.active {
    background: white;
    border-color: #008cff #008cff white #008cff;
    color: #008cff;
}

.cab-form-content {
    display: none;
}

.cab-form-content.active {
    display: block;
}

.hotel-fields {
    grid-template-columns: 2fr 1.25fr 1.25fr 1.5fr !important;
}

.cab-fields {
    grid-template-columns: repeat(5, 1fr) !important;
}

.cab-fields .route-field-wide {
    grid-column: span 2 !important;
}

.phone-field {
    grid-column: span 1;
}

.bus-fields {
    grid-template-columns: 1.5fr 1.5fr 1fr !important;
}

.city-field-wide {
    grid-column: span 1;
}

.route-field-wide {
    grid-column: span 2;
}

.date-input-visible,
.time-input-visible,
.select-input-mmt {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    background: white;
    cursor: pointer;
}

.date-input-visible:focus,
.time-input-visible:focus,
.select-input-mmt:focus {
    outline: none;
    border-color: #008cff;
    box-shadow: 0 0 0 3px rgba(0, 140, 255, 0.1);
}

.select-input-mmt {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.location-icon-inline {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008cff;
    pointer-events: none;
}

.booking-field .city-input {
    padding-left: 40px;
}

.phone-field-compact {
    flex: 0 0 180px;
    max-width: 180px;
}

.phone-field-compact .city-input {
    font-size: 1rem;
    padding: 0.75rem 0.875rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.trip-type-field {
    flex: 1;
    min-width: 300px;
}

.trip-type-field .fare-option {
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.trip-type-field .fare-option:hover {
    border-color: #4f46e5;
    background: #f8f9ff;
    color: #4f46e5;
}

.trip-type-field .fare-option.active {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    border-color: #4f46e5;
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.trip-type-field .fare-option input[type="radio"] {
    display: none;
}

.return-date-field {
    flex: 1;
    min-width: 250px;
}

/* Coming Soon Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: modalSlideIn 0.3s;
}

.modal-icon {
    font-size: 4rem;
    color: #6366f1;
    margin-bottom: 1.5rem;
    animation: rocketFloat 2s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modal-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.launch-date {
    font-size: 1.25rem;
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   MAKEMYTRIP OFFERS SECTION
   ============================================ */
.special-offers-section {
    padding: 4rem 0;
    background: #f4f4f4;
}

.offer-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.offer-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    transform: translateY(-6px);
}

/* Large Offer Card */
.offer-card-large {
    position: relative;
    min-height: 320px;
}

.offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
}

.offer-content {
    padding: 3rem 2.5rem;
}

.offer-category {
    color: #008cff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.offer-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.offer-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff3e0;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.75rem;
}

.offer-highlight i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.offer-highlight span {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.95rem;
}

.offer-btn {
    display: inline-block;
    background: linear-gradient(135deg, #008cff 0%, #0066cc 100%);
    color: white;
    padding: 0.95rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 140, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 140, 255, 0.45);
    color: white;
}

.offer-btn i {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.offer-terms {
    margin-top: 1.25rem;
    font-size: 0.7rem;
    color: #999;
    font-weight: 500;
    font-style: italic;
}

.offer-image {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    border-radius: 0 16px 16px 0;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card-large:hover .offer-image img {
    transform: scale(1.12);
}

/* Small Offer Cards */
.offer-card-small {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    position: relative;
}

.offer-badge-small {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.4);
    text-transform: uppercase;
}

.offer-content-small {
    padding: 1.75rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-category-small {
    color: #008cff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.offer-title-small {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.offer-desc-small {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.offer-highlight-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f9ff;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    margin-top: auto;
}

.offer-highlight-small i {
    color: #0ea5e9;
    font-size: 1.1rem;
}

.offer-highlight-small span {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.9rem;
}

.offer-btn-small {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-btn-small:hover {
    background: #008cff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 140, 255, 0.35);
    color: white;
}

.offer-btn-small i {
    margin-left: 0.4rem;
    font-size: 0.8rem;
}

.offer-image-small {
    height: 140px;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}

.offer-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card-small:hover .offer-image-small img {
    transform: scale(1.15);
}

/* ============================================
   EXPLORE DESTINATIONS SECTION - FIXED IMAGE SIZES
   ============================================ */
.explore-destinations-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.explore-section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.explore-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3.5rem;
    font-weight: 500;
}

.destination-slider-container {
    margin-bottom: 4.5rem;
}

.destination-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.destination-slider-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.destination-slider-title i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.view-all-btn {
    padding: 0.85rem 2.25rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    font-size: 0.95rem;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    color: white;
}

.destination-slider {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0;
}

.destination-slider-track {
    display: flex;
    gap: 1.75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 0.75rem 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.destination-slider-track::-webkit-scrollbar {
    display: none;
}

/* FIXED: Uniform card dimensions */
.destination-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    height: 280px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.25);
}

/* FIXED: Uniform image sizing */
.destination-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
}

.destination-card:hover .destination-card-image {
    transform: scale(1.15);
}

.destination-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    padding: 1.75rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.destination-card:hover .destination-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
}

.destination-card-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.destination-card-country {
    color: #fcd34d;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.destination-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    color: #2d3436;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
}

/* Different badge colors for different types */
.destination-card-badge:has(.fa-plane) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.destination-card-badge:has(.fa-gem) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.destination-card-badge:has(.fa-user-friends) {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.slider-nav-btn i {
    font-size: 1.6rem;
}

.slider-nav-btn.prev {
    left: -27px;
}

.slider-nav-btn.next {
    right: -27px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 2.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-gradient);
    width: 36px;
    border-radius: 6px;
}

/* Mobile Responsive for Destination Sliders */
@media (max-width: 768px) {
    .destination-card {
        flex: 0 0 240px;
        min-width: 240px;
        max-width: 240px;
        height: 240px;
    }
    
    .destination-card-title {
        font-size: 1.2rem;
    }
    
    .destination-card-country {
        font-size: 0.9rem;
    }
    
    .destination-card-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .destination-card {
        flex: 0 0 220px;
        min-width: 220px;
        max-width: 220px;
        height: 220px;
    }
    
    .destination-slider-track {
        gap: 1rem;
    }
    
    .destination-card-title {
        font-size: 1.1rem;
    }
    
    .destination-card-country {
        font-size: 0.85rem;
    }
}

/* ============================================
   IMPROVED PACKAGE SECTIONS - PROFESSIONAL DESIGN
   ============================================ */

/* Section Title Enhancement */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 2px;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3.5rem;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Package Card */
.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.1);
}

/* Image Container with Overlay */
.package-card-img-container {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.package-card-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-card:hover .package-card-img-container::after {
    opacity: 1;
}

.package-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-card-img-container img {
    transform: scale(1.15) rotate(2deg);
}

/* Professional Badges */
.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.package-badge i {
    font-size: 0.85rem;
}

/* Badge Variations */
.badge-popular {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.badge-trending {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.badge-bestseller {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.badge-updated {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.badge-featured {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
}

/* Rating Stars */
.package-rating {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.package-card:hover .package-rating {
    opacity: 1;
    transform: translateY(0);
}

.package-rating i {
    color: #fbbf24;
    font-size: 0.85rem;
}

.package-rating span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
}

/* Package Card Body */
.package-card-body {
    padding: 1.75rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.package-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.package-card:hover .package-title {
    color: #4f46e5;
}

/* Package Meta Info */
.package-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.package-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.package-meta-item i {
    color: #4f46e5;
    font-size: 1rem;
}

/* Package Price */
.package-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.8rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.price-original {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.price-discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-left: auto;
}

/* Package Features */
.package-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Enhanced Buttons */
.package-card-body .btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 800;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.package-card-body .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 ease, height 0.6s ease;
}

.package-card-body .btn:hover::before {
    width: 300px;
    height: 300px;
}

.package-card-body .btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border: none;
    color: white;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.5);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    color: white;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border: none;
    color: white;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5);
    color: white;
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255, 255, 255, 0.95);
    color: #4f46e5;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid #4f46e5;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.package-card:hover .quick-view-btn {
    transform: translate(-50%, -50%) scale(1);
}

.quick-view-btn:hover {
    background: #4f46e5;
    color: white;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Section Background Variations */
.package-section:nth-child(odd) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.package-section:nth-child(even) {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .package-card-img-container {
        height: 220px;
    }
    
    .package-title {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .package-card-img-container {
        height: 200px;
    }
    
    .package-title {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .package-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .package-card-img-container {
        height: 180px;
    }
    
    .package-card-body {
        padding: 1.25rem;
    }
    
    .package-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .package-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
    
    .package-badge {
        top: 10px;
        right: 10px;
        font-size: 0.65rem;
        padding: 5px 10px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .package-card-img-container {
        height: 160px;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .package-card-body .btn {
        padding: 0.85rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   SINGLE ROW LAYOUTS
   ============================================ */

/* Special Offers Single Row Layout */
@media (min-width: 769px) {
    .special-offers-section .row.single-row-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .special-offers-section .row.single-row-layout > [class*='col-'] {
        grid-column: span 1;
        max-width: 100%;
        flex: none;
    }
}

/* Package Sections Single Row Layout */
@media (min-width: 769px) {
    .package-section .row.four-column-layout {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .package-section .row.four-column-layout > [class*='col-'] {
        grid-column: span 1;
        max-width: 100%;
        flex: none;
    }
}

/* Features Section Single Row Layout */
@media (min-width: 769px) {
    .features-section .row.four-column-layout {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .features-section .row.four-column-layout > [class*='col-'] {
        grid-column: span 1;
        max-width: 100%;
        flex: none;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--primary-gradient);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
}

.features-section .section-title {
    color: white;
    -webkit-text-fill-color: white;
}

.features-section .section-title::after {
    background: white;
}

.feature-card {
    background: rgba(255,255,255,0.98);
    border-radius: 20px;
    padding: 2.75rem 2.25rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,255,255,0.3);
}

.feature-card:hover {
    background: white;
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    border-color: white;
}

.feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.75rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: white;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.feature-card h5 {
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.35rem;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION - TWO COLUMN LAYOUT
   ============================================ */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--primary-gradient);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.35);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(99, 102, 241, 0.45);
}

.stat-card.stat-card-secondary {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.35);
}

.stat-card.stat-card-secondary:hover {
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.45);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

/* ============================================
   DOWNLOAD SECTION - TWO COLUMN LAYOUT
   ============================================ */
.download-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.download-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.download-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 2rem;
}

.download-badge {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.download-badge:hover {
    transform: scale(1.05);
}

.download-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.app-image:hover {
    transform: translateY(-10px);
}

/* ============================================
   CONTACT SECTION - TWO COLUMN LAYOUT
   ============================================ */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    transition: all 0.3s;
    font-size: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.contact-info-wrapper h3 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-item h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-item h6 i {
    color: #4f46e5;
    font-size: 1.1rem;
    width: 20px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    padding-left: 30px;
}

.contact-info-item p:last-child {
    margin-bottom: 0;
}

.contact-info-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #4f46e5;
}

.btn-search {
    background: linear-gradient(135deg, #008cff 0%, #0066cc 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 140, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 140, 255, 0.4);
    background: linear-gradient(135deg, #0077ee 0%, #0055bb 100%);
}

.btn-search:active {
    transform: translateY(0);
}

.btn-search i {
    margin-right: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-content-wrapper,
    .download-content-wrapper,
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .download-content-wrapper {
        grid-template-columns: 1fr;
    }

    .download-image-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-section,
    .download-section,
    .contact-section {
        padding: 3rem 0;
    }

    .about-content-wrapper,
    .download-content-wrapper,
    .contact-content-wrapper {
        gap: 2rem;
    }

    .about-text-content h2,
    .download-text-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-description,
    .download-description {
        font-size: 1rem;
        text-align: center;
    }

    .stats-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat-card {
        padding: 1.75rem 1.25rem;
    }

    .stat-card h3 {
        font-size: 2.25rem;
    }

    .about-image,
    .app-image {
        max-width: 100%;
    }

    .contact-form,
    .contact-info-wrapper {
        padding: 1.75rem;
    }

    .contact-form h3,
    .contact-info-wrapper h3 {
        font-size: 1.75rem;
    }

    .contact-info-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-text-content h2,
    .download-text-content h2 {
        font-size: 1.75rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .stat-card p {
        font-size: 0.9rem;
    }

    .contact-form h3,
    .contact-info-wrapper h3 {
        font-size: 1.5rem;
    }

    .contact-info-item p {
        font-size: 0.9rem;
    }
}

.btn-search {
    background: linear-gradient(135deg, #008cff 0%, #0066cc 100%);
    border: none;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 140, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 140, 255, 0.4);
    background: linear-gradient(135deg, #0077ee 0%, #0055bb 100%);
}

.btn-search:active {
    transform: translateY(0);
}

.btn-search i {
    margin-right: 0.5rem;
}

/* ============================================
   ABSOLUTE FIX FOR 4 CARDS IN ONE ROW
   REPLACE THE ENTIRE BOOTSTRAP OVERRIDE SECTION AT THE END
   DELETE FROM "BOOTSTRAP GRID OVERRIDE" TO THE END
   THEN ADD THIS CODE INSTEAD
   ============================================ */

/* STEP 1: Force Bootstrap grid to behave */
.row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -12px !important;
    margin-left: -12px !important;
}

.row > * {
    flex-shrink: 0 !important;
    width: 100%;
    max-width: 100%;
    padding-right: 12px !important;
    padding-left: 12px !important;
    margin-bottom: 0 !important;
}

/* STEP 2: Override gap classes to prevent overflow */
.row.g-4 {
    margin-right: 0 !important;
    margin-left: 0 !important;
    gap: 0 !important;
    column-gap: 24px !important;
    row-gap: 24px !important;
}

.row.g-4 > * {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.row.g-3 {
    margin-right: 0 !important;
    margin-left: 0 !important;
    gap: 0 !important;
    column-gap: 16px !important;
    row-gap: 16px !important;
}

.row.g-3 > * {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.row.g-5 {
    margin-right: 0 !important;
    margin-left: 0 !important;
    gap: 0 !important;
    column-gap: 32px !important;
    row-gap: 32px !important;
}

.row.g-5 > * {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* STEP 3: Set exact column widths for DESKTOP (1200px+) */
@media (min-width: 1200px) {
    /* 4 columns layout - 25% each */
    .col-xl-3,
    .col-lg-3 {
        flex: 0 0 auto !important;
        width: 25% !important;
        max-width: 25% !important;
    }
    
    /* With g-4 gap, reduce width slightly */
    .row.g-4 .col-xl-3,
    .row.g-4 .col-lg-3 {
        width: calc(25% - 18px) !important;
        max-width: calc(25% - 18px) !important;
    }
    
    .row.g-3 .col-xl-3,
    .row.g-3 .col-lg-3 {
        width: calc(25% - 12px) !important;
        max-width: calc(25% - 12px) !important;
    }
    
    .row.g-5 .col-xl-3,
    .row.g-5 .col-lg-3 {
        width: calc(25% - 24px) !important;
        max-width: calc(25% - 24px) !important;
    }
    
    /* 3 columns layout - 33.333% each */
    .col-xl-4,
    .col-lg-4 {
        flex: 0 0 auto !important;
        width: 33.333333% !important;
        max-width: 33.333333% !important;
    }
    
    .row.g-4 .col-xl-4,
    .row.g-4 .col-lg-4 {
        width: calc(33.333333% - 16px) !important;
        max-width: calc(33.333333% - 16px) !important;
    }
    
    /* 2 columns layout - 50% each */
    .col-xl-6,
    .col-lg-6 {
        flex: 0 0 auto !important;
        width: 50% !important;
        max-width: 50% !important;
    }
    
    .row.g-4 .col-xl-6,
    .row.g-4 .col-lg-6 {
        width: calc(50% - 12px) !important;
        max-width: calc(50% - 12px) !important;
    }
}

/* STEP 4: Set widths for LAPTOP (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .col-lg-3 {
        flex: 0 0 auto !important;
        width: 25% !important;
        max-width: 25% !important;
    }
    
    .row.g-4 .col-lg-3 {
        width: calc(25% - 18px) !important;
        max-width: calc(25% - 18px) !important;
    }
    
    .col-lg-4 {
        flex: 0 0 auto !important;
        width: 33.333333% !important;
        max-width: 33.333333% !important;
    }
    
    .row.g-4 .col-lg-4 {
        width: calc(33.333333% - 16px) !important;
        max-width: calc(33.333333% - 16px) !important;
    }
}

/* STEP 5: Set widths for TABLET (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .col-md-3 {
        flex: 0 0 auto !important;
        width: 33.333333% !important;
        max-width: 33.333333% !important;
    }
    
    .row.g-4 .col-md-3 {
        width: calc(33.333333% - 16px) !important;
        max-width: calc(33.333333% - 16px) !important;
    }
    
    .col-md-4 {
        flex: 0 0 auto !important;
        width: 33.333333% !important;
        max-width: 33.333333% !important;
    }
    
    .row.g-4 .col-md-4 {
        width: calc(33.333333% - 16px) !important;
        max-width: calc(33.333333% - 16px) !important;
    }
    
    .col-md-6 {
        flex: 0 0 auto !important;
        width: 50% !important;
        max-width: 50% !important;
    }
    
    .row.g-4 .col-md-6 {
        width: calc(50% - 12px) !important;
        max-width: calc(50% - 12px) !important;
    }
}

/* STEP 6: Ensure cards fill their columns completely */
.package-card,
.offer-card,
.offer-card-small,
.offer-card-large,
.feature-card,
.destination-card {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

/* STEP 7: Container must be correct width */
.container {
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
}

/* STEP 8: Make absolutely sure no wrapping happens */
@media (min-width: 1200px) {
    .package-section .row.g-4,
    .special-offers-section .row.g-4,
    .features-section .row.g-4 {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .package-section .row.g-4 > .col-lg-3,
    .package-section .row.g-4 > .col-xl-3,
    .features-section .row.g-4 > .col-lg-3,
    .features-section .row.g-4 > .col-xl-3 {
        flex: 0 0 auto !important;
        width: calc(25% - 18px) !important;
        max-width: calc(25% - 18px) !important;
        margin-bottom: 24px;
    }
    
    .special-offers-section .row.g-4 > .col-lg-4,
    .special-offers-section .row.g-4 > .col-xl-4 {
        flex: 0 0 auto !important;
        width: calc(33.333333% - 16px) !important;
        max-width: calc(33.333333% - 16px) !important;
        margin-bottom: 24px;
    }
}

/* ALTERNATIVE: If calc() doesn't work in your browser */
/* Remove the calc() lines above and uncomment these fixed percentage values */
/*
@media (min-width: 1200px) {
    .row.g-4 .col-xl-3,
    .row.g-4 .col-lg-3 {
        width: 23.5% !important;
        max-width: 23.5% !important;
    }
    
    .row.g-4 .col-xl-4,
    .row.g-4 .col-lg-4 {
        width: 31.5% !important;
        max-width: 31.5% !important;
    }
    
    .row.g-4 .col-xl-6,
    .row.g-4 .col-lg-6 {
        width: 48% !important;
        max-width: 48% !important;
    }
}
*/








/* ============ FLIGHT AUTOCOMPLETE DROPDOWN STYLES ============ */

.autocomplete-suggestions-mmt {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 320px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 0;
    display: none;
}

.autocomplete-suggestions-mmt.active {
    display: block;
}

.autocomplete-suggestion-item {
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.autocomplete-suggestion-item:last-child {
    border-bottom: none;
}

.autocomplete-suggestion-item:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding-left: 20px;
}

.autocomplete-suggestion-item.selected {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.suggestion-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.suggestion-icon i {
    color: #ffffff;
    font-size: 16px;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-main {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.suggestion-city {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}

.suggestion-code {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    background: #eff6ff;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.suggestion-airport {
    font-size: 13px;
    color: #64748b;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-country {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
}

/* Popular/Recent Badge */
.suggestion-badge {
    padding: 3px 8px;
    background: #fef3c7;
    color: #d97706;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

.suggestion-badge.popular {
    background: #dcfce7;
    color: #16a34a;
}

.suggestion-badge.recent {
    background: #e0e7ff;
    color: #4f46e5;
}

/* No Results State */
.autocomplete-no-results {
    padding: 24px 16px;
    text-align: center;
    color: #94a3b8;
}

.autocomplete-no-results i {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    opacity: 0.5;
}

.autocomplete-no-results p {
    margin: 0;
    font-size: 14px;
}

/* Loading State */
.autocomplete-loading {
    padding: 20px;
    text-align: center;
    color: #64748b;
}

.autocomplete-loading i {
    font-size: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scrollbar Styling */
.autocomplete-suggestions-mmt::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-suggestions-mmt::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.autocomplete-suggestions-mmt::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.autocomplete-suggestions-mmt::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Focus State for Input */
.flight-autocomplete:focus + .city-code {
    color: #3b82f6;
}

.booking-field.from-field .flight-autocomplete:focus ~ .autocomplete-suggestions-mmt,
.booking-field.to-field .flight-autocomplete:focus ~ .autocomplete-suggestions-mmt {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .autocomplete-suggestions-mmt {
        max-height: 280px;
        border-radius: 0 0 8px 8px;
    }
    
    .autocomplete-suggestion-item {
        padding: 12px 14px;
    }
    
    .suggestion-icon {
        width: 32px;
        height: 32px;
    }
    
    .suggestion-icon i {
        font-size: 14px;
    }
    
    .suggestion-city {
        font-size: 14px;
    }
    
    .suggestion-code {
        font-size: 11px;
        padding: 2px 6px;
    }
    
    .suggestion-airport {
        font-size: 12px;
    }
    
    .suggestion-country {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .autocomplete-suggestions-mmt {
        max-height: 240px;
        left: -10px;
        right: -10px;
        width: calc(100% + 20px);
    }
    
    .autocomplete-suggestion-item {
        padding: 10px 12px;
    }
    
    .suggestion-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Highlight Matched Text */
.suggestion-highlight {
    background: #fef3c7;
    color: #d97706;
    font-weight: 600;
    padding: 0 2px;
    border-radius: 2px;
}

/* Animation */
.autocomplete-suggestions-mmt {
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyboard Navigation Highlight */
.autocomplete-suggestion-item.keyboard-selected {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 3px solid #3b82f6;
    padding-left: 17px;
}




/* ============ OFFERS CONTAINER STYLES ============ */
.offers-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.offers-container.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.offers-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.offers-header::before {
    content: '🎉';
    position: absolute;
    font-size: 100px;
    opacity: 0.1;
    left: 50px;
    top: 20px;
    animation: float 3s ease-in-out infinite;
}

.offers-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.offers-header p {
    font-size: 1.3em;
    opacity: 0.95;
}

/* Countdown */
.offer-countdown-box {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.offer-countdown-box h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
}

.countdown-number {
    font-size: 3em;
    font-weight: bold;
    line-height: 1;
}

.countdown-label {
    font-size: 1.1em;
    margin-top: 5px;
}

/* Content */
.offers-content {
    padding: 0;
}

/* Prize Cards */
.offers-prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

.offer-prize-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.offer-prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.prize-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.offer-prize-card h4 {
    color: #2d3436;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.prize-value {
    color: #e74c3c;
    font-size: 2em;
    font-weight: bold;
    margin: 10px 0;
}

.offer-prize-card p {
    color: #636e72;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.prize-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9em;
}

/* Packages Section */
.offer-packages-section {
    padding: 50px 40px;
    background: white;
}

.offer-packages-section h3 {
    text-align: center;
    font-size: 2.2em;
    color: #2d3436;
    margin-bottom: 30px;
}

.offer-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.package-item {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.package-item:hover {
    transform: scale(1.05);
    border-color: #f5576c;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.package-icon {
    font-size: 4em;
    margin-bottom: 15px;
}

.package-item h5 {
    color: #2d3436;
    font-size: 1.3em;
    margin-bottom: 8px;
    font-weight: bold;
}

.package-item p {
    color: #636e72;
    font-size: 0.95em;
}

/* Action Buttons */
.offer-actions {
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.offer-cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.offer-cta-btn.primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.offer-cta-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.offer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Contact Section */
.offer-contact-section {
    padding: 40px;
    background: white;
    text-align: center;
}

.offer-contact-section h4 {
    font-size: 2em;
    color: #2d3436;
    margin-bottom: 25px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
}

/* Close Button */
.offers-close-btn {
    position: fixed;
    top: 100px;
    right: 30px;
    background: rgba(231, 76, 60, 0.95);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.5);
    transition: all 0.3s ease;
}

.offers-close-btn:hover {
    background: #c0392b;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
    .offers-prizes-grid,
    .offer-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offers-container {
        margin: 1rem auto;
        border-radius: 15px;
    }
    
    .offers-header h2 {
        font-size: 1.8em;
    }
    
    .offers-prizes-grid,
    .offer-packages-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .countdown-display {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2.5em;
    }
    
    .offer-actions {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .offer-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .offers-close-btn {
        top: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}


/* ============ OFFERS BUTTON - GREEN GIFT THEME ============ */
.service-icon-item[data-service="offers"] .service-icon-box {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.4);
}

.service-icon-item[data-service="offers"]:hover .service-icon-box {
    background: linear-gradient(135deg, #0e877d 0%, #2fde6c 100%);
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.6);
    transform: translateY(-3px);
}

.service-icon-item[data-service="offers"].active .service-icon-box {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.7);
    transform: scale(1.1);
}

.service-icon-item[data-service="offers"] span {
    color: #11998e;
    font-weight: 600;
}

.service-icon-item[data-service="offers"].active span {
    color: #38ef7d;
}

/* ============================================
   FORCE UNIFORM IMAGE SIZES IN DESTINATION SLIDERS
   ============================================ */

/* Override any conflicting styles */
.destination-card {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    width: 280px !important;
    height: 280px !important;
    box-sizing: border-box !important;
}

.destination-card-image {
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    max-height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Mobile sizes */
@media (max-width: 768px) {
    .destination-card {
        flex: 0 0 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
        width: 240px !important;
        height: 240px !important;
    }
    
    .destination-card-image {
        min-height: 240px !important;
        max-height: 240px !important;
    }
}

@media (max-width: 480px) {
    .destination-card {
        flex: 0 0 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;
        width: 220px !important;
        height: 220px !important;
    }
    
    .destination-card-image {
        min-height: 220px !important;
        max-height: 220px !important;
    }
}


/* ============================================
   2026 SPLIT SCREEN FORMS
   ============================================ */

.split-screen-2026 {
    display: none;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.split-screen-2026.active {
    display: grid;
}

.split-left-carousel {
    position: relative;
    background: #f8f9fa;
    min-height: 600px;
}

.carousel-2026-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-2026-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-2026-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-2026-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-2026-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #667eea;
}

.carousel-2026-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-2026-nav.prev {
    left: 20px;
}

.carousel-2026-nav.next {
    right: 20px;
}

.carousel-2026-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-2026-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-2026-indicator.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

.split-right-form {
    padding: 40px;
    overflow-y: auto;
    max-height: 600px;
}

.form-header-2026 {
    margin-bottom: 30px;
}

.form-header-2026 h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-header-2026 p {
    font-size: 14px;
    color: #666;
}

.form-tabs-2026 {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.form-tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: #666;
}

.form-tab-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.form-tab-btn:hover {
    border-color: #667eea;
}

.form-pane-2026 {
    display: none;
}

.form-pane-2026.active {
    display: block;
}

.form-group-2026 {
    margin-bottom: 20px;
}

.form-group-2026 label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group-2026 .required {
    color: #ef4444;
}

.form-control-2026 {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control-2026:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.counter-group {
    display: flex;
    gap: 15px;
}

.counter-item {
    flex: 1;
}

.counter-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
    margin-top: 8px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.counter-value {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.submit-btn-2026 {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn-2026:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.submit-btn-2026:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.success-modal.active {
    display: flex;
}

.success-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.success-modal-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.modal-close-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.modal-close-btn:hover {
    background: #5568d3;
}

/* Mobile Responsive */
@media only screen and (max-width: 991px) {
    .split-screen-2026 {
        grid-template-columns: 1fr;
    }
    
    .split-left-carousel {
        height: 300px;
        min-height: 300px;
    }
    
    .split-right-form {
        max-height: none;
        padding: 30px 20px;
    }
    
    .form-header-2026 h2 {
        font-size: 24px;
    }
    
    .form-tabs-2026 {
        flex-direction: column;
    }
    
    .counter-group {
        flex-direction: column;
    }
}


