:root {
    --primary: #27d8e2;
    --primary-dark: #0099a5;
    --primary-gradient: linear-gradient(135deg, #27d8e2 0%, #0099a5 100%);
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-gradient);
    width: 0%;
    z-index: 10000;
    box-shadow: 0 0 10px rgba(39, 216, 226, 0.4);
    transition: width 0.1s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(to right, #001a1d, #008b94, #001a1d);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: linear-gradient(to right, #001a1d, #008b94, #001a1d);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 42px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    opacity: 0.9;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109c05c?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: var(--card-shadow);
    min-height: 250px;
    justify-content: center;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    backface-visibility: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    transition: opacity 0.4s ease;
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.hero-card:hover .card-bg {
    transform: scale(1.1);
}

.hero-card:hover .card-overlay {
    opacity: 0.9;
}

.card-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: white;
    box-shadow: 0 8px 15px rgba(39, 216, 226, 0.3);
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1100;
    transition: var(--transition);
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.sidebar-logo img {
    height: 45px;
}

.close-sidebar {
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.sidebar-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.sidebar-link i {
    color: var(--primary-dark);
    width: 25px;
    font-size: 1.2rem;
}

.sidebar-link:hover {
    background: rgba(39, 216, 226, 0.1);
    color: var(--primary-dark);
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header {
        padding: 15px 0;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-options {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 140px 0 60px; /* Increased top padding */
    }

    .hero-title {
        font-size: 2.1rem;
        margin-bottom: 15px;
    }

    .hero-card {
        padding: 20px;
    }
}

/* Video Section */
.video-link {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Removed vertical margin here, moved to section padding */
    cursor: pointer;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.video-showcase {
    padding: 60px 0; /* Consistent vertical spacing */
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    line-height: 0;
    transition: var(--transition);
}

/* Promo Services Section */
.promo-services {
    background: var(--primary-gradient);
    padding: 80px 0;
    color: #ffffff;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.promo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 25px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promo-card i {
    font-size: 2.8rem;
    color: #ffffff;
    transition: var(--transition);
}

.promo-card:hover i {
    transform: scale(1.1);
}

.promo-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.promo-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1200px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

.showcase-video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: cover;
}

.mobile-video {
    display: none;
}

@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }
    .mobile-video {
        display: block;
    }
}

@media (max-width: 1200px) {
    .video-link {
        margin: 40px 20px;
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .video-link {
        margin: 20px 10px;
        width: calc(100% - 20px);
        border-radius: 12px;
    }
}

/* Trending Visas Section */
.trending-visas {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.visa-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.visa-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.visa-card img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.visa-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.visa-info .price {
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(39, 216, 226, 0.2);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(39, 216, 226, 0.3);
}

@media (max-width: 1200px) {
    .visa-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .visa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .visa-grid {
        grid-template-columns: 1fr;
    }
    
    .visa-card {
        padding: 20px;
    }
}

/* Why Book with us Section */
.why-book {
    padding: 80px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-item {
    padding: 30px;
    border-radius: 20px;
    background: var(--bg-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(39, 216, 226, 0.2);
}

.why-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-book {
        padding: 60px 0;
    }
}

/* Umrah CTA Section */
.umrah-cta {
    position: relative;
    padding: 160px 0;
    background: url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(39, 216, 226, 0.5));
}

.cta-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
    line-height: 1.5;
    font-weight: 300;
}

.btn-cta {
    display: inline-block;
    padding: 20px 60px;
    background: var(--primary-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(39, 216, 226, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(39, 216, 226, 0.6);
    background: #ffffff;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .umrah-cta {
        padding: 100px 0;
    }
    .cta-content {
        padding: 40px 25px;
        margin: 0 20px;
    }
}

/* Visa Page Specifics */
.visa-stats {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visa-destinations {
    padding: 80px 0;
    background: var(--bg-light);
}

.visa-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(39, 216, 226, 0.3);
}

/* Easy Steps */
.easy-steps {
    padding: 100px 0;
    background: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    position: relative;
    padding: 50px 30px;
    background: var(--bg-light);
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.step-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Overhauled Flights Page */
.flights-hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: #0f172a;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1542296332-2e4473faf563?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay-refined {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
    z-index: 2;
}

.hero-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-main-title span {
    color: var(--primary);
}

.hero-subtext {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

/* Search Container */
.search-container {
    margin-top: 40px;
}

.search-type-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 6px;
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
}

.type-btn {
    padding: 10px 25px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition);
}

.type-btn.active {
    background: #ffffff;
    color: var(--text-dark);
}

.booking-form-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 0 30px 30px 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.booking-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.booking-field {
    padding: 0 20px;
    text-align: left;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.booking-field label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 5px;
}

.booking-field label i {
    color: var(--primary);
    margin-right: 5px;
}

.booking-field input, .booking-field select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    background: transparent;
}

.field-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.08);
}

