/* ============================================
   AL UMAR — Premium Mobile-First Website
   Travel. Work. Explore.
   ============================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
    --navy: #0a1628;
    --navy-light: #111d35;
    --navy-mid: #162544;
    --gold: #d4a843;
    --gold-light: #f0d07a;
    --gold-dark: #b8912e;
    --white: #ffffff;
    --white-soft: #f0f2f5;
    --gray-100: #e8eaed;
    --gray-200: #d0d3d8;
    --gray-300: #9aa0ab;
    --gray-400: #6b7280;
    --green-wa: #25D366;
    --green-wa-dark: #1da851;
    --red-accent: #e74c4c;
    --blue-accent: #3b82f6;
    --teal-accent: #14b8a6;
    --purple-accent: #8b5cf6;
    --orange-accent: #f59e0b;
    --pink-accent: #ec4899;
    --gradient-gold: linear-gradient(135deg, #d4a843 0%, #f0d07a 50%, #d4a843 100%);
    --gradient-navy: linear-gradient(180deg, #0a1628 0%, #162544 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
    --gradient-card: linear-gradient(145deg, rgba(22, 37, 68, 0.8), rgba(10, 22, 40, 0.9));
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.3);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.plane-loader {
    font-size: 3rem;
    color: var(--gold);
    animation: flyPlane 2s ease-in-out infinite;
}

@keyframes flyPlane {
    0%, 100% { transform: translateX(-20px) translateY(0) rotate(-5deg); }
    50% { transform: translateX(20px) translateY(-15px) rotate(5deg); }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 16px;
    letter-spacing: 4px;
}

.loading-bar {
    width: 180px;
    height: 3px;
    background: var(--navy-mid);
    border-radius: 10px;
    margin: 16px auto 0;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-gold);
    border-radius: 10px;
    animation: loadBar 1.8s ease-in-out forwards;
}

@keyframes loadBar {
    to { width: 100%; }
}

/* ---- Navbar ---- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--gray-300);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger .bar {
    width: 26px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 10px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Menu - Fullscreen mobile overlay */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 20px;
}

.nav-menu.open {
    transform: translateX(0);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 300px;
    color: var(--gray-200);
    transition: var(--transition);
}

.nav-link i {
    width: 24px;
    text-align: center;
    color: var(--gold);
}

.nav-link:hover, .nav-link.active {
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
}

/* ---- Bottom Navigation (Mobile) ---- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 168, 67, 0.15);
    display: flex;
    justify-content: space-around;
    padding: 6px 0 env(safe-area-inset-bottom, 6px);
    z-index: 1000;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 4px;
    font-size: 0.65rem;
    color: var(--gray-300);
    transition: var(--transition);
    position: relative;
    min-width: 56px;
}

.bottom-nav-item i {
    font-size: 1.15rem;
    transition: var(--transition);
}

.bottom-nav-item.active {
    color: var(--gold);
}

.bottom-nav-item.active i {
    transform: translateY(-2px);
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 4px 4px;
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.7) 0%,
        rgba(10, 22, 40, 0.5) 40%,
        rgba(10, 22, 40, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 80px 24px 120px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--gray-200);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 67, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 28px;
    border-radius: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: bounce 2s infinite;
    display: none;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(212, 168, 67, 0.4);
    border-radius: 12px;
    margin: 0 auto 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    margin: 6px auto 0;
    animation: scrollWheel 1.5s infinite;
}

.scroll-indicator p {
    font-size: 0.65rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy);
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
    background: var(--green-wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-block {
    width: 100%;
}

.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--green-wa);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-whatsapp-sm:hover {
    background: var(--green-wa-dark);
    transform: scale(1.05);
}

/* ---- Ticker Bar ---- */
.ticker-bar {
    background: var(--gradient-gold);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    gap: 60px;
    animation: ticker 30s linear infinite;
}

.ticker-content span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

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

/* ---- Section Styles ---- */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 0.9rem;
    color: var(--gray-300);
    max-width: 500px;
    margin: 0 auto;
}

