/* ==========================================================================
   ISMAIL GLOBAL HUB - BESPOKE MODERN ENTERPRISE LUXURY STYLESHEET
   Brand: Ismail Khan Online Seller (Dubai DET License No. 1599777)
   Domain: IsmailGlobalHub.com
   ========================================================================== */

:root {
    --color-navy: #0b1a30;
    --color-navy-dark: #060e1b;
    --color-navy-light: #162c4e;
    --color-navy-hover: #1e3a64;
    --color-gold: #d4af37;
    --color-gold-light: #f5e7a9;
    --color-gold-hover: #c49d28;
    --color-gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9e8a2 50%, #b89728 100%);
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #1ebd5a;
    --color-whatsapp-dark: #128c7e;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-700: #334155;
    --color-slate-600: #475569;
    --color-slate-500: #64748b;
    --color-slate-400: #94a3b8;
    --color-slate-200: #e2e8f0;
    --color-slate-100: #f1f5f9;
    --color-bg: #f8fafc;
    --color-white: #ffffff;
    --color-border: rgba(11, 26, 48, 0.08);
    --color-card-border: rgba(212, 175, 55, 0.25);
    
    --shadow-sm: 0 1px 3px rgba(11, 26, 48, 0.06);
    --shadow-md: 0 4px 12px rgba(11, 26, 48, 0.08);
    --shadow-lg: 0 10px 25px rgba(11, 26, 48, 0.12);
    --shadow-xl: 0 20px 40px rgba(11, 26, 48, 0.18);
    --shadow-gold: 0 6px 20px rgba(212, 175, 55, 0.25);
    --shadow-wa: 0 6px 20px rgba(37, 211, 102, 0.35);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Layout & Container
   -------------------------------------------------------------------------- */
.igh-container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.igh-section {
    padding: 80px 0;
    position: relative;
}

.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.my-3 { margin-top: 16px; margin-bottom: 16px; }
.my-4 { margin-top: 24px; margin-bottom: 24px; }
.ml-2 { margin-left: 8px; }
.igh-py-5 { padding-top: 48px; padding-bottom: 48px; }

.igh-color-wa { color: var(--color-whatsapp) !important; }
.igh-color-gold { color: var(--color-gold) !important; }
.igh-text-success { color: #10b981 !important; }
.igh-text-warning { color: #f59e0b !important; }

/* Dedicated Page Headers */
.igh-page-header {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
    color: #ffffff;
    padding: 60px 0 50px 0;
    border-bottom: 3px solid var(--color-gold);
}
.igh-page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.igh-page-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Section Headers */
.igh-section-header {
    max-width: 780px;
    margin: 0 auto 50px auto;
}

.igh-badge-subhead {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #927517;
    font-size: 0.825rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.igh-section-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.igh-section-desc {
    font-size: 1.05rem;
    color: var(--color-slate-600);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Buttons & CTAs
   -------------------------------------------------------------------------- */
.igh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

.igh-btn-primary {
    background-color: var(--color-navy);
    color: var(--color-white);
    border: 1px solid var(--color-navy);
}
.igh-btn-primary:hover {
    background-color: var(--color-navy-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.igh-btn-gold {
    background: var(--color-gold-gradient);
    color: var(--color-navy);
    font-weight: 700;
    border: 1px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}
.igh-btn-gold:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.igh-btn-whatsapp,
.igh-btn-wa {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border: 1px solid var(--color-whatsapp);
    font-weight: 700;
    box-shadow: var(--shadow-wa);
}
.igh-btn-whatsapp:hover,
.igh-btn-wa:hover {
    background-color: var(--color-whatsapp-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.igh-btn-wa-header {
    background-color: #e8f9ed;
    color: #128c7e;
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 9px 18px;
    font-weight: 700;
    border-radius: var(--radius-md);
}
.igh-btn-wa-header:hover {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
}

.igh-btn-wa-sm {
    padding: 8px 14px;
    font-size: 0.85rem;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 600;
    border-radius: var(--radius-sm);
}
.igh-btn-wa-sm:hover {
    background-color: var(--color-whatsapp-hover);
}

.igh-btn-consultation {
    background-color: var(--color-navy);
    color: var(--color-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: var(--radius-md);
}
.igh-btn-consultation:hover {
    background-color: var(--color-navy-hover);
    color: #ffffff;
    border-color: var(--color-gold);
}

.igh-btn-outline-light {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.igh-btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    color: var(--color-white);
}

.igh-btn-outline {
    background-color: transparent;
    color: var(--color-navy);
    border: 1px solid var(--color-slate-200);
}
.igh-btn-outline:hover {
    background-color: var(--color-slate-100);
    border-color: var(--color-navy);
}

/* --------------------------------------------------------------------------
   Top Utility Bar & Social Links
   -------------------------------------------------------------------------- */
.igh-topbar {
    background-color: var(--color-navy-dark);
    color: #cbd5e1;
    font-size: 0.825rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1010;
}

.igh-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 7px;
    padding-bottom: 7px;
    gap: 15px;
}

.igh-topbar-left,
.igh-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.igh-license-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    color: var(--color-gold-light);
    font-weight: 600;
    font-size: 0.775rem;
    transition: var(--transition);
}
.igh-license-pill:hover {
    background: rgba(212, 175, 55, 0.25);
    color: #ffffff;
}

.igh-pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    animation: igh-pulse 2s infinite;
}

@keyframes igh-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.igh-divider {
    color: rgba(255, 255, 255, 0.2);
}

.igh-topbar-contacts {
    display: flex;
    align-items: center;
    gap: 14px;
}

.igh-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #94a3b8;
    transition: var(--transition);
}
.igh-topbar-link:hover {
    color: #ffffff;
}

/* Social Links Styles */
.igh-topbar-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}
.igh-topbar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    transition: var(--transition);
}
.igh-topbar-social-link:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-1px);
}
.igh-topbar-social-link.facebook:hover { background: #1877f2; color: #fff; }
.igh-topbar-social-link.tiktok:hover { background: #000000; color: #fe2c55; }

.igh-social-icons-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.igh-social-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.igh-social-circle:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-2px);
}
.igh-social-circle.facebook:hover { background: #1877f2; color: #fff; }
.igh-social-circle.tiktok:hover { background: #000000; color: #fe2c55; }

.igh-social-links-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.igh-social-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--color-slate-100);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-navy);
}
.igh-social-pill:hover {
    background: var(--color-navy);
    color: #ffffff;
}

/* Dropdowns in Topbar */
.igh-dropdown-wrapper {
    position: relative;
}

.igh-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: #f1f5f9;
    font-size: 0.775rem;
    font-weight: 500;
    transition: var(--transition);
}
.igh-dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.12);
}

