/* ============================================================
   FLYGATO — Premium Travel & Tours
   Design System | Navy Blue + Gold Color Scheme
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Noto+Nastaliq+Urdu:wght@400;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --primary:        #0C2E4E;
    --primary-dark:   #0D2141;
    --primary-light:  #154B7D;
    --accent:         #C4993E;
    --accent-dark:    #AA7925;
    --accent-light:   #D6AB5A;
    --sky:            #1B6CA8;
    --white:          #FFFFFF;
    --light:          #F8F9FA;
    --gray:           #6C757D;
    --gray-light:     #E9ECEF;
    --dark:           #212529;
    --text:           #343A40;

    /* Category Colors */
    --umrah-color:    #1a7a4c;
    --hajj-color:     #c8860a;
    --intl-color:     #1B6CA8;
    --holiday-color:  #c0392b;

    /* Shadows */
    --shadow-sm:   0 2px 8px rgba(10,35,66,.08);
    --shadow-md:   0 4px 24px rgba(10,35,66,.12);
    --shadow-lg:   0 8px 48px rgba(10,35,66,.18);
    --shadow-card: 0 2px 16px rgba(10,35,66,.10);

    /* Border Radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.lang-ur {
    font-family: 'Noto Nastaliq Urdu', 'Inter', sans-serif;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ── Utility Classes ──────────────────────────────────────── */
.text-primary-custom { color: var(--primary) !important; }
.text-accent         { color: var(--accent) !important; }
.bg-primary-custom   { background: var(--primary) !important; }
.bg-accent           { background: var(--accent) !important; }
.font-poppins        { font-family: 'Poppins', sans-serif !important; }

.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.section-label {
    display: inline-block;
    background: rgba(232,152,29,.15);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* ── ✦ Navbar ─────────────────────────────────────────────── */
.navbar-flygato {
    background: transparent;
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1050;
}

.navbar-flygato.scrolled {
    background: var(--primary) !important;
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-flygato .navbar-brand img {
    height: 80px;
    transition: var(--transition);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.navbar-flygato.scrolled .navbar-brand img {
    height: 60px;
}

.navbar-flygato .navbar-brand .brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.navbar-flygato .brand-text span {
    color: var(--accent);
}

.navbar-flygato .nav-link {
    color: rgba(255,255,255,.9) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-flygato .nav-link:hover,
.navbar-flygato .nav-link.active {
    color: var(--accent) !important;
    background: rgba(255,255,255,.08);
}

/* Dropdown */
.navbar-flygato .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    min-width: 240px;
    animation: fadeInDown 0.25s ease;
}

.navbar-flygato .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.navbar-flygato .dropdown-item:hover {
    background: var(--primary);
    color: var(--white);
}

.navbar-flygato .dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--accent);
}

.navbar-flygato .btn-nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--accent);
}

.navbar-flygato .btn-nav-cta:hover {
    background: transparent;
    color: var(--accent) !important;
}

.lang-switcher .btn {
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.4);
    color: var(--white);
    background: transparent;
    transition: var(--transition);
}

.lang-switcher .btn:hover,
.lang-switcher .btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ── ✦ Hero Slider ─────────────────────────────────────────── */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(12, 46, 78, 0.85) 0%,
        rgba(13, 33, 65, 0.6) 60%,
        rgba(196, 153, 62, 0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    animation: slideInLeft 0.8s ease;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    animation: slideInLeft 0.9s ease;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 2rem;
    max-width: 580px;
    animation: slideInLeft 1s ease;
}

.hero-btns { animation: slideInLeft 1.1s ease; }

.btn-hero-primary {
    background: var(--accent);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--accent);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,.6);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Hero Stats Bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,.2);
    z-index: 3;
}

.hero-stat-item {
    padding: 18px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.15);
}

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

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 100px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* ── ✦ Package Cards ───────────────────────────────────────── */
.package-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: rgba(255,255,255,0.2);
}

.package-no-img i {
    font-size: 4rem;
}

.package-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.package-card:hover .package-card-img img {
    transform: scale(1.08);
}

.package-card-img .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 46, 78, 0.7) 0%, transparent 60%);
}

.package-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.package-badge.category-umrah        { background: var(--umrah-color); }
.package-badge.category-hajj         { background: var(--hajj-color); }
.package-badge.category-international{ background: var(--intl-color); }
.package-badge.category-holiday      { background: var(--holiday-color); }

.package-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(10,35,66,.8);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.featured-ribbon {
    position: absolute;
    top: 14px;
    right: -26px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 36px;
    transform: rotate(35deg);
}

.package-card-body {
    padding: 24px;
}

.package-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.package-card-desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.package-highlight-tag {
    background: var(--light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-highlight-tag i { color: var(--accent); font-size: 0.7rem; }

.package-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--light);
    border-top: 1px solid var(--gray-light);
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.price-old {
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: line-through;
}

.price-amount span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
}

.btn-book-now {
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid var(--accent);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-book-now:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* ── ✦ Category Filter Tabs ───────────────────────────────── */
.cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2rem; }

.cat-tab {
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    border: 2px solid var(--gray-light);
    color: var(--gray);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
}

