/* ============================================
   EastWestTravel2go - Main Stylesheet
   Color: Navy #1a365d | Orange #f97316 | White
   Fonts: Poppins (headings) + Inter (body)
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #1a365d;
    --primary-light: #2d4a7a;
    --primary-dark: #0f2341;
    --accent: #f97316;
    --accent-light: #fb923c;
    --accent-dark: #ea580c;
    --white: #ffffff;
    --light: #f8fafc;
    --light-gray: #f1f5f9;
    --gray: #94a3b8;
    --dark-gray: #64748b;
    --dark: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #eab308;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
a { text-decoration: none; color: var(--accent); transition: var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); font-size: 15px; }

/* --- Container --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249,115,22,0.35);
}
.btn-secondary {
    background: var(--primary);
    color: var(--white);
}
.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,54,93,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-block { width: 100%; }

/* --- Section Styling --- */
.section {
    padding: 80px 0;
}
.section-light {
    background: var(--light);
}
.section-dark {
    background: var(--primary);
    color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark p {
    color: var(--white);
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    margin-bottom: 12px;
    position: relative;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 12px auto 0;
    border-radius: 2px;
}
.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.section-header .badge {
    display: inline-block;
    background: rgba(249,115,22,0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

/* ============================================
   PROMO BAR
   ============================================ */
.promo-bar {
    background: var(--accent);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}
.promo-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.promo-bar p { margin: 0; font-size: 14px; font-weight: 500; }
.promo-code {
    background: var(--white);
    color: var(--accent);
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    margin-right: 5px;
}
.promo-btn {
    background: var(--white);
    color: var(--accent);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
}
.promo-btn:hover { background: var(--light); color: var(--accent-dark); }
.promo-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    opacity: 0.8;
}
.promo-close:hover { opacity: 1; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.header-top {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-left, .header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-top a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-top a:hover { color: var(--white); }
.header-social {
    display: flex;
    gap: 12px;
}
.header-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    font-size: 12px;
}
.header-social a:hover { background: var(--accent); color: var(--white); }

/* Main Nav */
.main-nav {
    padding: 0;
}
.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}
.logo img {
    height: 88px;
    width: auto;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.logo-text:hover { color: var(--primary); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 11px;
    color: var(--text);
    font-weight: 500;
    font-size: 13.5px;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-item > a i.fas:not(.dropdown-arrow) { font-size: 12px; color: var(--accent); }
.dropdown-arrow { font-size: 10px !important; color: var(--gray) !important; transition: var(--transition); }
.nav-item:hover > a, .nav-item.active > a {
    color: var(--accent);
    background: rgba(249,115,22,0.06);
}
.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 14px;
    border-radius: var(--radius-sm);
}
.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--accent);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,54,93,0.85) 0%, rgba(26,54,93,0.5) 100%);
    display: flex;
    align-items: center;
}
.hero-content {
    max-width: 650px;
    padding-left: 40px;
}
.hero-content h1 {
    color: var(--white);
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}
.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.hero-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}
.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}
.hero-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(5px);
}
.hero-arrow:hover {
    background: var(--accent);
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-section {
    margin-top: -45px;
    position: relative;
    z-index: 20;
}
.search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 25px 30px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.search-field {
    flex: 1;
    min-width: 180px;
}
.search-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}
.search-field input, .search-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    background: var(--light);
}
.search-field input:focus, .search-field select:focus {
    border-color: var(--accent);
    outline: none;
    background: var(--white);
}
.search-box .btn { min-width: 160px; padding: 14px 30px; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 60px 0;
    background: var(--primary);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    color: var(--white);
}
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--accent);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-number .suffix {
    font-size: 1.5rem;
}
.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

/* ============================================
   PACKAGE CARDS
   ============================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.package-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.package-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.package-card:hover .package-card-image img {
    transform: scale(1.08);
}
.package-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.package-tag.popular { background: var(--success); }
.package-tag.new { background: #8b5cf6; }
.package-tag.hot-deal { background: var(--danger); }
.package-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-heading);
}
.package-price-badge .old-price {
    text-decoration: line-through;
    font-size: 12px;
    opacity: 0.7;
    display: block;
    font-weight: 400;
}
.package-card-body {
    padding: 20px;
}
.package-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.package-card-body h3 a {
    color: var(--primary);
}
.package-card-body h3 a:hover { color: var(--accent); }
.package-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}
.package-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.package-meta i { color: var(--accent); font-size: 12px; }
.package-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}
.package-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.package-rating .stars { color: #fbbf24; font-size: 13px; }
.package-rating .count { font-size: 13px; color: var(--text-light); }
.package-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}
.package-card-footer .btn { font-size: 13px; padding: 8px 20px; }

/* ============================================
   VISA CARDS
   ============================================ */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.visa-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}