.igh-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 210px;
    background: var(--color-navy);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 6px;
    display: none;
    z-index: 1050;
}
.igh-dropdown-menu.show {
    display: block;
    animation: igh-fade-in 0.2s ease;
}

@keyframes igh-fade-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.igh-dropdown-header {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-slate-400);
    padding: 6px 10px 4px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 4px;
}

.igh-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    color: #f1f5f9;
    font-size: 0.8rem;
    text-align: left;
    transition: var(--transition);
}
.igh-dropdown-item:hover:not(.disabled) {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold-light);
}
.igh-dropdown-item.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    font-weight: 600;
}
.igh-dropdown-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.igh-item-info {
    display: flex;
    flex-direction: column;
}
.igh-item-sub {
    font-size: 0.675rem;
}
.igh-badge-mini {
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 6px;
    border-radius: var(--radius-full);
    margin-left: auto;
}

/* --------------------------------------------------------------------------
   Main Header & Navigation
   -------------------------------------------------------------------------- */
.igh-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.igh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

/* Brand Identity */
.igh-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.igh-brand-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.igh-custom-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.igh-brand-mark {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--color-navy);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(11, 26, 48, 0.15);
    flex-shrink: 0;
}

.igh-mark-accent {
    color: var(--color-gold);
}
.igh-mark-shield {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background: #10b981;
    color: #ffffff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}
.igh-mark-shield svg {
    width: 10px;
    height: 10px;
}

.igh-brand-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    overflow: visible;
}
.igh-brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(0.95rem, 1.35vw, 1.25rem);
    color: var(--color-navy);
    letter-spacing: -0.2px;
    line-height: 1.15;
    white-space: nowrap;
    text-transform: uppercase;
}
.igh-brand-trade {
    font-size: 0.725rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.igh-brand-slogan {
    font-size: 0.675rem;
    color: var(--color-gold-hover);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Nav Menu */
.igh-nav-desktop .igh-nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.igh-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-slate-700);
    position: relative;
    transition: var(--transition);
}
.igh-nav-link:hover {
    color: var(--color-navy);
    background-color: var(--color-slate-100);
}
.igh-nav-link.active {
    color: var(--color-navy);
    background-color: rgba(11, 26, 48, 0.05);
}

.igh-pill-indicator {
    background: var(--color-gold);
    color: var(--color-navy);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 1px 6px;
    border-radius: var(--radius-full);
}

/* Header Actions */
.igh-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.igh-mobile-burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 38px;
    height: 38px;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: var(--color-slate-100);
    border: 1px solid var(--color-slate-200);
}
.igh-burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Drawer */
.igh-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--color-white);
    z-index: 1100;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.igh-mobile-drawer.open {
    right: 0;
}

.igh-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--color-navy);
    color: #ffffff;
}
.igh-drawer-brand .igh-brand-name {
    color: #ffffff;
    font-size: 1rem;
}
.igh-drawer-det {
    font-size: 0.725rem;
    color: var(--color-gold-light);
}
.igh-drawer-close {
    color: #ffffff;
    padding: 6px;
}

.igh-drawer-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.igh-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.igh-drawer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: var(--color-slate-100);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-navy);
}
.igh-drawer-link:hover {
    background: var(--color-navy);
    color: #ffffff;
}

.igh-drawer-socials {
    border-top: 1px solid var(--color-slate-200);
    padding-top: 14px;
}
.igh-drawer-subhead {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-slate-500);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.igh-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.igh-drawer-contacts {
    font-size: 0.825rem;
    color: var(--color-slate-600);
    border-top: 1px solid var(--color-slate-200);
    padding-top: 16px;
}

