/* ==========================================================================
   UMAR TRAVEL - OFFICIAL DESIGN SYSTEM & STYLESHEET (FIXED FOOTER v1.3.2)
   Brand: UMAR Travel (PT UMAR SINERGI BERSAMA / PT Maktap Shiyahah Alharbi)
   PPIU License: Kemenag RI No. U.228/2020
   Tagline: Sahabat Menuju Baitullah
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Brand Palette - BRAND_GUIDE.md */
    --color-gold-primary: #F8BE20;
    --color-gold-dark: #B8860B;
    --color-gold-light: #FFF8E7;
    --color-gold-hover: #E0AA1B;
    --color-black-gold: #1D1D1B;
    --color-black-secondary: #2A2A26;
    --color-black-surface: #141412;
    --color-cream-sand: #F4F1EA;
    --color-cream-light: #FAF8F5;
    --color-white: #FFFFFF;
    
    /* Neutrals & Utility */
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1EBE57;
    
    /* Status Colors */
    --color-status-active-bg: #ECFDF5;
    --color-status-active-text: #065F46;
    --color-status-active-border: #A7F3D0;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-arabic: 'Amiri', serif;
    
    /* Spacing & Layout */
    --container-max-width: 1240px;
    --container-padding: 1.25rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(29, 29, 27, 0.05);
    --shadow-md: 0 8px 24px rgba(29, 29, 27, 0.08);
    --shadow-lg: 0 16px 40px rgba(29, 29, 27, 0.12);
    --shadow-gold: 0 10px 30px rgba(248, 190, 32, 0.3);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream-sand);
    color: var(--color-black-gold);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
    /* Allow normal text wrapping for generic links */
    white-space: normal;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input, select, textarea {
    font-family: inherit;
    outline: none;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-black-gold);
    line-height: 1.25;
}

.text-gold { color: var(--color-gold-primary); }
.text-gold-dark { color: var(--color-gold-dark); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-gray-600); }

.arabic-text {
    font-family: var(--font-arabic);
    direction: rtl;
    font-size: 1.75rem;
    color: var(--color-gold-dark);
    line-height: 2;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 4.5rem 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(248, 190, 32, 0.15);
    border: 1px solid var(--color-gold-primary);
    color: var(--color-gold-dark);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-gray-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    text-align: center;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.825rem;
}

.btn-primary {
    background-color: var(--color-gold-primary);
    color: var(--color-black-gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(248, 190, 32, 0.4);
}

.btn-outline-gold {
    background-color: transparent;
    border: 2px solid var(--color-gold-primary);
    color: var(--color-gold-primary);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold-primary);
    color: var(--color-black-gold);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* --------------------------------------------------------------------------
   4. TOPBAR & NAVIGATION
   -------------------------------------------------------------------------- */
.topbar {
    background-color: var(--color-black-surface);
    color: var(--color-gray-300);
    font-size: 0.825rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.topbar-info-item i {
    color: var(--color-gold-primary);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-social a {
    color: var(--color-gray-400);
}

.topbar-social a:hover {
    color: var(--color-gold-primary);
}

/* Header Nav */
.header-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(29, 29, 27, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(248, 190, 32, 0.15);
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.brand-logo img {
    height: 44px;
    width: auto;
}

/* Desktop Nav Menu - Tight gap and explicit nowrap ONLY for nav links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    list-style: none;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold-primary);
    transition: var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-gold-primary);
    background: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-nav-cta {
    display: none;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--color-black-gold);
    overflow: hidden;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(29, 29, 27, 0.85) 0%, rgba(29, 29, 27, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    max-width: 780px;
    padding: 4rem 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    background: rgba(248, 190, 32, 0.15);
    border: 1px solid var(--color-gold-primary);
    border-radius: var(--radius-full);
    color: var(--color-gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--color-white);
}

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

.hero-description {
    font-size: 1.15rem;
    color: var(--color-gray-300);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold-primary);
    font-family: var(--font-body);
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--color-gray-300);
}

/* --------------------------------------------------------------------------
   6. TRUST BADGES, AIRLINE & HOTEL LOGOS SLIDERS
   -------------------------------------------------------------------------- */
.trust-section {
    background-color: var(--color-white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}

.trust-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.trust-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black-gold);
    text-align: center;
}

.trust-badges-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.trust-badge-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

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

.partner-slider-block {
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

.partner-slider-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

/* Infinite Marquee Track */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.75rem 0;
    margin-bottom: 1.25rem;
}

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

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

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

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    height: 65px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition-normal);
}

.marquee-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   7. VALUE SOCIAL & MASJID SOPHIA SUPPORT
   -------------------------------------------------------------------------- */
.csr-section {
    background-color: var(--color-cream-sand);
    position: relative;
}

.csr-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.csr-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.csr-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.csr-badge-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(29, 29, 27, 0.92);
    color: var(--color-gold-primary);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.csr-badge-overlay:hover {
    background: var(--color-gold-primary);
    color: var(--color-black-gold);
    transform: translateY(-2px);
}

.csr-content h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.csr-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-black-gold);
    background: var(--color-cream-light);
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--color-gold-primary);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. AGENT VERIFICATION CHECKER MODULE
   -------------------------------------------------------------------------- */