.search-submit-btn {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(39, 216, 226, 0.4);
}

.search-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(39, 216, 226, 0.5);
}

/* Mini Features */
.mini-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.mini-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-card i {
    color: var(--primary);
}

@media (max-width: 1200px) {
    .booking-row {
        flex-direction: column;
        align-items: stretch;
    }
    .field-divider {
        display: none;
    }
    .booking-field {
        padding: 15px 20px;
        background: #f8fafc;
        border-radius: 12px;
        margin-bottom: 10px;
        border: 1px solid rgba(0,0,0,0.03);
    }
    .booking-form-box {
        padding: 15px;
        border-radius: 0 0 24px 24px;
    }
    .search-submit-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        height: 60px;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .flights-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .hero-main-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .hero-subtext {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .search-type-tabs {
        width: 100%;
        display: flex;
    }
    .type-btn {
        flex: 1;
        padding: 12px 5px;
        font-size: 0.8rem;
    }
    .mini-features {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        gap: 12px;
    }
    .mini-card {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.8rem;
    }
    .booking-field label {
        font-size: 0.75rem;
    }
    .booking-field input, .booking-field select {
        font-size: 0.95rem;
    }
}
/* Popular Flights Grid */
.popular-flights {
    padding: 100px 0;
    background: #ffffff;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.dest-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dest-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition);
}

.dest-card:hover .dest-img {
    transform: scale(1.05);
}

.dest-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(39, 216, 226, 0.3);
}

.dest-info {
    padding: 25px;
}

.dest-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.dest-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.dest-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.dest-link:hover {
    gap: 15px;
}