.igh-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 26, 48, 0.6);
    z-index: 1090;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.igh-drawer-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.igh-hero-section {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 60%, #132847 100%);
    color: #ffffff;
    padding: 90px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.igh-hero-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.igh-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.igh-hero-license-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-full);
    color: var(--color-gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.igh-hero-headline {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.igh-hero-sub {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto 36px auto;
}

.igh-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}

/* 4 Pillars */
.igh-hero-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.igh-pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    color: inherit;
    text-decoration: none;
    display: block;
}
.igh-pillar-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    color: inherit;
}

.igh-pillar-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.igh-pillar-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}
.igh-pillar-content p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.45;
}

/* Hero Stats Counter */
.igh-hero-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(6, 14, 27, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(12px);
}

.igh-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.igh-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1.1;
}
.igh-stat-label {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 500;
    margin-top: 4px;
}
.igh-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   Section 1: Products Showcase
   -------------------------------------------------------------------------- */
.igh-products-section {
    background-color: #ffffff;
}

.igh-products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--color-slate-100);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
}

.igh-filter-pills {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.igh-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-slate-700);
    transition: var(--transition);
}
.igh-filter-btn:hover {
    border-color: var(--color-navy);
    color: var(--color-navy);
}
.igh-filter-btn.active {
    background: var(--color-navy);
    color: #ffffff;
    border-color: var(--color-navy);
}

/* Search Box */
.igh-search-box {
    position: relative;
    min-width: 300px;
    flex: 1;
    max-width: 380px;
}

.igh-search-box input {
    width: 100%;
    padding: 10px 36px 10px 40px;
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition);
}
.igh-search-box input:focus {
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(11, 26, 48, 0.1);
}

.igh-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-slate-400);
    pointer-events: none;
}
.igh-clear-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-slate-400);
}

/* Subcat Chips */
.igh-subcat-chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.igh-subcat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.igh-subcat-tag {
    font-size: 0.775rem;
    background: rgba(11, 26, 48, 0.04);
    border: 1px solid rgba(11, 26, 48, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}
.igh-subcat-tag:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    font-weight: 600;
}

/* Products Grid */
.igh-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.igh-product-card {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.igh-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.4);
}

.igh-product-media {
    position: relative;
    height: 220px;
    background-color: #f1f5f9;
    overflow: hidden;
}
.igh-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.igh-product-card:hover .igh-product-media img {
    transform: scale(1.06);
}

.igh-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-navy);
    color: var(--color-gold-light);
    font-size: 0.725rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.igh-cat-pill {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.igh-product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.igh-brand-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.igh-product-brand {
    font-size: 0.775rem;
    font-weight: 700;
    color: var(--color-gold-hover);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.igh-stars {
    display: flex;
    gap: 2px;
}

.igh-product-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.35;
    margin-bottom: 14px;
}

.igh-product-specs {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.igh-product-specs li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.825rem;
    color: var(--color-slate-600);
}
.igh-spec-icon {
    color: #10b981;
    display: flex;
}

.igh-product-pricing {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--color-slate-100);
    margin-bottom: 18px;
}
.igh-current-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy);
}
.igh-old-price {
    font-size: 0.875rem;
    color: var(--color-slate-400);
    text-decoration: line-through;
    margin-left: 8px;
}
.igh-vat-tag {
    font-size: 0.7rem;
    color: var(--color-slate-500);
    background: var(--color-slate-100);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

.igh-product-footer-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}
.igh-btn-order-wa {
    background-color: var(--color-whatsapp);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.igh-btn-order-wa:hover {
    background-color: var(--color-whatsapp-hover);
}
.igh-btn-quick-inquire {
    background-color: var(--color-slate-100);
    color: var(--color-navy);
    border: 1px solid var(--color-slate-200);
    font-size: 0.825rem;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 4px;
}
.igh-btn-quick-inquire:hover {
    background-color: var(--color-navy);
    color: #ffffff;
}

/* Single Product Detail Layout */
.igh-single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-sm);
}
.igh-sproduct-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-slate-200);
}
.igh-sproduct-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 12px;
}
.igh-sproduct-cta-box {
    background: #f1fbf5;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-lg);
    padding: 20px;
}

/* Wholesale Banner */
.igh-wholesale-banner {
    background: linear-gradient(135deg, var(--color-navy) 0%, #162c4e 100%);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}
.igh-wholesale-tag {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-navy);
    font-size: 0.775rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}
.igh-wholesale-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}
.igh-wholesale-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    max-width: 650px;
    margin-bottom: 16px;
}
.igh-wholesale-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.igh-wbadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-gold-light);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-md);
}

.igh-btn-b2b {
    background: var(--color-whatsapp);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-wa);
    display: flex;
    align-items: center;
    gap: 8px;
}
.igh-btn-b2b:hover {
    background: var(--color-whatsapp-hover);
}
.igh-b2b-subtext {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 6px;
}

