/* Molla Travels - Premium Travel Agency Theme CSS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #006f14;
    --primary-dark: #00540f;
    --primary-light: #059669;
    --primary-gradient: linear-gradient(135deg, #006f14 0%, #009624 100%);
    --accent: #ed0925;
    --accent-hover: #c4061c;
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --dark: #090d16;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --gold: #f59e0b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 35px -5px rgba(0,0,0,0.12), 0 10px 10px -5px rgba(0,0,0,0.03);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar */
.topbar {
    background: #090e1a;
    color: #94a3b8;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
}
.topbar-item i {
    color: #22c55e;
    font-size: 13px;
}
.topbar a {
    color: #cbd5e1;
}
.topbar a:hover {
    color: #ffffff;
}
.topbar-socials {
    display: flex;
    gap: 8px;
}
.topbar-socials a {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #94a3b8;
    transition: var(--transition);
}
.topbar-socials a:hover {
    background: var(--primary);
    color: white;
}
.topbar-admin-badge {
    border-left: 1px solid rgba(255,255,255,0.12);
    padding-left: 12px;
}
.topbar-admin-badge a {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80 !important;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11.5px;
    transition: var(--transition);
}
.topbar-admin-badge a:hover {
    background: rgba(74, 222, 128, 0.2);
}

/* Main Header */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid #f1f5f9;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 15px;
}
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand-logo-badge {
    background: var(--primary-gradient);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,111,20,0.25);
}
.brand-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.4px;
}
.brand-text span {
    font-size: 10.5px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Nav Menu */
.nav-container {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 18px;
}
.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(0,111,20,0.25);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #00540f 0%, #007a1c 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,111,20,0.35);
    color: white;
}
.btn-accent {
    background: var(--accent);
    color: white;
}
.btn-accent:hover {
    background: var(--accent-hover);
    color: white;
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-main);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f0fdf4;
}
.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}
.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #041c10 0%, #0f172a 100%);
    padding: 60px 0 100px;
    color: white;
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 111, 20, 0.35);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #4ade80;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.hero-title span {
    background: linear-gradient(120deg, #4ade80 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 17px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Multi-Tab Booking Search Box */
.search-card {
    position: relative;
    z-index: 5;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    padding: 24px;
    max-width: 1140px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.8);
}
.search-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 20px;
}
.search-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.search-tab-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.search-tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(0,111,20,0.25);
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Styles */
.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    align-items: end;
}
.form-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: end;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-control {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: #0f172a;
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,111,20,0.15);
}

/* Airlines Partner Slider */
.airlines-strip {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}
.strip-header {
    text-align: center;
    margin-bottom: 20px;
}
.strip-header span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}
.airlines-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.airline-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    transition: var(--transition);
}
.airline-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.airline-item i {
    color: var(--primary);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
}

