@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&family=El+Messiri:wght@400;600;700&display=swap');

:root {
    --bg-base: #0a0a0a;
    --bg-surface: #121212;
    --gold: #d4af37;
    --gold-glow: #f5d061;
    --gold-muted: #997a15;
    --green: #059669;
    --green-glow: #10b981;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: "Cairo", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    direction: rtl;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

h1, h2, h3, h4, .font-heading { font-family: "El Messiri", serif; margin: 0; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

::selection { background: var(--gold); color: #0a0a0a; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-muted), var(--gold));
    border-radius: 10px;
}

/* ---------- Text effects ---------- */
.gold-text {
    color: var(--gold-glow);
    text-shadow: 0 0 8px rgba(245, 208, 97, 0.55), 0 0 24px rgba(212, 175, 55, 0.35);
}

.gold-gradient-text {
    background: linear-gradient(100deg, #997a15 0%, #d4af37 25%, #f5d061 45%, #fff6d6 55%, #f5d061 65%, #d4af37 80%, #997a15 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite;
    filter: drop-shadow(0 0 18px rgba(245, 208, 97, 0.35));
}

@keyframes shimmer { to { background-position: -250% 0; } }

.green-glow { box-shadow: 0 0 24px rgba(16, 185, 129, 0.28); }
.gold-glow-box { box-shadow: 0 0 26px rgba(212, 175, 55, 0.22); }

.glass {
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.grain { position: relative; }
.grain::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section-title-underline::after {
    content: "";
    display: block;
    width: 68px;
    height: 3px;
    margin-top: 14px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 4px;
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(to left, #997A15, #D4AF37, #F5D061);
    color: #000;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 999px;
    transition: filter .2s;
}
.btn-gold:hover { filter: brightness(1.1); }
.btn-gold-sm { padding: 10px 20px; font-size: 14px; font-weight: 600; }

.btn-outline-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(16,185,129,.5);
    color: #10B981;
    padding: 14px 24px;
    border-radius: 999px;
    transition: background .2s;
}
.btn-outline-green:hover { background: rgba(16,185,129,.1); }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    transition: background .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.05); }

.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
    content: "";
    position: absolute;
    top: 0;
    right: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-20deg);
    transition: right .7s ease;
}
.btn-shine:hover::after { right: 140%; }