/* --------------------------------------------------------------------------
   Section 2: Travel, Visas & Umrah Packages
   -------------------------------------------------------------------------- */
.igh-travel-section {
    background-color: var(--color-bg);
}

.igh-tabs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.igh-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-slate-700);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.igh-tab-btn:hover {
    border-color: var(--color-navy);
    color: var(--color-navy);
}
.igh-tab-btn.active {
    background: var(--color-navy);
    color: var(--color-gold-light);
    border-color: var(--color-navy);
    box-shadow: var(--shadow-md);
}

.igh-tab-pane {
    display: none;
}
.igh-tab-pane.active {
    display: block;
    animation: igh-fade-in 0.3s ease;
}

/* Umrah Switcher */
.igh-umrah-switcher-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.igh-switcher-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-slate-700);
}
.igh-sub-switcher {
    display: inline-flex;
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-full);
    padding: 4px;
}
.igh-sub-btn {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-slate-600);
    transition: var(--transition);
}
.igh-sub-btn.active {
    background: var(--color-gold);
    color: var(--color-navy);
    font-weight: 700;
}

.igh-umrah-division {
    display: none;
}
.igh-umrah-division.active {
    display: block;
}

.igh-division-banner {
    background: #ffffff;
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}
.igh-div-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
}
.igh-div-text p {
    font-size: 0.875rem;
    color: var(--color-slate-600);
}
.igh-div-badge span {
    background: rgba(11, 26, 48, 0.08);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    color: var(--color-navy);
    white-space: nowrap;
}

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

.igh-package-card {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-xl);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.igh-package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.igh-package-card.featured-package {
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}
.igh-package-card.vip-package {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
    border: 2px solid var(--color-gold);
}

.igh-pkg-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #927517;
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}
.igh-pkg-tier {
    display: block;
    font-size: 0.8rem;
    color: var(--color-slate-500);
    font-weight: 600;
}
.igh-pkg-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy);
    margin: 4px 0 8px 0;
}
.igh-pkg-origin, .igh-pkg-duration {
    font-size: 0.825rem;
    color: var(--color-slate-600);
}

.igh-pkg-pricing {
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px dashed var(--color-slate-200);
    border-bottom: 1px dashed var(--color-slate-200);
}
.igh-pkg-price {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-navy);
    display: block;
}
.igh-pkg-note {
    font-size: 0.775rem;
    color: var(--color-slate-500);
}

.igh-pkg-inclusions-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
}
.igh-pkg-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    flex: 1;
}
.igh-pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.825rem;
    color: var(--color-slate-700);
    line-height: 1.4;
}
.igh-feat-icon {
    color: #10b981;
    margin-top: 2px;
}

/* Visas Grid */
.igh-visa-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 24px auto;
}
.igh-visa-intro h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 8px;
}
.igh-visa-types-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.igh-vtype-badge {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-navy);
}

.igh-visas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.igh-visa-card {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}
.igh-visa-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.igh-visa-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.igh-country-flag {
    font-size: 2rem;
    line-height: 1;
}
.igh-visa-country {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
}
.igh-visa-speed {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}
.igh-visa-types-text {
    font-size: 0.85rem;
    color: var(--color-slate-600);
    margin-bottom: 16px;
    line-height: 1.45;
}

/* Airlines Grid */
.igh-flights-overview {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    border: 1px solid var(--color-slate-200);
}
.igh-flights-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 6px;
}
.igh-flights-text p {
    color: var(--color-slate-600);
    font-size: 0.9rem;
}

.igh-airlines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.igh-airline-card {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}
.igh-airline-card:hover {
    border-color: var(--color-navy);
    box-shadow: var(--shadow-sm);
}

.igh-airline-icon {
    width: 38px;
    height: 38px;
    background: rgba(11, 26, 48, 0.06);
    color: var(--color-navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.igh-airline-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-navy);
}
.igh-airline-hub {
    display: block;
    font-size: 0.75rem;
    color: var(--color-slate-500);
}
.igh-airline-tag {
    display: block;
    font-size: 0.7rem;
    color: #10b981;
    font-weight: 600;
}

.igh-hotels-callout {
    background: linear-gradient(135deg, var(--color-navy) 0%, #162c4e 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.igh-hotels-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold-light);
    margin-bottom: 6px;
}
.igh-hotels-info p {
    color: #cbd5e1;
    font-size: 0.875rem;
    max-width: 720px;
}

/* --------------------------------------------------------------------------
   Section 3: UAE Documentation & Corporate PRO
   -------------------------------------------------------------------------- */
.igh-services-section {
    background-color: #ffffff;
}

.igh-emirates-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}
.igh-strip-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy);
}
.igh-emirate-tag {
    background: var(--color-slate-100);
    border: 1px solid var(--color-slate-200);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-slate-700);
}

.igh-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.igh-service-card {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.igh-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-lg);
}

.igh-service-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.igh-service-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #927517;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.igh-service-sub {
    font-size: 0.725rem;
    color: var(--color-gold-hover);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}
.igh-service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.25;
}

.igh-service-desc {
    font-size: 0.825rem;
    color: var(--color-slate-600);
    margin-bottom: 16px;
    line-height: 1.45;
}