.visa-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.visa-flag {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.visa-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visa-info { flex: 1; }
.visa-info h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.visa-info h3 a { color: var(--primary); }
.visa-info h3 a:hover { color: var(--accent); }
.visa-details {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.visa-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.visa-details i { color: var(--accent); font-size: 11px; width: 14px; }
.visa-card .btn { flex-shrink: 0; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.feature-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
}
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}
.testimonial-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light-gray);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
}
.testimonial-designation {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   PARTNERS / LOGOS
   ============================================ */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}
.partner-logo {
    width: 130px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}
.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}
.partner-logo img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--light-gray);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question i { transition: transform 0.3s; color: var(--accent); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 18px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2rem;
}
.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(249,115,22,0.1);
}
.page-banner h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--accent); }

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-info-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.contact-info-card i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info-card h4 { font-size: 14px; margin-bottom: 4px; }
.contact-info-card p { font-size: 13px; color: var(--text-light); }
.contact-info-card a { font-size: 13px; }
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-card-image {
    height: 200px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body {
    padding: 20px;
}
.blog-card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
}
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card-meta i { color: var(--accent); }
.blog-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.blog-card-body h3 a { color: var(--primary); }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Blog Detail */
.blog-detail {
    max-width: 800px;
    margin: 0 auto;
}
.blog-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    height: 400px;
}
.blog-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}
.blog-detail-content h2, .blog-detail-content h3 { margin: 25px 0 12px; }
.blog-detail-content p { margin-bottom: 18px; }
.blog-detail-content img { border-radius: var(--radius); margin: 20px 0; }
.blog-detail-content ul, .blog-detail-content ol { padding-left: 25px; margin-bottom: 18px; }
.blog-detail-content li { margin-bottom: 8px; }

/* ============================================
   PACKAGE DETAIL
   ============================================ */
.package-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.package-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    position: relative;
}
.package-gallery img { width: 100%; height: 100%; object-fit: cover; }
.package-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.package-gallery-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}
.package-gallery-thumbs img:hover, .package-gallery-thumbs img.active { opacity: 1; }
.package-info-box {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: sticky;
    top: 100px;
}
.package-info-box .price-display {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}
.package-info-box .old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.1rem;
}
.itinerary-list {
    margin-top: 30px;
}
.itinerary-day {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}
.itinerary-day::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -25px;
    width: 2px;
    background: var(--light-gray);
}
.itinerary-day:last-child::before { display: none; }
.day-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.day-content h4 { margin-bottom: 5px; font-size: 1rem; }
.day-content p { font-size: 14px; color: var(--text-light); }
.day-extras {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-light);
}
.day-extras span { display: flex; align-items: center; gap: 5px; }
.day-extras i { color: var(--accent); font-size: 12px; }

/* Inclusions/Exclusions */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}
.inc-list li, .exc-list li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.inc-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success);
    font-size: 12px;
}
.exc-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--danger);
    font-size: 12px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h2 { margin-bottom: 15px; }
.about-text p { margin-bottom: 15px; font-size: 15px; line-height: 1.8; }
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card-image {
    height: 260px;
    overflow: hidden;
}
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body {
    padding: 20px;
}
.team-card-body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card-body p { font-size: 13px; color: var(--accent); font-weight: 500; }

/* ============================================
   UMRAH CARDS
   ============================================ */
.umrah-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.umrah-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.umrah-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.umrah-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.umrah-card-image img { width: 100%; height: 100%; object-fit: cover; }
.umrah-card-body { padding: 20px; }
.umrah-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.umrah-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}
.umrah-meta span { display: flex; align-items: center; gap: 5px; }
.umrah-meta i { color: var(--accent); font-size: 12px; }
.umrah-hotels {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}
.umrah-hotels strong { color: var(--text); }

/* ============================================
   FLIGHT PAGE
   ============================================ */
