/* Root Variables */
:root {
    --primary: #0a2540; /* Richer dark blue */
    --secondary: #d4af37; /* Premium Gold */
    --accent: #10b981; /* Fresh Emerald */
    --logo-green: #059669;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px -10px rgba(10, 37, 64, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ============================
   GLOBAL LOGO COLOR SYSTEM
   Same colors on EVERY page
==============================*/
.logo-green { color: #059669 !important; }          /* Umrah */
.logo-gold  { color: #d4af37 !important; }          /* My    */
.logo-navy  { color: #0a2540 !important; }          /* Trip  — light backgrounds */

/* Trip color on dark backgrounds (footer) */
.main-footer .logo-navy {
    color: #ffffff !important;
}

/* Global logo tagline gradient — always the same */
.logo-tagline, .mob-logo-tagline, .lc-tagline {
    background: linear-gradient(90deg, #059669 0%, #d4af37 50%, #0a2540 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    display: block !important;
    text-align: left !important;
    margin-top: 4px !important;
}

/* Footer tagline visibility override */
.main-footer .logo-tagline {
    background: linear-gradient(90deg, #059669 0%, #d4af37 50%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}





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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--secondary);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

/* Buttons */
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.7)), url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?q=80&w=2070&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--secondary), #b8962d);
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8962d, var(--secondary));
}

.btn-primary:hover::before {
    left: 100%;
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Package Cards Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid #f0f0f0;
}

.package-nights-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    padding: 30px 20px 12px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.package-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
}

.package-body {
    padding: 30px;
}

.package-body h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.package-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.package-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.package-price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--secondary);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Brand Marquee */
@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.brand-marquee {
    padding: 60px 0;
    background: var(--bg-light);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.brand-marquee::before,
.brand-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 10%, transparent 100%);
}

.brand-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 10%, transparent 100%);
}

.marquee-content {
    display: inline-block;
    animation: marqueeRight 40s linear infinite;
    white-space: nowrap;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.brand-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 16px;
    margin-right: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 51, 102, 0.08);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.12);
    border-color: var(--secondary);
}


/* Category Sections & Tabs */
.package-tabs .tab-btn {
    padding: 12px 30px;
    border-radius: 50px;
    background: white;
    color: var(--text-light);
    border: 1px solid #DDD;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.package-tabs .tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.package-tabs .tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.category-section {
    padding: 80px 0;
}

.category-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.category-header h2 {
    font-size: 32px;
    color: var(--primary);
}

.category-header p {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* Premium Cards */
.price-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.price-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
    z-index: -1;
}

.price-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.3);
}

.package-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
}

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

.package-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 800;
    background: var(--secondary);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-nights-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(10,37,64, 0.95), rgba(10,37,64, 0));
    color: var(--white);
    padding: 40px 25px 20px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.price-card-body {
    padding: 30px;
    background: var(--white);
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.price-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #F0F0F0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 700;
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 50px;
    color: var(--primary);
}