.agent-checker-section {
    background: linear-gradient(135deg, var(--color-black-gold) 0%, var(--color-black-secondary) 100%);
    color: var(--color-white);
    position: relative;
}

.agent-checker-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(248, 190, 32, 0.25);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.search-box-wrapper {
    max-width: 780px;
    margin: 0 auto 2rem auto;
}

.search-form {
    display: flex;
    gap: 0.75rem;
    background: var(--color-white);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    gap: 0.75rem;
    color: var(--color-gray-400);
}

.search-input-group input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--color-black-gold);
}

.search-btn {
    background: var(--color-gold-primary);
    color: var(--color-black-gold);
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background: var(--color-gold-hover);
}

.checker-tips {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-300);
}

.checker-tips code {
    background: rgba(248, 190, 32, 0.2);
    color: var(--color-gold-primary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
}

/* Agent Results Box */
.agent-result-container {
    margin-top: 2rem;
    display: none;
}

.agent-result-card {
    background: var(--color-white);
    color: var(--color-black-gold);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-left: 6px solid var(--color-status-active-text);
}

.agent-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-gray-200);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.agent-name-title h4 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.agent-id-badge {
    display: inline-block;
    background: var(--color-gold-light);
    color: var(--color-gold-dark);
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.status-badge-active {
    background: var(--color-status-active-bg);
    color: var(--color-status-active-text);
    border: 1px solid var(--color-status-active-border);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.agent-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.agent-detail-item label {
    font-size: 0.8rem;
    color: var(--color-gray-600);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.2rem;
}

.agent-detail-item p {
    font-weight: 600;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   9. KATALOG PAKET UMRAH INTERAKTIF
   -------------------------------------------------------------------------- */
.packages-section {
    background-color: var(--color-white);
}

.filter-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-full);
    background: var(--color-cream-sand);
    color: var(--color-black-gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    border: 1px solid var(--color-gray-200);
    white-space: nowrap;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-black-gold);
    color: var(--color-gold-primary);
    border-color: var(--color-black-gold);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.package-card-header {
    background: var(--color-black-gold);
    color: var(--color-white);
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.package-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-segment-badge {
    background: var(--color-gold-primary);
    color: var(--color-black-gold);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
}

.package-card-header h3 {
    color: var(--color-white);
    font-size: 1.35rem;
    line-height: 1.3;
    margin-top: 0.2rem;
}

.package-duration {
    font-size: 0.875rem;
    color: var(--color-gold-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.package-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.package-price-tag {
    border-bottom: 1px solid var(--color-gray-200);
    padding-bottom: 1rem;
}

.price-label {
    font-size: 0.8rem;
    color: var(--color-gray-600);
    text-transform: uppercase;
}

.price-value {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-gold-dark);
}

.package-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.package-spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-700);
}

.package-spec-item i {
    width: 20px;
    color: var(--color-gold-dark);
    text-align: center;
}

.fit-info {
    font-style: italic;
    font-size: 0.78rem;
    color: var(--color-gray-600);
    font-weight: 400;
}

.seat-indicator {
    background: var(--color-gold-light);
    border: 1px dashed var(--color-gold-primary);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card-footer {
    padding: 1.25rem 1.5rem;
    background: var(--color-cream-light);
    border-top: 1px solid var(--color-gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.package-actions-row {
    display: flex;
    gap: 0.5rem;
}

.package-actions-row .btn {
    flex: 1;
}

/* --------------------------------------------------------------------------
   10. PERLENGKAPAN IBADAH SHOWCASE
   -------------------------------------------------------------------------- */
.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gear-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    text-align: center;
    transition: var(--transition-normal);
}

.gear-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gear-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #FFFFFF;
    padding: 1rem;
}

.gear-card h4 {
    padding: 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    border-top: 1px solid var(--color-gray-100);
}

/* --------------------------------------------------------------------------
   11. FOOTER, MAPS & CONTACT (FIXED PROPORTIONS)
   -------------------------------------------------------------------------- */
footer {
    background-color: var(--color-black-surface);
    color: var(--color-gray-300);
    padding: 4rem 0 2rem 0;
    border-top: 3px solid var(--color-gold-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.6fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-col h4 {
    color: var(--color-gold-primary);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.6;
    word-break: normal;
    overflow-wrap: break-word;
}

.footer-col a {
    white-space: normal; /* Allow address link to wrap naturally */
    line-height: 1.5;
    display: inline-block;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.footer-links a {
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--color-gold-primary);
    padding-left: 4px;
}

.footer-maps-box {
    margin-top: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(248, 190, 32, 0.3);
}

.footer-maps-box iframe {
    width: 100%;
    height: 130px;
    border: none;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-gray-400);
}

/* --------------------------------------------------------------------------
   12. FLOATING WHATSAPP BUTTON & CS SELECTION MODAL
   -------------------------------------------------------------------------- */
.floating-wa-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
    animation: waPulse 2s infinite;
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    background-color: var(--color-whatsapp-dark);
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* MODAL OVERLAY & POPUP BOX */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    background: var(--color-black-gold);
    color: var(--color-white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-gold-primary);
}

.modal-header h4 {
    color: var(--color-gold-primary);
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.modal-close-btn {
    background: transparent;
    color: var(--color-gray-300);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--color-gold-primary);
}

.modal-body {
    padding: 1.75rem;
}

/* CS Team Selection List */
.cs-team-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cs-item-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    background: var(--color-cream-sand);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-200);
    transition: var(--transition-fast);
    text-decoration: none;
    color: var(--color-black-gold);
    white-space: normal;
}

.cs-item-card:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-primary);
    transform: translateX(5px);
}