.flight-routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.route-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}
.route-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.route-cities {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}
.route-city { font-weight: 600; color: var(--primary); font-size: 15px; }
.route-arrow { color: var(--accent); }
.route-airline { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.route-price { font-weight: 700; color: var(--accent); font-size: 1.2rem; font-family: var(--font-heading); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
}
.footer-top {
    padding: 60px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.footer-about {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: var(--accent);
}
.footer-links a:hover { color: var(--white); padding-left: 5px; }
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}
.footer-contact li > i {
    color: var(--accent);
    margin-top: 4px;
    width: 16px;
}
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--white); }
.footer-contact strong { color: var(--white); display: block; margin-bottom: 2px; font-size: 13px; }
.footer-contact p { font-size: 13px; margin: 0; }

/* Footer Newsletter */
.footer-newsletter {
    background: rgba(255,255,255,0.05);
    padding: 35px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.newsletter-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.newsletter-text h3 { color: var(--white); margin-bottom: 4px; }
.newsletter-text p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }
.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 450px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--accent); outline: none; }

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1); color: var(--white); }
.whatsapp-btn { background: #25d366; }
.whatsapp-btn:hover { background: #20b858; }
.chatbot-btn { background: var(--primary); }
.chatbot-btn:hover { background: var(--primary-light); }
.quote-btn { background: var(--accent); }
.quote-btn:hover { background: var(--accent-dark); }

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.scroll-top:hover { background: var(--accent); }
.scroll-top.visible { display: flex; }

/* ============================================
   CHATBOT WINDOW
   ============================================ */
.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 370px;
    max-height: 500px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.chatbot-window.open { display: flex; }
.chatbot-header {
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.chatbot-header h4 { font-size: 14px; color: var(--white); margin: 0; }
.chatbot-status { font-size: 12px; color: var(--success); }
.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
}
.chatbot-close:hover { opacity: 1; }
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-msg {
    max-width: 85%;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}
.chat-msg.bot {
    background: var(--light-gray);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-msg.user {
    background: var(--accent);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chatbot-suggestions {
    padding: 8px 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.chatbot-suggestion {
    padding: 6px 14px;
    border: 1px solid var(--light-gray);
    border-radius: 50px;
    font-size: 12px;
    cursor: pointer;
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
}
.chatbot-suggestion:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.chatbot-input {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--light-gray);
}
.chatbot-input input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 14px;
}
.chatbot-input input:focus { border-color: var(--accent); outline: none; }
.chatbot-input button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.chatbot-input button:hover { background: var(--accent-dark); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination a, .pagination span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.pagination a {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--light-gray);
}
.pagination a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.pagination span.current {
    background: var(--accent);
    color: var(--white);
}

/* ============================================
   FILTER SIDEBAR
   ============================================ */
.page-with-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    height: fit-content;
}
.filter-group {
    margin-bottom: 25px;
}
.filter-group h4 {
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-gray);
}
.filter-group select, .filter-group input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 14px;
}

/* ============================================
   ALERTS & MESSAGES
   ============================================ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fefce8; color: #854d0e; border: 1px solid #fef08a; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .packages-grid, .visa-grid, .blog-grid, .umrah-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .flight-routes-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .package-detail-grid { grid-template-columns: 1fr; }
    .page-with-sidebar { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .mobile-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 100;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-item > a { padding: 12px 0; border-bottom: 1px solid var(--light-gray); }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
        display: none;
    }
    .has-dropdown.open .dropdown-menu { display: block; }
    .nav-actions .btn { display: none; }
    .hero-section { height: 450px; }
    .hero-content { padding-left: 20px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 15px; }
    .search-box { flex-direction: column; margin-top: -30px; }
    .search-field { min-width: 100%; }
    .about-content { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .newsletter-wrap { flex-direction: column; text-align: center; }
    .newsletter-form { max-width: 100%; }
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 35px; }
    .chatbot-window { width: calc(100% - 30px); right: 15px; bottom: 90px; }
    .testimonial-card { min-width: calc(100% - 20px); }
    .inc-exc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .packages-grid, .visa-grid, .blog-grid, .umrah-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .flight-routes-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-section { height: 380px; }
    .hero-content h1 { font-size: 1.7rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .container { padding: 0 15px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-light); }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.d-flex { display: flex; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.hidden { display: none; }
.visible { display: block; }