.card-rating {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.price-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.card-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.meta-item {
    font-size: 13px;
    color: var(--text-light);
}

.highlighted-meta {
    background: rgba(0, 163, 108, 0.1);
    color: var(--accent) !important;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    border-left: 3px solid var(--accent);
}

.meta-item strong {
    display: block;
    color: var(--text-dark);
}

.price-box {
    margin-bottom: 20px;
}

.price-box .from {
    font-size: 12px;
    color: var(--text-light);
}

.price-box .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.price-box .pp {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* Content Layout */
.seo-content {
    background: var(--bg-light);
    padding: 80px 0;
}

.content-box {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.content-box h2 {
    margin-bottom: 25px;
    color: var(--primary);
}

.content-box p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #EEE;
}

.price-table th {
    background: var(--primary);
    color: white;
}

/* ======================================================
   GLOBAL MOBILE RESPONSIVE SYSTEM
   Breakpoints: 1200 / 1024 / 900 / 768 / 640 / 480 / 380
======================================================*/

/* Always hide on mobile */
@media (max-width: 900px) {
    .hide-mobile { display: none !important; }
}
@media (min-width: 901px) {
    .hide-desktop { display: none !important; }
}

/* ── 1200px: Large tablets / small laptops ── */
@media (max-width: 1200px) {
    .package-grid { grid-template-columns: repeat(3, 1fr); }
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }
}

/* ── 1024px: Tablets landscape ── */
@media (max-width: 1024px) {
    .package-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title h2 { font-size: 36px; }
    .hero-content h1 { font-size: 48px; }
    .section { padding: 70px 0; }

    /* Generic 2-col grids collapse */
    .grid-2, .two-col, [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: 1.5fr 1fr"],
    [style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ── 900px: Tablets portrait ── */
@media (max-width: 900px) {
    body { font-size: 16px; }

    /* Hero */
    .hero { height: auto; min-height: 75vh; padding: 120px 0 60px; }
    .hero-content h1 { font-size: 38px; line-height: 1.2; }
    .hero-content p { font-size: 17px; }
    .hero-widget { display: none !important; }

    /* Sections */
    .section { padding: 60px 0; }
    .section-title { margin-bottom: 40px; }
    .section-title h2 { font-size: 30px; }

    /* Category header */
    .category-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .category-header h2 { font-size: 26px; }

    /* Package grid */
    .package-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Tables: horizontal scroll */
    .table-responsive, .price-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    table { min-width: 600px; }

    /* Forms */
    .form-row, [style*="grid-template-columns: 1fr 1fr"] { 
        grid-template-columns: 1fr !important; gap: 16px !important; 
    }

    /* Buttons */
    .btn-primary { padding: 13px 26px; font-size: 14px; }

    /* Dashboard grid */
    .dashboard-wrap { grid-template-columns: 1fr !important; }
    .sidebar-menu { margin-bottom: 20px; }

    /* Package tabs */
    .package-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
    .package-tabs .tab-btn { padding: 10px 18px; font-size: 14px; }

    /* Brand marquee */
    .brand-marquee { padding: 30px 0; }

    /* Generic 3/4-col inline grids */
    [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr 1fr !important; }
    [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr 1fr !important; }
}

/* ── 768px: Mobile landscape / small tablets ── */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 32px; }
    .section-title h2 { font-size: 26px; }
    .section { padding: 50px 0; }

    /* Package cards */
    .package-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .package-body { padding: 18px; }
    .package-body h3 { font-size: 18px; }
    .package-price { font-size: 22px; }

    /* Price / booking cards */
    .price-card-body { padding: 20px !important; }
    .price-box .price { font-size: 32px !important; }

    /* Inline flex rows → column */
    [style*="display: flex; justify-content: space-between"] {
        flex-wrap: wrap !important; gap: 15px !important;
    }

    /* Sticky sidebar on detail pages */
    .price-card-book { position: relative !important; top: auto !important; }

    /* FAQ / accordion */
    details summary { font-size: 15px; }

    /* Contact / info grids */
    [style*="grid-template-columns: 1.5fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: 1fr 1.5fr"] { grid-template-columns: 1fr !important; }

    /* Book / visa form layout */
    .book-wrap { grid-template-columns: 1fr !important; }
    .price-card-book { margin-top: 30px; }

    /* Booking cards on dashboard */
    .bc-details { grid-template-columns: 1fr 1fr !important; }

    /* Blog grid */
    [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr 1fr !important; }

    /* Calculator */
    .calc-grid, [style*="grid-template-columns: 1fr 1fr; gap: 40px"] {
        grid-template-columns: 1fr !important; gap: 24px !important;
    }
}

/* ── 640px: Mobile portrait ── */
@media (max-width: 640px) {
    body { font-size: 15px; }
    .container { padding: 0 16px; }
    .section { padding: 40px 0; }

    /* Hero */
    .hero { min-height: 60vh; padding: 100px 0 50px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 15px; }
    .hero-content .btn-primary { width: 100%; justify-content: center; }

    /* Package grid → single col */
    .package-grid { grid-template-columns: 1fr; }
    .package-img { height: 200px; }

    /* All inline grids → 1 col */
    [style*="grid-template-columns: repeat(2"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr !important; }

    /* Section titles */
    .section-title h2 { font-size: 24px; }
    .section-title p { font-size: 14px; }
    .section-title { margin-bottom: 28px; }

    /* Buttons full width where appropriate */
    .hero .btn-primary, .cta .btn-primary { width: 100%; justify-content: center; }
    .btn-primary { padding: 12px 22px; font-size: 14px; }
    .btn-whatsapp { padding: 12px 20px; font-size: 14px; }

    /* Forms */
    input, select, textarea { font-size: 16px !important; } /* prevent zoom on iOS */
    .fg input, .fg select, .fg textarea { font-size: 16px; }

    /* Tables: scroll */
    .price-table { min-width: 520px; }
    .price-table th, .price-table td { padding: 10px 12px; font-size: 13px; }

    /* Booking detail cards */
    .bc-header { flex-direction: column; align-items: flex-start !important; }
    .bc-details { grid-template-columns: 1fr 1fr !important; gap: 14px; }
    .booking-card { padding: 22px 18px !important; }
    .bc-header h3 { font-size: 18px !important; }

    /* Dashboard sidebar → horizontal scroll tabs */
    .sidebar-menu ul { display: flex; overflow-x: auto; gap: 8px; padding-bottom: 5px; }
    .sidebar-menu li { margin-bottom: 0; flex-shrink: 0; }
    .sidebar-menu a { white-space: nowrap; padding: 10px 16px; border-radius: 30px; }

    /* Invoice */
    .invoice-header { flex-direction: column !important; gap: 15px !important; }
    .invoice-table th, .invoice-table td { font-size: 12px; padding: 8px; }

    /* FAQs */
    details { padding: 16px !important; }
    details summary { font-size: 14px !important; }

    /* Floating WhatsApp */
    .floating-whatsapp { bottom: 15px; right: 15px; width: 50px; height: 50px; }
    .floating-whatsapp img { width: 28px; }

    /* Top bar hide on very small */
    .top-bar { display: none; }
}

/* ── 480px: Small phones ── */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 26px; }
    .section-title h2 { font-size: 22px; }
    .logo-text { font-size: 22px !important; }
    .logo-tagline { display: none !important; }

    /* Pax blocks in visa form */
    .pax-block { padding: 20px 15px !important; }
    .pax-label { font-size: 11px !important; padding: 4px 14px !important; }

    /* Price card */
    .pc-total .t-val { font-size: 22px !important; }

    /* Admin cards */
    .overview-cards { grid-template-columns: 1fr 1fr !important; }

    /* Blog cards */
    .blog-card { border-radius: 12px; }

    /* Tabs pill wrap */
    .package-tabs .tab-btn { padding: 8px 14px; font-size: 13px; }
}