/* Booking Benefits */
.booking-benefits {
    padding: 100px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 40px 25px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(39, 216, 226, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background: var(--primary-gradient);
    color: #ffffff;
    transform: rotateY(180deg);
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Accordion */
.flights-faq {
    padding: 100px 0;
    background: #ffffff;
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
}

.faq-question {
    padding: 20px 30px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::after {
    content: '\f067'; /* FontAwesome Plus */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '\f068'; /* FontAwesome Minus */
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 20px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    display: none; /* Hidden by default */
}

.faq-item.active {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 1200px) {
    .dest-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dest-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    .popular-flights, .booking-benefits, .flights-faq {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 5px 40px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
}

.testimonial-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.stars {
    color: #ffc107;
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    flex-grow: 1;
}

.client-info {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.client-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.service-type {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 10px);
        padding: 30px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-card {
    opacity: 0;
}

.hero-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.4s forwards; }
.hero-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.5s forwards; }
.hero-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.6s forwards; }
.hero-card:nth-child(4) { animation: fadeInUp 0.8s ease-out 0.7s forwards; }

.footer {
    padding: 80px 0 40px;
    background: var(--bg-light);
    border-top: 1px solid var(--glass-border);
    color: var(--text-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 300px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.contact-info li i {
    color: var(--primary-dark);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-desc {
        margin: 0 auto 25px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--primary-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Tours & Umrah Shared & Specific Styles */
.tours-hero {
    position: relative;
    padding: 160px 0 100px;
    background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
}

.umrah-hero {
    position: relative;
    padding: 160px 0 100px;
    background: url('img/umrah.jpg') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.tours-hero .container, .umrah-hero .container {
    position: relative;
    z-index: 2;
}

.tours-hero .hero-title, .umrah-hero .hero-title {
    color: #ffffff;
}

.tours-hero .hero-subtitle, .umrah-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.tours-explorer, .umrah-explorer {
    padding: 80px 0;
    background: #f8fafc;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(39, 216, 226, 0.2);
}

/* Package Tags Specifics */
.pkg-tag.economy { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.pkg-tag.economy-plus { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.pkg-tag.3star { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.pkg-tag.4star { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.pkg-tag.5star { background: linear-gradient(135deg, #71717a 0%, #18181b 100%); }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.package-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pkg-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition);
}

.pkg-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkg-tag.leisure { background: linear-gradient(135deg, #ff4d6d 0%, #c9184a 100%); }
.pkg-tag.domestic { background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%); }

.pkg-content {
    padding: 25px;
}

.pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.pkg-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.pkg-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.pkg-duration i {
    color: var(--primary);
    margin-right: 5px;
}

.pkg-price {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.pkg-price .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.pkg-price .amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.pkg-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pkg-footer .offer {
    font-size: 0.85rem;
    color: #ff4d6d;
    font-weight: 700;
    text-align: center;
}

.view-btn {
    text-decoration: none;
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(39, 216, 226, 0.2);
}

.view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 216, 226, 0.4);
    filter: brightness(1.1);
}

/* Custom CTA */
.custom-cta {
    margin-top: 80px;
    text-align: center;
}

.cta-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.cta-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-card h2 span {
    color: var(--primary);
}

.cta-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(39, 216, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(39, 216, 226, 0.4);
}

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .cta-card {
        padding: 40px 20px;
    }
    .cta-card h2 {
        font-size: 1.8rem;
    }
}/* Airline Partners Slider */
.airline-partners {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.partners-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    width: calc(250px * 16); /* 8 logos * 2 sets */
    animation: scroll 40s linear infinite;
    align-items: center;
}

.partner-logo {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.partner-logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); }
}

@media (max-width: 768px) {
    .partners-track {
        width: calc(150px * 16);
    }
    .partner-logo {
        width: 150px;
        padding: 0 20px;
    }
    .partner-logo img {
        max-width: 100px;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 8)); }
    }
}
/* Visa Detail Page Styles */
.visa-detail-hero {
    height: 60vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.visa-detail-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.visa-detail-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: -1;
}

.visa-detail-hero .hero-title {
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-flag {
    width: 35px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .visa-detail-hero .hero-title {
        flex-direction: column;
        gap: 10px;
    }
}

.visa-detail-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.visa-info-bar {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.info-item:last-child {
    border-right: none;
}

.info-item .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item .value {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.visa-main-content {
    padding: 80px 0;
    background: #f8fafc;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.requirements-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.req-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.req-tab-btn {
    padding: 12px 24px;
    background: #f1f5f9;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.req-tab-btn.active {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(39, 216, 226, 0.3);
}

.req-content-item {
    display: none;
    animation: fadeIn 0.4s ease;
}

.req-content-item.active {
    display: block;
}

.req-list {
    list-style: none;
    padding: 0;
}

.req-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
}

.req-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.apply-sidebar {
    position: sticky;
    top: 100px;
}

.price-card {
    background: var(--primary-gradient);
    padding: 40px;
    border-radius: 24px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(39, 216, 226, 0.3);
    margin-bottom: 30px;
}

.price-card .price-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.price-card .price-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.btn-whatsapp-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: var(--primary);
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-whatsapp-apply:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.visa-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Grid Base */
.benefits-simple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CTA Card Base */
.premium-cta {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .visa-info-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px; /* Separated from hero */
        padding: 20px;
    }
    .info-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 15px 10px;
        align-items: center;
        text-align: center;
    }
    .info-item:last-child {
        border-bottom: none;
    }
    .apply-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .visa-detail-hero {
        height: 50vh;
        min-height: 400px;
        padding-top: 60px;
    }
    .visa-detail-hero .hero-title {
        font-size: 2rem;
        overflow-wrap: break-word;
        padding: 0 10px;
    }
    .visa-detail-hero .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    .requirements-box {
        padding: 20px;
    }
    .req-tabs {
        flex-direction: column;
        gap: 10px;
    }
    .req-tab-btn {
        width: 100%;
        text-align: center;
    }
    .visa-steps-grid {
        grid-template-columns: 1fr !important;
    }
    .benefits-simple-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    .benefit-simple-item {
        padding-right: 10px;
    }
    .premium-cta {
        padding: 30px 20px !important;
        border-radius: 20px;
    }
    .premium-cta h2 {
        font-size: 1.6rem !important;
        overflow-wrap: break-word;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .visa-info-bar {
        grid-template-columns: 1fr !important;
        margin-top: 30px; /* Keep it below hero */
        gap: 0;
    }
    .info-item {
        padding: 12px 5px;
    }
    .info-item .value {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.6rem !important;
    }
}

/* Specific component classes for visa pages */
.visa-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.visa-note-box {
    margin-top: 40px;
    background: #fffbeb;
    border: 1px solid #fef3c7;
    padding: 30px;
    border-radius: 24px;
}

.visa-contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Premium Card & Step Enhancements */
.premium-card {
    position: relative;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    text-align: center;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(39, 216, 226, 0.15);
    border-color: var(--primary);
}

.step-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(39, 216, 226, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.premium-card:hover .step-icon-box {
    background: var(--primary-gradient);
    color: #ffffff;
    transform: rotate(10deg);
}

/* CTA Enhancements */
.premium-cta {
    overflow: hidden;
    position: relative;
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 216, 226, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.premium-cta * {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #ffffff !important;
}