.cat-tab:hover, .cat-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ── ✦ Why Choose Us ──────────────────────────────────────── */
.why-section { background: var(--light); }

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--sky));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.6rem;
    color: var(--white);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    transform: rotate(5deg);
}

/* ── ✦ Destination Cards ──────────────────────────────────── */
.destination-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 260px;
    cursor: pointer;
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.destination-card:hover img { transform: scale(1.1); }

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 46, 78, 0.85) 20%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.destination-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.destination-country {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── ✦ Testimonials ───────────────────────────────────────── */
.testimonial-section { background: var(--primary); }

.testimonial-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-4px);
}

.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }

.testimonial-text {
    color: rgba(255,255,255,.88);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-designation {
    font-size: 0.8rem;
    color: var(--accent);
}

/* ── ✦ Gallery Grid ───────────────────────────────────────── */
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 46, 78, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* ── ✦ CTA Banner ─────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(196, 153, 62, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

/* ── ✦ Footer ─────────────────────────────────────────────── */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.75);
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img {
    height: 90px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}



.footer-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    margin: 1rem 0;
    color: rgba(255,255,255,.65);
}

.footer-social { display: flex; gap: 10px; margin-top: 1rem; }

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.15);
}

.social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-links a i { font-size: 0.7rem; color: var(--accent); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(196, 153, 62, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,.4);
}

/* ── ✦ WhatsApp Floating Button ─────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: var(--transition);
    position: relative;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.4);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #1da852;
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── ✦ Buttons ────────────────────────────────────────────── */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--primary);
}

.btn-accent-custom {
    background: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--accent);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-accent-custom:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── ✦ Page Header ────────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
}

.breadcrumb-item a { color: var(--accent); }
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.7); }

/* ── ✦ Package Detail ─────────────────────────────────────── */
.package-detail-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.package-detail-gallery .main-img {
    height: 420px;
    object-fit: cover;
    width: 100%;
}

.package-price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px;
    position: sticky;
    top: 90px;
    border: 1px solid var(--gray-light);
}

.package-price-main {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.package-nav-tabs .nav-link {
    color: var(--gray);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border: none;
    border-bottom: 3px solid transparent;
}

.package-nav-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
    background: transparent;
}

/* Itinerary */
.itinerary-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.itinerary-day {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.itinerary-content { flex: 1; padding-top: 8px; }
.itinerary-content h6 { color: var(--primary); font-weight: 700; }

/* Inclusion/Exclusion Lists */
.inclusion-list, .exclusion-list { list-style: none; padding: 0; }

.inclusion-list li, .exclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.9rem;
}

.inclusion-list li:last-child, .exclusion-list li:last-child { border-bottom: none; }

.inclusion-list li i { color: #28a745; margin-top: 3px; }
.exclusion-list li i { color: #dc3545; margin-top: 3px; }

/* ── ✦ Visa Cards ─────────────────────────────────────────── */
.visa-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.visa-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.visa-card-header {
    background: var(--primary);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.visa-flag {
    width: 48px;
    height: 34px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,.3);
}

.visa-country-name {
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
}

.visa-type-badge {
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 600;
}

/* ── ✦ Ticket Cards ───────────────────────────────────────── */
.ticket-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 24px;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    position: relative;
}

.ticket-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--sky);
}

.ticket-route {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ticket-city {
    text-align: center;
    flex: 1;
}

.ticket-city-code {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.ticket-city-name {
    font-size: 0.75rem;
    color: var(--gray);
}

.ticket-divider {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
}

.ticket-divider hr {
    flex: 1;
    border-color: var(--gray-light);
    border-width: 2px;
    margin: 0;
}

/* ── ✦ Forms ──────────────────────────────────────────────── */
.form-control-flygato {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control-flygato:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(12, 46, 78, 0.08);
    outline: none;
}

/* ── ✦ Animations ─────────────────────────────────────────── */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes whatsappPulse {
    0%   { transform: scale(1); opacity: 1; }
    70%  { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── ✦ Stars ──────────────────────────────────────────────── */
.stars { color: var(--accent); }

/* ── ✦ Loading Spinner ────────────────────────────────────── */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    animation: float 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
}

/* ── ✦ Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-section { height: 85vh; }
    .hero-stats { position: static; }
    .hero-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .package-detail-gallery .main-img { height: 280px; }
    .package-price-card { position: static; }
}

@media (max-width: 767px) {
    .hero-section { height: 75vh; min-height: 500px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .btn-hero-primary, .btn-hero-outline { padding: 11px 22px; font-size: 0.9rem; }
    .section-title { font-size: 1.5rem; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-btn { width: 50px; height: 50px; font-size: 1.4rem; }
    .cat-tabs { justify-content: center; }
    .destination-card { height: 200px; }
}

@media (max-width: 576px) {
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero-btns .btn-hero-outline,
    .hero-btns .btn-hero-primary { width: 100%; justify-content: center; }
}

/* RTL Support */
body.lang-ur .footer-heading::after { left: auto; right: 0; }
body.lang-ur .footer-links a:hover { padding-left: 0; padding-right: 6px; }
body.lang-ur .hero-controls { right: auto; left: 30px; }
body.lang-ur .package-badge { left: auto; right: 14px; }