.cs-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold-primary);
    box-shadow: var(--shadow-sm);
}

.cs-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.cs-info p {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cs-btn-icon {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Flyer Image Modal Box */
.flyer-modal-box {
    max-width: 800px;
    background: transparent;
    box-shadow: none;
    text-align: center;
    position: relative;
}

.flyer-modal-box img {
    max-height: 85vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.flyer-close-floating {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--color-gold-primary);
    color: var(--color-black-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10;
}

/* --------------------------------------------------------------------------
   13. COMPREHENSIVE RESPONSIVE BREAKPOINTS (DESKTOP, TABLET & PHONE)
   -------------------------------------------------------------------------- */

/* Medium Desktop / Small Laptops (1025px - 1280px) */
@media (max-width: 1280px) {
    .nav-menu {
        gap: 0.85rem;
    }
    .nav-link {
        font-size: 0.825rem;
    }
    .nav-cta .btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
        gap: 1.5rem;
    }
}

/* Tablets & Mobile Screens (<= 1024px) */
@media (max-width: 1024px) {
    .topbar {
        display: none;
    }

    .header-nav {
        height: 72px;
    }

    .nav-container {
        height: 72px;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: rgba(29, 29, 27, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
        display: none;
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(248, 190, 32, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.15rem;
        padding: 0.75rem 0;
        display: block;
    }

    .mobile-nav-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-cta .btn {
        width: 100%;
        padding: 0.85rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .csr-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile Phones (<= 768px) */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .hero-section {
        min-height: 75vh;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .search-form {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 1rem;
    }

    .search-input-group {
        padding-left: 0;
        margin-bottom: 0.75rem;
    }

    .search-btn {
        width: 100%;
        padding: 0.85rem;
    }

    .agent-checker-card {
        padding: 1.75rem 1.25rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .gear-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gear-card img {
        height: 160px;
        padding: 0.5rem;
    }

    .gear-card h4 {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .floating-wa-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 54px;
        height: 54px;
        font-size: 1.75rem;
    }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .filter-tabs-wrapper {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .gear-grid {
        grid-template-columns: 1fr;
    }
}