.igh-service-features-list {
    flex: 1;
    margin-bottom: 20px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 12px;
}
.igh-feat-subhead {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-slate-700);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.igh-service-features-list ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.igh-service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.775rem;
    color: var(--color-slate-700);
}
.igh-srv-check {
    color: #10b981;
    margin-top: 1px;
}

.igh-btn-service-wa {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: rgba(37, 211, 102, 0.1);
    color: #128c7e;
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.825rem;
    font-weight: 700;
    transition: var(--transition);
}
.igh-btn-service-wa:hover {
    background: var(--color-whatsapp);
    color: #ffffff;
}

/* Corporate PRO Retainer Box */
.igh-pro-retainer-box {
    background: var(--color-navy);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.igh-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold-light);
    font-size: 0.775rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}
.igh-retainer-left h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}
.igh-retainer-left p {
    font-size: 0.9rem;
    color: #cbd5e1;
    max-width: 680px;
}

/* --------------------------------------------------------------------------
   Section 4: Dubai DET License & Legal Transparency (Required Places Only)
   -------------------------------------------------------------------------- */
.igh-license-section {
    background-color: var(--color-bg);
}

.igh-license-card-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.igh-official-license-card {
    background: #ffffff;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.igh-cert-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-slate-100);
    margin-bottom: 24px;
}

.igh-cert-gov-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}
.igh-gov-emblem {
    width: 44px;
    height: 44px;
    background: var(--color-navy);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.igh-gov-dept {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-navy);
    display: block;
    letter-spacing: 0.5px;
}
.igh-gov-subdept {
    font-size: 0.8rem;
    color: var(--color-slate-500);
    font-weight: 600;
}

.igh-cert-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #15803d;
    font-size: 0.775rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}
.igh-status-dot {
    width: 8px;
    height: 8px;
    background-color: #16a34a;
    border-radius: 50%;
    animation: igh-pulse 2s infinite;
}

.igh-cert-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.igh-cert-field {
    background: var(--color-slate-100);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-slate-200);
}
.igh-cert-label {
    display: block;
    font-size: 0.725rem;
    font-weight: 700;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.igh-cert-val {
    font-size: 0.95rem;
    color: var(--color-navy);
    display: block;
}
.igh-highlight-val {
    color: var(--color-navy);
    font-weight: 800;
    font-size: 1.05rem;
}
.igh-code-badge {
    font-family: monospace;
    font-size: 1.1rem;
    color: #0f766e;
    letter-spacing: 1px;
}

.igh-cert-activities {
    background: #fdfaf0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
}
.igh-act-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #927517;
    margin-bottom: 8px;
}
.igh-act-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.igh-act-tag {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.725rem;
    font-weight: 600;
    color: var(--color-navy);
}

.igh-cert-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--color-slate-200);
    flex-wrap: wrap;
    gap: 16px;
}

.igh-cert-seal {
    display: flex;
    align-items: center;
    gap: 12px;
}
.igh-seal-circle {
    width: 48px;
    height: 48px;
    border: 2px dashed var(--color-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}
.igh-seal-circle span {
    font-size: 0.5rem;
    font-weight: 800;
}
.igh-seal-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-navy);
}
.igh-seal-text span {
    font-size: 0.725rem;
    color: var(--color-slate-500);
}

.igh-cert-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.igh-btn-view-license {
    background: var(--color-navy);
    color: var(--color-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.igh-btn-view-license:hover {
    background: var(--color-navy-hover);
    color: #ffffff;
}

/* License Sidebar */
.igh-license-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.igh-trust-card {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.igh-tcard-icon {
    width: 40px;
    height: 40px;
    background: rgba(11, 26, 48, 0.06);
    color: var(--color-navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.igh-trust-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
}
.igh-trust-card p {
    font-size: 0.825rem;
    color: var(--color-slate-600);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Section 5: Testimonials
   -------------------------------------------------------------------------- */
.igh-testimonials-section {
    background-color: #ffffff;
}

.igh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.igh-testimonial-card {
    background: var(--color-slate-100);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.igh-test-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}
.igh-test-quote {
    font-size: 0.95rem;
    color: var(--color-slate-700);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.igh-test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.igh-avatar-letter {
    width: 40px;
    height: 40px;
    background: var(--color-navy);
    color: var(--color-gold);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.igh-author-meta strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-navy);
}
.igh-author-meta span {
    font-size: 0.75rem;
    color: var(--color-slate-500);
}

/* --------------------------------------------------------------------------
   Section 6: Contact & WhatsApp Consultation
   -------------------------------------------------------------------------- */
.igh-contact-section {
    background-color: var(--color-bg);
}

.igh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 30px;
}

.igh-contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.igh-cinfo-card {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.igh-cinfo-icon {
    width: 44px;
    height: 44px;
    background: rgba(11, 26, 48, 0.06);
    color: var(--color-navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.igh-cinfo-details h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 2px;
}
.igh-cinfo-primary {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-slate-800);
}
.igh-cinfo-sub {
    font-size: 0.775rem;
    color: var(--color-slate-500);
}

/* Form Box */
.igh-form-box {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.igh-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 6px;
}
.igh-form-subtitle {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    margin-bottom: 24px;
}

.igh-form-group {
    margin-bottom: 16px;
}
.igh-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
}
.igh-form-group input,
.igh-form-group select,
.igh-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--color-slate-100);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition);
}
.igh-form-group input:focus,
.igh-form-group select:focus,
.igh-form-group textarea:focus {
    background: #ffffff;
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(11, 26, 48, 0.1);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.igh-footer {
    background-color: var(--color-navy-dark);
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.igh-footer-top {
    padding: 70px 0 50px 0;
}

.igh-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 36px;
}

.igh-fbrand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
}
.igh-fbrand-trade {
    font-size: 0.775rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 12px;
}
.igh-fcol-about {
    font-size: 0.825rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
}

.igh-footer-license-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 14px;
}
.igh-flic-header {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-gold-light);
    font-size: 0.825rem;
    margin-bottom: 4px;
}
.igh-flic-nums {
    font-size: 0.775rem;
    color: #cbd5e1;
    margin-bottom: 8px;
}
.igh-flic-verify {
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.igh-flic-verify:hover {
    color: #ffffff;
}

.igh-footer-prod-badge {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: #ffffff;
}

.igh-footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.igh-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.igh-footer-links a {
    font-size: 0.85rem;
    color: #94a3b8;
    transition: var(--transition);
}
.igh-footer-links a:hover {
    color: var(--color-gold-light);
    padding-left: 4px;
}

.igh-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.igh-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
}
.igh-footer-contact-list a:hover {
    color: #ffffff;
}
.igh-ficon {
    color: var(--color-gold);
    margin-top: 2px;
}