/* ---- Services Section ---- */
.services-section {
    padding: 60px 0;
    background: var(--gradient-navy);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.service-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before,
.service-card:active::before {
    transform: scaleX(1);
}

.service-card:hover,
.service-card:active {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    border-color: rgba(212, 168, 67, 0.3);
    background: linear-gradient(145deg, rgba(212, 168, 67, 0.08), rgba(10, 22, 40, 0.9));
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-gold);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.hajj-icon { background: rgba(212, 168, 67, 0.15); color: var(--gold); }
.tour-icon { background: rgba(20, 184, 166, 0.15); color: var(--teal-accent); }
.ticket-icon { background: rgba(59, 130, 246, 0.15); color: var(--blue-accent); }
.visa-icon { background: rgba(139, 92, 246, 0.15); color: var(--purple-accent); }
.job-icon { background: rgba(245, 158, 11, 0.15); color: var(--orange-accent); }
.support-icon { background: rgba(236, 72, 153, 0.15); color: var(--pink-accent); }

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.service-link:hover {
    gap: 12px;
}

/* ---- Hajj & Umrah Section ---- */
.hajj-section {
    padding: 60px 0;
    background: var(--navy);
    position: relative;
}

.hajj-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(212, 168, 67, 0.05), transparent 60%);
    pointer-events: none;
}

.hajj-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hajj-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hajj-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hajj-image-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 168, 67, 0.3);
    text-align: center;
}

.hajj-image-badge span {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-300);
}

.hajj-image-badge strong {
    font-size: 1.1rem;
    color: var(--gold);
}

.hajj-feature {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
    transition: var(--transition);
}

.hajj-feature:hover,
.hajj-feature:active {
    background: rgba(212, 168, 67, 0.06);
    border-color: rgba(212, 168, 67, 0.15);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.hajj-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.hajj-feature p {
    font-size: 0.8rem;
    color: var(--gray-300);
}

/* ---- Tours Section ---- */
.tours-section {
    padding: 60px 0;
    background: var(--gradient-navy);
}

.package-includes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 32px;
    padding: 20px 16px;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: var(--radius-md);
}

.include-item {
    text-align: center;
}

.include-item i {
    font-size: 1.3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.include-item span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-200);
}

.tours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tour-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.tour-card:hover,
.tour-card:active {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 168, 67, 0.2);
}

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.honeymoon-badge {
    border-color: rgba(236, 72, 153, 0.3);
    color: var(--pink-accent);
}

.group-badge {
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--blue-accent);
}

.tour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(10px);
}

.tour-card:hover .tour-overlay,
.tour-card:active .tour-overlay {
    opacity: 1;
    transform: translateY(0);
}

.tour-info {
    padding: 20px;
}

.tour-location {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 6px;
}

.tour-location i {
    margin-right: 4px;
}

.tour-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tour-info p {
    font-size: 0.8rem;
    color: var(--gray-300);
    line-height: 1.5;
    margin-bottom: 12px;
}

.tour-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.tour-meta span {
    font-size: 0.75rem;
    color: var(--gray-300);
}

.tour-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-features span {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
}

.tours-cta {
    text-align: center;
    margin-top: 36px;
    padding: 32px 24px;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: var(--radius-md);
}

.tours-cta p {
    font-size: 1rem;
    color: var(--gray-200);
    margin-bottom: 16px;
}

/* ---- Jobs Section ---- */
.jobs-section {
    padding: 60px 0;
    background: var(--navy);
    position: relative;
}

.jobs-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom left, rgba(245, 158, 11, 0.05), transparent 60%);
    pointer-events: none;
}

.jobs-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.jobs-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.jobs-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.job-countries {
    margin-bottom: 28px;
}

.job-countries h3,
.job-process h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold);
}

.country-flags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.country-item:hover,
.country-item:active {
    background: rgba(212, 168, 67, 0.06);
    border-color: rgba(212, 168, 67, 0.15);
}

.country-flag {
    font-size: 1.8rem;
}

.country-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-200);
}