/* Sparkles */
.sparkle-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.sparkle {
    position: absolute;
    border-radius: 9999px;
    background: radial-gradient(circle, #fff6d6, #d4af37 60%, transparent 70%);
    pointer-events: none;
    animation: floatSpark linear infinite;
    opacity: .7;
}
@keyframes floatSpark {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: .8; }
    90% { opacity: .5; }
    100% { transform: translateY(-120px) scale(.3); opacity: 0; }
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    transition: background .3s, box-shadow .3s;
    background: transparent;
}
.navbar.scrolled { background: rgba(20,20,20,.55); backdrop-filter: blur(18px); box-shadow: 0 10px 30px rgba(0,0,0,.4); border-bottom: 1px solid rgba(255,255,255,.08); }
.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: #d4d4d8; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-glow); }
.nav-actions { display: none; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 14px; color: #d4d4d8; }
.nav-phone:hover { color: var(--gold-glow); }
.mobile-toggle { color: #e4e4e7; background: none; }
@media (min-width: 768px) {
    .nav-links, .nav-actions { display: flex; }
    .mobile-toggle { display: none; }
}
.mobile-menu {
    display: none;
    background: rgba(20,20,20,.55);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu-inner a { color: #e4e4e7; font-size: 16px; }
.mobile-menu-inner a:hover { color: var(--gold-glow); }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

/* Logo */
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-logo .logo-name { font-family: "El Messiri", serif; font-size: 24px; font-weight: 700; }
.brand-logo .logo-tag { display: block; font-size: 10px; color: #a1a1aa; letter-spacing: .02em; margin-top: 2px; }

/* ---------- Hero / Hexagon ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.hero-bg .overlay { position: absolute; inset: 0; background: linear-gradient(to left, #0a0a0a, rgba(10,10,10,.85), rgba(10,10,10,.6)); }
.hero-inner { position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; padding: 0 20px; width: 100%; }
.hero-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 6px 16px; font-size: 12px; color: var(--gold-glow); margin-bottom: 24px; }
.hero h1 { font-size: 40px; font-weight: 700; line-height: 1.15; margin-bottom: 24px; }
@media (min-width: 640px) { .hero h1 { font-size: 52px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 72px; } }
.hero p.lead { color: #d4d4d8; font-size: 16px; line-height: 2; margin-bottom: 32px; max-width: 640px; }
@media (min-width: 640px) { .hero p.lead { font-size: 18px; } }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-call { display: flex; align-items: center; gap: 8px; color: #d4d4d8; padding: 14px 16px; }
.hero-call:hover { color: var(--gold-glow); }
.hero-visual { display: flex; justify-content: center; order: -1; }
@media (min-width: 1024px) { .hero-visual { order: 1; } }

.hex-scene { position: relative; width: 100%; height: 360px; perspective: 1400px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 768px) { .hex-scene { height: 460px; } }
.hex-spinner { position: relative; width: 176px; height: 250px; transform-style: preserve-3d; animation: hexSpin 22s linear infinite; }
@media (max-width: 767px) { .hex-spinner { transform: scale(.8); } }
.hex-face {
    position: absolute; top: 0; left: 0;
    width: 176px; height: 250px;
    border-radius: 14px; overflow: hidden;
    border: 1.5px solid rgba(212,175,55,.55);
    box-shadow: 0 0 22px rgba(212,175,55,.25), inset 0 0 30px rgba(0,0,0,.35);
    backface-visibility: hidden;
}
.hex-face img { width: 100%; height: 100%; object-fit: cover; }
.hex-face-overlay {
    position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 12px;
    background: linear-gradient(to top, rgba(10,10,10,.9), rgba(10,10,10,.15) 55%, transparent);
}
.hex-face-overlay span { font-family: "El Messiri", serif; font-size: 13px; color: #f5d061; text-shadow: 0 0 10px rgba(245,208,97,.6); line-height: 1.4; }
@keyframes hexSpin { from { transform: rotateX(-10deg) rotateY(0); } to { transform: rotateX(-10deg) rotateY(360deg); } }
.hex-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(212,175,55,.18); pointer-events: none; }
.hex-ring-1 { width: 380px; height: 380px; animation: hexPulse 6s ease-in-out infinite; }
.hex-ring-2 { width: 300px; height: 300px; border-color: rgba(16,185,129,.18); animation: hexPulse 6s ease-in-out infinite 1.5s; }
@keyframes hexPulse { 0%,100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.08); opacity: .9; } }

/* ---------- Stats ---------- */
.stats-section { position: relative; margin-top: -16px; z-index: 20; padding-bottom: 16px; }
.stats-box { max-width: 1152px; margin: 0 auto; padding: 0 20px; }
.stats-grid { border-radius: 16px; display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; padding: 32px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-item { text-align: center; }
.stat-value { font-family: "El Messiri", serif; font-size: 30px; font-weight: 700; }
@media (min-width: 1024px) { .stat-value { font-size: 36px; } }
.stat-label { color: #a1a1aa; font-size: 14px; margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: #0c0c0c; }
.section-head h2 { font-size: 30px; font-weight: 700; color: #fff; }
@media (min-width: 1024px) { .section-head h2 { font-size: 48px; } }
.section-head p { color: #a1a1aa; margin-top: 20px; max-width: 640px; }
.section-head.center { text-align: center; margin: 0 auto 64px; }
.section-head:not(.center) { margin-bottom: 56px; }

/* ---------- Services grid / flip cards ---------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.flip-card { height: 440px; perspective: 1800px; cursor: pointer; }
.flip-card.featured { grid-column: span 1; }
@media (min-width: 768px) { .flip-card.featured { grid-column: span 2; } }
.flip-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.flip-inner.is-flipped { transform: rotateY(180deg); }
.flip-face { position: absolute; inset: 0; width: 100%; height: 100%; backface-visibility: hidden; overflow: hidden; border-radius: 16px; }
.flip-front { border: 1px solid rgba(255,255,255,.1); background: #121212; }
.flip-front .inner { position: relative; height: 100%; }
.flip-front img { width: 100%; height: 100%; object-fit: cover; }
.flip-front .shade { position: absolute; inset: 0; background: linear-gradient(to top, #0a0a0a, rgba(10,10,10,.3), transparent); }
.flip-front .icon-badge { position: absolute; top: 16px; right: 16px; width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold-glow); font-size: 22px; }
.flip-front .caption { position: absolute; bottom: 0; inset-inline: 0; padding: 24px; }
.flip-front .caption h3 { font-size: 20px; color: #fff; }
@media (min-width: 1024px) { .flip-front .caption h3 { font-size: 24px; } }
.flip-front .caption span { display: inline-block; margin-top: 8px; color: #d4d4d8; font-size: 12px; }
.flip-back { transform: rotateY(180deg); border: 1px solid rgba(212,175,55,.5); background: linear-gradient(to bottom right, #161616, #0c0c0c); }
.flip-back .inner { height: 100%; padding: 28px; display: flex; flex-direction: column; }
.flip-back .icon-badge { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(to bottom right, #997A15, #F5D061); display: flex; align-items: center; justify-content: center; color: #000; margin-bottom: 16px; }
.flip-back h3 { font-size: 20px; color: var(--gold-glow); margin-bottom: 12px; }
.flip-back p { color: #d4d4d8; font-size: 14px; line-height: 1.9; margin-bottom: 16px; }
.flip-back ul { margin-bottom: auto; display: flex; flex-direction: column; gap: 10px; }
.flip-back li { display: flex; align-items: center; gap: 8px; color: #e4e4e7; font-size: 14px; }
.flip-back li .ok { color: var(--green-glow); flex-shrink: 0; }
.flip-back .book-btn { margin-top: 20px; width: 100%; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4,1fr); } }
.why-card { border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: #141414; padding: 28px; transition: border-color .3s; }
.why-card:hover { border-color: rgba(212,175,55,.5); }
.why-card .icon-badge { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(to bottom right, #065F46, #10B981); display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 20px; transition: transform .3s; }
.why-card:hover .icon-badge { transform: translateY(-4px); }
.why-card h3 { font-size: 18px; color: #fff; margin-bottom: 8px; }
.why-card p { color: #a1a1aa; font-size: 14px; line-height: 1.9; }

/* ---------- CTA ---------- */
.cta-box { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid rgba(212,175,55,.3); padding: 48px 24px; text-align: center; }
@media (min-width: 1024px) { .cta-box { padding: 64px; } }
.cta-box .bg { position: absolute; inset: 0; background: linear-gradient(to left, #141414, #0a0a0a); }
.cta-box .content { position: relative; z-index: 10; }
.cta-box h2 { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 16px; }
@media (min-width: 1024px) { .cta-box h2 { font-size: 48px; } }
.cta-box p { color: #d4d4d8; margin-bottom: 32px; max-width: 560px; margin-inline: auto; }
.cta-box .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---------- Footer ---------- */
.site-footer { position: relative; border-top: 1px solid rgba(255,255,255,.1); background: #0c0c0c; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4,1fr); } }
.footer-grid p.desc { color: #a1a1aa; font-size: 14px; margin-top: 16px; line-height: 1.9; }
.footer-grid h4 { color: var(--gold-glow); font-size: 18px; margin-bottom: 16px; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #a1a1aa; font-size: 14px; }
.footer-grid a:hover { color: var(--gold-glow); }
.footer-contact li { display: flex; align-items: center; gap: 8px; color: #a1a1aa; font-size: 14px; margin-bottom: 12px; }
.footer-contact .ic-gold { color: var(--gold); }
.footer-contact .ic-green { color: #10B981; }
.footer-seo { border-top: 1px solid rgba(255,255,255,.05); padding-top: 24px; }
.footer-seo p { color: rgba(255,255,255,.25); font-size: 11px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); margin-top: 24px; padding-top: 24px; text-align: center; }
.footer-bottom p { color: #71717a; font-size: 12px; }

/* ---------- Floating actions ---------- */
.floating-actions { position: fixed; bottom: 24px; left: 24px; z-index: 50; display: flex; flex-direction: column; gap: 12px; }
.fab { position: relative; width: 56px; height: 56px; border-radius: 999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.4); transition: transform .2s; color: #fff; }
.fab:hover { transform: scale(1.1); }
.fab-whatsapp { background: #059669; }
.fab-call { background: linear-gradient(to bottom right, #D4AF37, #997A15); color: #000; }
.fab .ping { position: absolute; inset: 0; border-radius: 999px; animation: ping 2s cubic-bezier(0,0,.2,1) infinite; opacity: .3; }
.fab-whatsapp .ping { background: #10B981; }
.fab-call .ping { background: #F5D061; }
@keyframes ping { 75%, 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Inner pages ---------- */
.page-top { padding-top: 70px; }
.page-hero { position: relative; padding: 80px 0; overflow: hidden; text-align: center; }
.page-hero .head { max-width: 640px; margin: 0 auto 40px; position: relative; z-index: 10; }
.page-hero h1 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 16px; }
@media (min-width: 1024px) { .page-hero h1 { font-size: 60px; } }
.page-hero p { color: #a1a1aa; line-height: 1.9; }

/* About */
.about-grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid h1 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 24px; }
@media (min-width: 1024px) { .about-grid h1 { font-size: 60px; } }
.about-grid .p1 { color: #d4d4d8; line-height: 1.9; margin-bottom: 20px; }
.about-grid .p2 { color: #a1a1aa; line-height: 1.9; margin-bottom: 32px; }
.about-img { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-img .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.6), transparent); }

.mv-grid { display: grid; gap: 24px; margin-top: 64px; }
@media (min-width: 768px) { .mv-grid { grid-template-columns: repeat(2,1fr); } }
.mv-card { border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: #141414; padding: 32px; }
.mv-card .icon-badge { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mv-card.mission .icon-badge { background: linear-gradient(to bottom right, #997A15, #F5D061); color: #000; }
.mv-card.vision .icon-badge { background: linear-gradient(to bottom right, #065F46, #10B981); color: #fff; }
.mv-card h3 { font-size: 20px; color: #fff; margin-bottom: 8px; }
.mv-card p { color: #a1a1aa; line-height: 1.9; }

.values-title { text-align: center; font-size: 24px; font-weight: 700; color: #fff; margin: 64px 0 32px; }
@media (min-width: 1024px) { .values-title { font-size: 30px; } }
.values-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
.value-item { display: flex; align-items: center; gap: 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,.1); background: #121212; padding: 16px 20px; }
.value-item .ok { color: var(--green-glow); flex-shrink: 0; }
.value-item span { color: #d4d4d8; font-size: 14px; }

/* Contact / Booking */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; align-content: start; }
.info-card { border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: #141414; padding: 24px; transition: border-color .2s; }
.info-card:hover { border-color: rgba(212,175,55,.5); }
.info-card .icon-badge { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(to bottom right, #065F46, #10B981); display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 16px; }
.info-card .lbl { color: #a1a1aa; font-size: 14px; margin-bottom: 4px; }
.info-card .val { color: #fff; font-weight: 600; }

.form-box { border-radius: 16px; padding: 32px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 14px; color: #d4d4d8; margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    transition: border-color .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row select option { background: #141414; }
.form-row textarea { resize: none; }
.form-grid-2 { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: repeat(2,1fr); } }
.form-grid-2 .full { grid-column: 1 / -1; }
.submit-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; }

.booking-icon-top { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 16px; background: linear-gradient(to bottom right, #997A15, #F5D061); display: flex; align-items: center; justify-content: center; color: #000; }
.booking-success { border-radius: 16px; padding: 40px; text-align: center; }
.booking-success .ok-big { color: var(--green-glow); margin-bottom: 16px; }
.booking-success h2 { font-size: 24px; color: #fff; margin-bottom: 8px; }
.booking-success p { color: #a1a1aa; margin-bottom: 24px; }

/* Toast */
#toast-container { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 999; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast { font-family: "Cairo", sans-serif; padding: 14px 22px; border-radius: 10px; font-size: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.4); animation: toastIn .25s ease; }
.toast.success { background: #10B981; color: #04231a; }
.toast.error { background: #ef4444; color: #2a0808; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Icon helper (inline svg sizing) */
.icon { display: inline-flex; }
.icon svg { display: block; }