/* ── 380px: Very small (Galaxy S8 etc.) ── */
@media (max-width: 380px) {
    .hero-content h1 { font-size: 23px; }
    .btn-primary { padding: 11px 18px; font-size: 13px; }
    .overview-cards { grid-template-columns: 1fr !important; }
    .bc-details { grid-template-columns: 1fr !important; }
    .sidebar-menu a { font-size: 13px; }
}

/* ── Utility: always-hidden on mobile ── */
@media (max-width: 900px) {
    .hide-mobile { display: none !important; }
}
@media (min-width: 901px) {
    .show-mobile-only { display: none !important; }
}

/* ── Smooth touch scrolling ── */
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
* { -webkit-font-smoothing: antialiased; }

/* ── Image overflow fix ── */
img { max-width: 100%; height: auto; }

/* ── Prevent horizontal overflow ── */
.container, section, footer, header { max-width: 100%; }
html, body { overflow-x: hidden; max-width: 100%; }

/* ── Centralized Responsive Font Sizes to override inline styles on mobile ── */
@media (max-width: 900px) {
    h1, .hero h1, .hero-content h1, 
    [style*="font-size:6"], [style*="font-size: 6"], 
    [style*="font-size:5"], [style*="font-size: 5"] {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
    h2, .section-title h2, 
    [style*="font-size:4"], [style*="font-size: 4"] {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
}
@media (max-width: 640px) {
    h1, .hero h1, .hero-content h1, 
    [style*="font-size:6"], [style*="font-size: 6"], 
    [style*="font-size:5"], [style*="font-size: 5"] {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    h2, .section-title h2, 
    [style*="font-size:4"], [style*="font-size: 4"] {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
}
@media (max-width: 480px) {
    h1, .hero h1, .hero-content h1, 
    [style*="font-size:6"], [style*="font-size: 6"], 
    [style*="font-size:5"], [style*="font-size: 5"] {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }
    h2, .section-title h2, 
    [style*="font-size:4"], [style*="font-size: 4"] {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
}