.igh-btn-consultation-footer {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 0.825rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}
.igh-btn-consultation-footer:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

.igh-footer-bottom {
    background-color: #040911;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.775rem;
    color: #64748b;
}

.igh-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.igh-bottom-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}
.igh-det-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-gold);
}
.igh-bottom-link {
    color: #cbd5e1;
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Modals
   -------------------------------------------------------------------------- */
.igh-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 14, 27, 0.75);
    backdrop-filter: blur(6px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.igh-modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.igh-modal-box {
    background: #ffffff;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.igh-modal-backdrop.open .igh-modal-box {
    transform: scale(1);
}

.igh-modal-box-wide {
    max-width: 780px;
}

.igh-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--color-navy);
    color: #ffffff;
    border-bottom: 2px solid var(--color-gold);
}
.igh-modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.igh-modal-shield {
    color: var(--color-gold);
}
.igh-modal-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
}
.igh-modal-sub {
    font-size: 0.75rem;
    color: var(--color-gold-light);
    display: block;
}
.igh-modal-close {
    color: #cbd5e1;
    padding: 4px;
}
.igh-modal-close:hover {
    color: #ffffff;
}

.igh-modal-body {
    padding: 24px;
}
.igh-modal-desc {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    margin-bottom: 20px;
}

/* Certificate inside Lightbox */
.igh-rendered-certificate {
    background: #fbfbf9;
    border: 2px solid #b89728;
    border-radius: var(--radius-md);
    padding: 10px;
}
.igh-cert-inner-border {
    border: 1px solid rgba(184, 151, 40, 0.4);
    padding: 20px;
    position: relative;
}
.igh-cert-doc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(184, 151, 40, 0.3);
    margin-bottom: 16px;
}
.igh-cert-doc-emblem {
    display: flex;
    align-items: center;
    gap: 10px;
}
.igh-uae-falcon-icon {
    color: #b89728;
}
.igh-doc-ar {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-navy);
}
.igh-doc-en {
    display: block;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-navy);
}
.igh-doc-sub {
    font-size: 0.7rem;
    color: #64748b;
    display: block;
}

.igh-doctype-pill {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #b89728;
}
.igh-doc-status-badge {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.675rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.igh-cert-doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
.igh-doc-row {
    margin-bottom: 8px;
}
.igh-doc-label {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
}
.igh-doc-val {
    font-size: 0.85rem;
    color: var(--color-navy);
}
.igh-doc-bold {
    font-weight: 700;
}
.igh-doc-highlight {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 800;
    color: #0f766e;
}

.igh-cert-doc-activities {
    background: #fdfaf0;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.775rem;
    margin-bottom: 16px;
}
.igh-act-title-doc {
    font-weight: 700;
    color: #927517;
    margin-bottom: 6px;
    display: block;
}
.igh-cert-doc-activities ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--color-slate-700);
}

.igh-cert-doc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(184, 151, 40, 0.3);
}
.igh-doc-seal-mock {
    display: flex;
    align-items: center;
    gap: 10px;
}
.igh-seal-gold-stamp {
    color: #b89728;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 800;
}
.igh-seal-notes p {
    font-size: 0.675rem;
    color: #64748b;
    line-height: 1.3;
}
.igh-qr-box {
    border: 1px solid var(--color-slate-200);
    padding: 6px;
    text-align: center;
}
.igh-qr-pattern {
    width: 48px;
    height: 48px;
    background: repeating-linear-gradient(45deg, #0b1a30, #0b1a30 4px, #ffffff 4px, #ffffff 8px);
    margin: 0 auto 4px auto;
}
.igh-qr-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: #0b1a30;
}