/* Visa Cards Grid */
.section-padding {
    padding: 70px 0;
}
.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.visa-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.visa-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.visa-card-body {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.visa-flag-img {
    width: 52px;
    height: 38px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}
.visa-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}
.visa-info p {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
}
.visa-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Indian Visa Feature Showcase Banner */
.india-visa-banner {
    background: linear-gradient(135deg, #091a10 0%, #11291b 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
    border: 1px solid rgba(74, 222, 128, 0.2);
}
.india-visa-content h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.25;
}
.india-visa-content p {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 20px;
}
.india-visa-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.visa-type-tag {
    background: rgba(255,255,255,0.08);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.visa-type-tag i {
    color: #4ade80;
}
.india-visa-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Tour Packages Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}
.package-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.package-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.package-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.package-card:hover .package-img-box img {
    transform: scale(1.08);
}
.package-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.package-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 5px;
}
.package-content {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.package-destination {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}
.package-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 12px;
}
.package-features {
    list-style: none;
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.package-features li {
    font-size: 12px;
    background: #f1f5f9;
    color: #475569;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.package-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.package-price-box span {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}
.package-price-box strong {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}
.package-price-box del {
    font-size: 13px;
    color: #94a3b8;
    margin-left: 4px;
}

/* Umrah Packages Grid */
.umrah-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.umrah-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.umrah-card:hover, .umrah-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}
.umrah-card-header {
    background: #f8fafc;
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.umrah-tier-pill {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.umrah-card-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.umrah-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}
.umrah-price span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}
.umrah-card-body {
    padding: 24px;
    flex: 1;
}
.umrah-details-list {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.umrah-details-list li {
    font-size: 13.5px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #334155;
}
.umrah-details-list li i {
    color: var(--primary);
    margin-top: 3px;
}

/* Why Choose Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.why-us-card {
    background: #ffffff;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.why-us-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f0fdf4;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}
.why-us-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.why-us-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonial Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.rating-stars {
    color: #f59e0b;
    margin-bottom: 14px;
    font-size: 14px;
}
.review-text {
    font-size: 14px;
    color: #334155;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}
.client-meta h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}
.client-meta p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}
.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.25s ease;
}
.modal-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    padding: 30px;
    position: relative;
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}
.modal-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}
.modal-close {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    font-size: 16px;
    transition: var(--transition);
}
.modal-close:hover {
    background: #fee2e2;
    color: #dc2626;
}

/* Footer */
.main-footer {
    background: #090e1a;
    color: #94a3b8;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0;
    color: #94a3b8;
}
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 14px;
    color: #94a3b8;
    transition: var(--transition);
}
.footer-links a:hover {
    color: #4ade80;
    padding-left: 4px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    margin-bottom: 14px;
    color: #cbd5e1;
}
.footer-contact-item i {
    color: #4ade80;
    font-size: 16px;
    margin-top: 3px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* Alert Notification Banner */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .header-wrapper {
        padding: 8px 0;
        gap: 10px;
    }
    .brand-logo-badge {
        width: 36px;
        height: 36px;
        font-size: 17px;
        border-radius: 8px;
    }
    .brand-text h1 {
        font-size: 16px;
        line-height: 1.15;
    }
    .brand-text span {
        font-size: 9.5px;
    }
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        transition: 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }
    .nav-menu.active {
        left: 0;
    }
    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #f1f5f9;
        border-radius: 8px;
        color: #0f172a;
        font-size: 18px;
        border: 1px solid #e2e8f0;
        cursor: pointer;
        transition: var(--transition);
        flex-shrink: 0;
    }
    .mobile-toggle:hover {
        background: #e2e8f0;
        color: var(--primary);
    }
    .btn-appointment {
        padding: 8px 14px;
        font-size: 12.5px;
    }
    .hero-section {
        padding: 40px 0 80px;
    }
    .hero-title {
        font-size: 30px;
    }
    .search-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding-bottom: 10px;
        margin-bottom: 16px;
    }
    .search-tabs::-webkit-scrollbar {
        display: none;
    }
    .search-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 30px;
    }
    .india-visa-banner {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .topbar {
        display: none;
    }
    .header-wrapper {
        padding: 6px 0;
        gap: 8px;
    }
    .logo-box {
        gap: 8px;
        min-width: 0;
        flex: 1 1 auto;
    }
    .brand-logo-badge {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    .brand-text {
        min-width: 0;
        overflow: hidden;
    }
    .brand-text h1 {
        font-size: 13.5px;
        line-height: 1.15;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .brand-text span {
        font-size: 8.5px;
        letter-spacing: 0.4px;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .header-actions {
        gap: 6px;
        flex-shrink: 0;
    }
    .btn-appointment {
        padding: 7px 10px;
        font-size: 11.5px;
        border-radius: 6px;
        gap: 5px;
    }
    .mobile-toggle {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    .hero-section {
        padding: 30px 0 60px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 12px;
    }
    .hero-title {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 8px;
    }
    .hero-subtitle {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .search-card {
        padding: 16px 14px;
        border-radius: 14px;
    }
    .form-grid-3, .form-grid-4 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .btn-appointment .btn-appointment-text {
        display: none;
    }
    .btn-appointment {
        padding: 7px 10px;
    }
    .brand-text h1 {
        font-size: 12.5px;
    }
}
