/* ===== PREMIUM VARIABLES ===== */
:root {
    --primary: #0a6e0a;
    --primary-dark: #064a06;
    --primary-light: #e8f5e8;
    --gold: #d4af37;
    --gold-light: #f5e8b3;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    --green-gradient: linear-gradient(135deg, #0a6e0a 0%, #064a06 100%);
    --dark: #0a1a0a;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.10);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.15);
    --shadow-xl: 0 35px 80px rgba(0,0,0,0.20);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    padding-top: 80px;
    background: #fcfcfc;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; font-weight: 800; letter-spacing: -0.3px; }
.arabic-font { font-family: 'Amiri', serif; font-weight: 700; }
.text-gold { color: var(--gold); }
.bg-gold { background: var(--gold-gradient); }
.bg-green { background: var(--green-gradient); }

.skip-link {
    position: absolute; top: -999px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff; padding: 12px 24px;
    border-radius: 0 0 8px 8px; z-index: 10000; font-weight: 700;
    text-decoration: none;
}
.skip-link:focus { top: 0; }

.navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.navbar-scrolled { padding: 10px 0; box-shadow: 0 8px 40px rgba(0,0,0,0.10); }
.navbar-brand {
    font-weight: 900; font-size: 2.2rem; color: var(--primary) !important;
    display: flex; align-items: center; gap: 10px;
}
.navbar-brand .logo-icon { color: var(--gold); font-size: 2.4rem; }
.navbar-brand span { color: var(--gold); }
.nav-link {
    font-weight: 600; margin: 0 4px; color: var(--text-dark) !important;
    font-size: 1.05rem; padding: 8px 16px !important; border-radius: 10px;
    transition: var(--transition); position: relative; cursor: pointer;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px; background: var(--gold-gradient); border-radius: 3px; transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(10,110,10,0.05); transform: translateY(-2px); }
.btn-nav-cta {
    background: var(--green-gradient); color: #fff !important; padding: 12px 28px !important;
    border-radius: 50px; font-weight: 700; box-shadow: 0 6px 20px rgba(10,110,10,0.25);
    transition: var(--transition); border: 2px solid transparent;
}
.btn-nav-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 35px rgba(10,110,10,0.35); border-color: var(--gold); background: var(--primary-dark); color: #fff !important; }
.btn-nav-cta::after { display: none; }

.hero {
    background: linear-gradient(135deg, rgba(10,110,10,0.92) 0%, rgba(6,74,10,0.95) 100%),
                url('https://images.unsplash.com/photo-1513326738677-b964603b136d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover; background-position: center; background-attachment: fixed;
    color: #fff; padding: 160px 0 120px; text-align: center; position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.hero h1 { font-size: 4.2rem; font-weight: 900; margin-bottom: 24px; text-shadow: 0 4px 20px rgba(0,0,0,0.3); line-height: 1.1; letter-spacing: -1px; }
.hero h1 .highlight { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.5rem; max-width: 750px; margin: 0 auto 40px; opacity: 0.92; font-weight: 400; line-height: 1.7; }
.hero-badge {
    display: inline-block; background: var(--gold-gradient); color: #fff; padding: 10px 30px;
    border-radius: 50px; font-weight: 700; font-size: 1.1rem; margin-bottom: 35px;
    box-shadow: 0 8px 25px rgba(212,175,55,0.3); animation: pulse-badge 2s infinite; border: 2px solid rgba(255,255,255,0.2);
}
@keyframes pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }

.section-title { text-align: center; margin-bottom: 70px; }
.section-title .subtitle { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem; }
.section-title h2 { font-size: 3.2rem; color: var(--primary); position: relative; display: inline-block; padding-bottom: 20px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 4px; background: var(--gold-gradient); border-radius: 4px; }
.section-title .desc { color: var(--text-muted); font-size: 1.25rem; max-width: 700px; margin: 18px auto 0; }
section { padding: 100px 0; }
.section-alt { background: var(--light-bg); }

.btn-primary {
    background: var(--green-gradient); border: none; padding: 16px 40px; font-weight: 700;
    border-radius: 50px; transition: var(--transition); font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(10,110,10,0.25); color: #fff; position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(10,110,10,0.35); color: #fff; }
.btn-outline-light {
    padding: 16px 40px; font-weight: 700; border-radius: 50px; border: 2.5px solid rgba(255,255,255,0.5);
    color: #fff; transition: var(--transition); background: rgba(255,255,255,0.05); backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); color: #fff; border-color: #fff; }

.card-premium { border: none; border-radius: var(--radius); overflow: hidden; transition: var(--transition); height: 100%; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); }
.card-premium:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.card-premium .card-body { padding: 30px 28px; }
.card-premium .card-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--green-gradient); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2rem; margin-bottom: 20px; box-shadow: 0 8px 20px rgba(10,110,10,0.15); transition: var(--transition); }
.card-premium:hover .card-icon { transform: rotateY(180deg); background: var(--gold-gradient); }
.card-premium h4 { font-size: 1.4rem; margin-bottom: 12px; }
.card-premium p { color: var(--text-muted); font-size: 1.05rem; }

.package-card { border: none; border-radius: var(--radius); overflow: hidden; transition: var(--transition); height: 100%; background: #fff; box-shadow: var(--shadow-sm); position: relative; }
.package-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: var(--shadow-xl); }
.package-card .pkg-header { background: var(--green-gradient); color: #fff; padding: 35px 25px; text-align: center; }
.package-card .pkg-header h4 { font-size: 1.8rem; margin: 0; }
.package-card .pkg-price { font-size: 3rem; font-weight: 900; color: var(--gold); margin: 25px 0 5px; text-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.package-card .pkg-duration { color: var(--text-muted); font-weight: 600; font-size: 1.05rem; }

.guide-step { background: #fff; border-radius: var(--radius-sm); padding: 30px 35px; margin-bottom: 20px; box-shadow: var(--shadow-sm); border-left: 6px solid var(--gold); transition: var(--transition); }
.guide-step:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.guide-step h4 { color: var(--primary); font-size: 1.3rem; }
.guide-step h4 i { color: var(--gold); margin-right: 12px; }
.guide-step ul { padding-left: 20px; }
.guide-step ul li { margin-bottom: 6px; }

.stat-card { background: #fff; border-radius: var(--radius-sm); padding: 25px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border-top: 4px solid var(--gold); height: 100%; }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card .stat-icon { font-size: 2.8rem; margin-bottom: 12px; color: var(--primary); }
.stat-card .stat-number { font-size: 2.8rem; font-weight: 900; color: var(--text-dark); display: block; }
.stat-card .stat-label { color: var(--text-muted); font-weight: 600; font-size: 1rem; }

.profile-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.04); }
.profile-card .profile-header { background: var(--green-gradient); color: #fff; padding: 35px 30px; text-align: center; position: relative; }
.profile-card .profile-avatar { width: 120px; height: 120px; border-radius: 50%; background: #fff; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--primary); border: 4px solid rgba(255,255,255,0.4); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.profile-card .profile-body { padding: 30px 28px; }
.profile-card .profile-info { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.profile-card .profile-info:last-child { border-bottom: none; }
.profile-card .profile-info .label { font-weight: 600; color: var(--text-dark); }
.profile-card .profile-info .value { color: var(--text-muted); }

.role-badge { position: absolute; top: 15px; right: 15px; padding: 5px 16px; border-radius: 30px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
.role-badge.admin { background: #2c3e50; color: #fff; }
.role-badge.agent { background: #e67e22; color: #fff; }
.role-badge.customer { background: var(--primary); color: #fff; }

.booking-item { background: var(--light-bg); border-radius: var(--radius-sm); padding: 20px 25px; margin-bottom: 16px; border-left: 5px solid var(--gold); transition: var(--transition); }
.booking-item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.booking-status { display: inline-block; padding: 4px 16px; border-radius: 30px; font-weight: 700; font-size: 0.85rem; }
.booking-status.pending { background: #fff3cd; color: #856404; }
.booking-status.confirmed { background: #d4edda; color: #155724; }
.booking-status.completed { background: #d1ecf1; color: #0c5460; }
.booking-status.cancelled { background: #f8d7da; color: #721c24; }

.payment-icons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 20px; }
.payment-icons i { font-size: 2.8rem; color: var(--primary); transition: var(--transition); }
.payment-icons i:hover { color: var(--gold); transform: translateY(-8px) scale(1.15); }

footer { background: var(--dark); color: rgba(255,255,255,0.85); padding: 80px 0 30px; clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%); margin-top: -40px; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold-gradient); }
footer .footer-logo { font-weight: 900; font-size: 2.2rem; color: #fff; text-decoration: none; display: inline-block; margin-bottom: 20px; }
footer .footer-logo span { color: var(--gold); }
footer .footer-links h5 { color: #fff; font-size: 1.2rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
footer .footer-links h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--gold-gradient); border-radius: 3px; }
footer .footer-links ul { list-style: none; padding: 0; }
footer .footer-links ul li { margin-bottom: 10px; }
footer .footer-links ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); font-size: 1rem; }
footer .footer-links ul li a:hover { color: var(--gold); padding-left: 8px; }
.social-icons { display: flex; gap: 14px; margin-top: 20px; }
.social-icons a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: var(--transition); font-size: 1.2rem; border: 1px solid rgba(255,255,255,0.06); }
.social-icons a:hover { background: var(--primary); transform: translateY(-5px); border-color: var(--gold); }
.copyright { text-align: center; padding-top: 40px; margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem; color: rgba(255,255,255,0.5); }

.back-to-top {
    position: fixed; bottom: 40px; right: 40px; width: 60px; height: 60px; background: var(--green-gradient);
    color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; text-decoration: none; z-index: 999; opacity: 0; visibility: hidden;
    transition: var(--transition); box-shadow: 0 10px 30px rgba(10,110,10,0.3); border: 2px solid var(--gold);
}
.back-to-top.active { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-gradient); transform: translateY(-8px) rotate(360deg); box-shadow: 0 15px 40px rgba(212,175,55,0.4); color: #fff; }

.floating-whatsapp {
    position: fixed; bottom: 120px; right: 40px; width: 70px; height: 70px; background: #25D366; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
    text-decoration: none; z-index: 998; box-shadow: 0 10px 35px rgba(37,211,102,0.4); transition: var(--transition);
    animation: float-wa 3s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.12); box-shadow: 0 15px 45px rgba(37,211,102,0.55); color: #fff; }
@keyframes float-wa { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.draft-notification {
    position: fixed; bottom: 30px; left: 30px; background: var(--green-gradient); color: #fff;
    padding: 18px 28px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); z-index: 1000;
    display: none; align-items: center; gap: 14px; font-weight: 600; font-size: 1.05rem;
}
.draft-notification.show { display: flex; animation: slideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
@keyframes slideIn { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

@media (max-width: 1200px) { .hero h1 { font-size: 3.6rem; } .section-title h2 { font-size: 2.8rem; } }
@media (max-width: 992px) { .hero h1 { font-size: 3rem; } .hero-subtitle { font-size: 1.3rem; } .section-title h2 { font-size: 2.5rem; } section { padding: 80px 0; } .navbar-brand { font-size: 1.9rem; } }
@media (max-width: 768px) { .hero { padding: 120px 0 80px; } .hero h1 { font-size: 2.6rem; } .hero-subtitle { font-size: 1.15rem; } .section-title h2 { font-size: 2.2rem; } .section-title .desc { font-size: 1.1rem; } .profile-card .profile-body { padding: 20px; } .floating-whatsapp { width: 60px; height: 60px; font-size: 1.8rem; bottom: 100px; right: 20px; } .back-to-top { width: 50px; height: 50px; font-size: 1.2rem; bottom: 30px; right: 20px; } }
@media (max-width: 576px) { .hero h1 { font-size: 2.2rem; } .section-title h2 { font-size: 1.9rem; } .btn-primary, .btn-outline-light { padding: 14px 28px; font-size: 1rem; } .package-card .pkg-price { font-size: 2.4rem; } .stat-card .stat-number { font-size: 2.2rem; } }
@media (max-width: 400px) { .hero h1 { font-size: 1.9rem; } .navbar-brand { font-size: 1.6rem; } .nav-link { font-size: 0.95rem; padding: 6px 12px !important; } }