/* --------------------------------------------------------------------------
   Sticky Floating WhatsApp Widget (with Dual Department Buttons)
   -------------------------------------------------------------------------- */
.igh-floating-wa-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.igh-floating-wa-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-whatsapp);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    position: relative;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.igh-floating-wa-btn:hover {
    transform: scale(1.1);
}
.igh-floating-icon svg {
    width: 32px;
    height: 32px;
}

.igh-badge-unread {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.igh-wa-radar-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.4);
    animation: igh-radar 2.2s infinite ease-out;
    pointer-events: none;
}
.igh-wa-radar-wave.wave-2 {
    animation-delay: 1.1s;
}

@keyframes igh-radar {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.igh-wa-tooltip {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(11, 26, 48, 0.18);
    padding: 16px;
    width: 280px;
    margin-bottom: 12px;
    border: 1px solid var(--color-slate-200);
    position: relative;
    animation: igh-fade-in 0.3s ease;
}
.igh-wa-tooltip-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--color-slate-400);
}
.igh-wa-tooltip-head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-navy);
    margin-bottom: 6px;
}
.igh-wa-avail-dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
}
.igh-wa-tooltip-text {
    font-size: 0.8rem;
    color: var(--color-slate-600);
    line-height: 1.4;
    margin-bottom: 10px;
}
.igh-wa-start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--color-whatsapp);
    color: #ffffff;
    font-size: 0.775rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    text-align: center;
}

/* --------------------------------------------------------------------------
   RTL Styles (Arabic & Urdu Support)
   -------------------------------------------------------------------------- */
html[dir="rtl"],
body.rtl {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .igh-topbar-inner,
html[dir="rtl"] .igh-header-inner,
html[dir="rtl"] .igh-cert-header,
html[dir="rtl"] .igh-footer-bottom-inner {
    direction: rtl;
}

html[dir="rtl"] .igh-dropdown-menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .igh-search-icon {
    left: auto;
    right: 14px;
}
html[dir="rtl"] .igh-search-box input {
    padding: 10px 40px 10px 36px;
}
html[dir="rtl"] .igh-clear-search {
    right: auto;
    left: 12px;
}

html[dir="rtl"] .igh-floating-wa-container {
    right: auto;
    left: 28px;
    align-items: flex-start;
}

html[dir="rtl"] .igh-division-banner {
    border-left: none;
    border-right: 4px solid var(--color-gold);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .igh-hero-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    .igh-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .igh-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .igh-nav-desktop {
        display: none;
    }
    .igh-mobile-burger {
        display: flex;
    }
    .igh-hero-headline {
        font-size: 2.6rem;
    }
    .igh-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .igh-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .igh-visas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .igh-airlines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .igh-license-card-container {
        grid-template-columns: 1fr;
    }
    .igh-contact-grid {
        grid-template-columns: 1fr;
    }
    .igh-wholesale-banner {
        flex-direction: column;
        text-align: center;
    }
    .igh-wholesale-badges {
        justify-content: center;
    }
    .igh-pro-retainer-box {
        flex-direction: column;
        text-align: center;
    }
    .igh-single-product-layout {
        grid-template-columns: 1fr;
    }
    .d-none-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .igh-section {
        padding: 50px 0;
    }
    .igh-hero-headline {
        font-size: 2rem;
    }
    .igh-hero-pillars {
        grid-template-columns: 1fr;
    }
    .igh-hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .igh-stat-divider {
        width: 60px;
        height: 1px;
    }
    .igh-products-grid {
        grid-template-columns: 1fr;
    }
    .igh-umrah-grid {
        grid-template-columns: 1fr;
    }
    .igh-grid-4 {
        grid-template-columns: 1fr;
    }
    .igh-visas-grid {
        grid-template-columns: 1fr;
    }
    .igh-services-grid {
        grid-template-columns: 1fr;
    }
    .igh-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .igh-footer-grid {
        grid-template-columns: 1fr;
    }
    .igh-cert-body {
        grid-template-columns: 1fr;
    }
    .igh-cert-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .igh-header-inner {
        height: 70px;
    }
    .igh-brand-name {
        font-size: 1rem;
    }
    .igh-btn-consultation {
        display: none;
    }
    .igh-search-box {
        min-width: 100%;
        max-width: 100%;
    }
    .igh-products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ==========================================================================
   PRODUCT SPECIFICATIONS LIGHTBOX & TRAVELONEAIR UMRAH STYLES
   ========================================================================== */
.igh-modal-product-box {
    max-width: 820px;
    width: 95%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.igh-pmodal-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}

.igh-pmodal-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid var(--color-slate-200);
}

.igh-pmodal-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.igh-pmodal-badge-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.igh-warranty-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.775rem;
    font-weight: 600;
}

.igh-pmodal-subhead {
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 16px 0 10px 0;
}

.igh-pmodal-specs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.igh-pmodal-specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-slate-700);
    line-height: 1.45;
}