.job-process {
    margin-bottom: 24px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.process-step:hover,
.process-step:active {
    background: rgba(212, 168, 67, 0.06);
    border-color: rgba(212, 168, 67, 0.15);
}

.step-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.step-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.step-info p {
    font-size: 0.78rem;
    color: var(--gray-300);
}

/* ---- About / Why Choose Us Section ---- */
.about-section {
    padding: 60px 0;
    background: var(--gradient-navy);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.about-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.about-card:hover,
.about-card:active {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--gold);
    font-size: 1.3rem;
}

.about-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 0.82rem;
    color: var(--gray-300);
    line-height: 1.6;
}

/* ---- Testimonials Section ---- */
.testimonials-section {
    padding: 60px 0;
    background: var(--navy);
}

.testimonial-slider {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-slow);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-200);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gray-300);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 67, 0.4);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.t-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

/* ---- Contact Section ---- */
.contact-section {
    padding: 60px 0;
    background: var(--gradient-navy);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover,
.contact-card:active {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 67, 0.2);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.phone-card .contact-icon {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-accent);
}

.whatsapp-card .contact-icon {
    background: rgba(37, 211, 102, 0.15);
    color: var(--green-wa);
}

.email-card .contact-icon {
    background: rgba(236, 72, 153, 0.15);
    color: var(--pink-accent);
}

.location-card .contact-icon {
    background: rgba(245, 158, 11, 0.15);
    color: var(--orange-accent);
}

.contact-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-card p {
    font-size: 0.75rem;
    color: var(--gray-300);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 28px 24px;
}

.contact-form h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4a843'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ---- Footer ---- */
.footer {
    padding: 48px 0 100px;
    background: var(--navy);
    border-top: 1px solid rgba(212, 168, 67, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    margin: 0 auto 12px;
    object-fit: cover;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 0.82rem;
    color: var(--gray-300);
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto 16px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-200);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.footer-links {
    text-align: center;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--gold);
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-300);
    padding: 6px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ---- Floating WhatsApp ---- */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-wa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: waFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--navy);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 145px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.2);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    font-size: 1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ============================================
   DESKTOP STYLES (768px+)
   ============================================ */
@media (min-width: 768px) {
    .bottom-nav {
        display: none;
    }

    .scroll-indicator {
        display: block;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: row;
        max-width: none;
    }

    .hero-slider-dots {
        bottom: 40px;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

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

    .hajj-content {
        flex-direction: row;
        align-items: stretch;
    }

    .hajj-image {
        flex: 1;
    }

    .hajj-image img {
        height: 100%;
        min-height: 450px;
    }

    .hajj-details {
        flex: 1;
    }

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

    .jobs-content {
        flex-direction: row;
        align-items: stretch;
    }

    .jobs-image {
        flex: 1;
    }

    .jobs-image img {
        height: 100%;
        min-height: 500px;
    }

    .jobs-details {
        flex: 1;
    }

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

    .contact-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer {
        padding-bottom: 48px;
    }

    .footer-content {
        flex-direction: row;
        text-align: left;
    }

    .footer-brand {
        text-align: left;
        flex: 1.5;
    }

    .footer-logo {
        margin: 0 0 12px;
    }

    .footer-desc {
        margin: 0 0 16px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-links {
        text-align: left;
        flex: 1;
    }

    .whatsapp-float {
        bottom: 30px;
    }

    .back-to-top {
        bottom: 100px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content h1 {
        font-size: 3.8rem;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        flex: 1;
    }

    .contact-form-wrapper {
        flex: 1;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        transform: none;
        flex-direction: row;
        height: auto;
        background: none;
        gap: 4px;
        padding: 0;
        width: auto;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 8px 14px;
        width: auto;
    }

    .nav-link i {
        display: none;
    }
}

/* ---- Small Mobile Tweaks ---- */
@media (max-width: 374px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .package-includes {
        grid-template-columns: repeat(2, 1fr);
    }

    .country-flags {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Safe area for notch devices ---- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .bottom-nav {
        padding-bottom: calc(6px + env(safe-area-inset-bottom));
    }
}

/* ---- Animations for cards on scroll ---- */
.service-card,
.tour-card,
.about-card,
.contact-card {
    will-change: transform;
}

/* ---- Selection color ---- */
::selection {
    background: rgba(212, 168, 67, 0.3);
    color: var(--white);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-mid);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