.igh-pmodal-specs-list .igh-spec-bullet {
    color: #10b981;
    font-weight: 800;
}

/* TravelOneAir Style Umrah Enhancements */
.igh-pkg-nights-pill {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #926b0a;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.igh-pkg-hotels-box {
    background: #f8fafc;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    text-align: left;
}

.igh-hotel-item {
    font-size: 0.825rem;
    line-height: 1.4;
}

.igh-hotel-tag {
    font-weight: 700;
    color: var(--color-navy);
    margin-right: 4px;
}

.igh-hotel-name {
    color: var(--color-slate-700);
}

.igh-pkg-sharing-wrap {
    text-align: left;
}

.igh-sharing-label {
    display: block;
    font-size: 0.775rem;
    font-weight: 700;
    color: var(--color-slate-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.igh-pkg-sharing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.igh-sharing-col {
    background: #f1f5f9;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    padding: 8px;
    text-align: center;
    transition: var(--transition);
}

.igh-sharing-col:hover {
    border-color: var(--color-gold);
    background: #fffdf5;
}

.igh-sharing-type {
    display: block;
    font-size: 0.725rem;
    font-weight: 700;
    color: var(--color-slate-500);
    text-transform: uppercase;
}

.igh-sharing-rate {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-top: 2px;
}

.igh-btn-pkg-details {
    background: #f8fafc;
    color: var(--color-navy);
    border: 1px solid var(--color-slate-300);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.igh-btn-pkg-details:hover {
    background: var(--color-navy);
    color: #ffffff;
    border-color: var(--color-navy);
}

.igh-modal-umrah-box {
    max-width: 680px;
    width: 95%;
    border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
    .igh-pmodal-layout {
        grid-template-columns: 1fr;
    }
    .igh-pmodal-img {
        height: 220px;
    }
}

/* ==========================================================================
   REGIONAL EXPANSION HUBS & MULTI-COUNTRY SERVICES STYLING
   ========================================================================== */
.igh-brand-svg-icon {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.igh-regional-hubs-container {
    background: linear-gradient(135deg, #09172c 0%, #0d2242 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(11, 26, 48, 0.15);
}

.igh-hubs-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 28px auto;
}

.igh-hubs-kicker {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.igh-hubs-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.igh-hubs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.igh-hub-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.igh-hub-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.igh-hub-card.active-hq {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--color-gold);
}

.igh-hub-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.igh-hub-flag {
    font-size: 2rem;
    line-height: 1;
}

.igh-hub-country {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.igh-hub-badge {
    display: inline-block;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.badge-active {
    background: #065f46;
    color: #34d399;
    border: 1px solid #059669;
}

.badge-expansion {
    background: rgba(212, 175, 55, 0.2);
    color: #fce082;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.igh-hub-address {
    font-size: 0.825rem;
    color: #cbd5e1;
    margin: 6px 0;
}

.igh-hub-license {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.igh-hub-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
}

.igh-hub-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.825rem;
    padding: 9px 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.igh-hub-cta:hover {
    background: #128c7e;
    color: #ffffff;
}

/* Country Tabs for Services */
.igh-serv-country-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.igh-serv-country-btn {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-navy);
    cursor: pointer;
    transition: var(--transition);
}

.igh-serv-country-btn:hover {
    border-color: var(--color-gold);
    background: #fdfcf7;
}

.igh-serv-country-btn.active {
    background: var(--color-navy);
    color: #ffffff;
    border-color: var(--color-navy);
    box-shadow: var(--shadow-sm);
}

.igh-service-country-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: #855f05;
    border: 1px solid rgba(212, 175, 55, 0.35);
    font-size: 0.725rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .igh-hubs-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   SINGLE PRODUCT PAGE STYLES
   ========================================================================= */
.igh-single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: flex-start;
}

.igh-sproduct-gallery {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.igh-sproduct-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f8fafc;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.igh-sproduct-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.igh-sproduct-main-img:hover {
    transform: scale(1.03);
}

.igh-sproduct-trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-slate-200);
}

.igh-ptrust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.igh-ptrust-item span {
    font-size: 1.4rem;
}

.igh-ptrust-item strong {
    display: block;
    color: var(--color-navy);
    font-size: 0.8rem;
    line-height: 1.2;
}

.igh-ptrust-item small {
    display: block;
    color: var(--color-slate-500);
    font-size: 0.725rem;
}

.igh-sproduct-info {
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.igh-sproduct-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.3;
    margin: 8px 0 16px;
}

.igh-sproduct-pricing {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
}

.igh-sproduct-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.igh-shighlight-pill {
    background: #f8fafc;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.igh-sh-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.igh-sh-lbl {
    display: block;
    font-size: 0.725rem;
    color: var(--color-slate-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.igh-sh-val {
    display: block;
    font-size: 0.9rem;
    color: var(--color-navy);
    font-weight: 700;
}

.igh-wholesale-callout-box {
    background: rgba(212, 175, 55, 0.12);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #855f05;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .igh-single-product-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .igh-sproduct-gallery {
        position: static;
    }
}


