  *, body, button, input, select, textarea {
    font-family: 'Cairo', sans-serif;
  }

:root {
    --teal:        #2D9E8C;
    --teal-dark:   #1E7A6B;
    --teal-light:  #5CC4B4;
    --teal-pale:   #E8F7F5;
    --teal-ultra:  #F2FAFA;
    --white:       #FFFFFF;
    --off:         #F7FAFA;
    --text-dark:   #0F2926;
    --text-mid:    #3D6460;
    --text-light:  #7AADA8;
    --border:      rgba(45,158,140,0.18);
    --shadow:      rgba(45,158,140,0.12);
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }
  body { font-family:'Tajawal',sans-serif; background:var(--white); color:var(--text-dark); overflow-x:hidden; direction:rtl; }

  ::-webkit-scrollbar { width:5px; }
  ::-webkit-scrollbar-track { background:#f0f0f0; }
  ::-webkit-scrollbar-thumb { background:var(--teal); border-radius:3px; }

  /* ─── NAV ─── */
  nav {
    position:fixed; top:0; width:100%; z-index:1000;
    padding:16px 60px;
    display:flex; align-items:center; justify-content:space-between;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(20px);
    border-bottom:1px solid var(--border);
    box-shadow:0 2px 20px rgba(45,158,140,0.08);
    transition:all 0.4s ease;
  }
  nav.scrolled { padding:10px 60px; box-shadow:0 4px 30px rgba(45,158,140,0.12); }

  .nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
  .nav-logo img { height:50px; object-fit:contain; }
  .nav-logo-text { color:var(--text-dark); }
  .nav-logo-text .main { font-size:17px; font-weight:800; color:var(--teal-dark); }
  .nav-logo-text .sub { font-size:11px; color:var(--text-light); font-weight:400; }

  .nav-links { display:flex; gap:32px; list-style:none; align-items:center; }
  .nav-links a {
    color:var(--text-mid); text-decoration:none;
    font-size:15px; font-weight:500; position:relative; transition:color 0.3s;
  }
  .nav-links a::after {
    content:''; position:absolute; bottom:-4px; right:0;
    width:0; height:2px; background:var(--teal); transition:width 0.3s;
  }
  .nav-links a:hover { color:var(--teal); }
  .nav-links a:hover::after { width:100%; }

  .nav-cta {
    background:linear-gradient(135deg,var(--teal),var(--teal-dark)) !important;
    color:white !important; padding:10px 22px;
    border-radius:8px; font-weight:700 !important; font-size:14px !important;
    box-shadow:0 4px 15px var(--shadow); transition:all 0.3s !important;
  }
  .nav-cta:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(45,158,140,0.3) !important; }
  .nav-cta::after { display:none !important; }

  /* ─── HERO ─── */
  .hero {
    min-height:100vh;
    background:linear-gradient(150deg, var(--teal-ultra) 0%, var(--white) 50%, var(--teal-pale) 100%);
    position:relative; display:flex; align-items:center; overflow:hidden;
  }

  .hero-deco {
    position:absolute; border-radius:50%; filter:blur(70px); pointer-events:none;
  }
  .hero-deco-1 { width:500px; height:500px; background:rgba(45,158,140,0.1); top:-100px; left:-100px; }
  .hero-deco-2 { width:400px; height:400px; background:rgba(92,196,180,0.08); bottom:-80px; right:-80px; }
  .hero-deco-3 { width:300px; height:300px; background:rgba(45,158,140,0.07); top:40%; right:30%; animation:floatDeco 8s ease-in-out infinite; }

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

  /* decorative circles */
  .hero-circle {
    position:absolute; border-radius:50%; border:1px solid rgba(45,158,140,0.15);
    pointer-events:none;
  }
  .hero-circle-1 { width:600px;height:600px; top:-200px;right:-150px; }
  .hero-circle-2 { width:400px;height:400px; top:-80px;right:50px; }

  .hero-content {
    position:relative; z-index:2; max-width:1200px; margin:0 auto;
    padding:120px 60px 80px;
    display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:60px;
  }

  .hero-badge {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--teal-pale); border:1px solid rgba(45,158,140,0.3);
    color:var(--teal-dark); padding:7px 18px; border-radius:50px;
    font-size:13px; font-weight:600; margin-bottom:24px;
  }

  .hero-title {
    font-size:clamp(36px,5vw,64px); font-weight:900;
    color:var(--text-dark); line-height:1.15; margin-bottom:20px;
    animation:fadeUp 0.8s ease 0.2s both;
  }
  .hero-title .teal { color:var(--teal); }
  .hero-title .italic { font-family:'Playfair Display',serif; font-style:italic; color:var(--teal-dark); }

  .hero-sub {
    font-size:17px; font-weight:300; color:var(--text-mid);
    line-height:1.9; margin-bottom:40px;
    animation:fadeUp 0.8s ease 0.4s both;
  }

  .hero-buttons { display:flex; gap:14px; flex-wrap:wrap; animation:fadeUp 0.8s ease 0.6s both; }

  .btn-primary {
    background:linear-gradient(135deg,var(--teal),var(--teal-dark));
    color:white; padding:14px 34px; border-radius:10px;
    font-weight:800; font-size:15px; text-decoration:none;
    display:inline-flex; align-items:center; gap:8px;
    transition:all 0.3s; box-shadow:0 6px 25px rgba(45,158,140,0.35);
  }
  .btn-primary:hover { transform:translateY(-3px); box-shadow:0 12px 35px rgba(45,158,140,0.45); }

  .btn-outline {
    background:white; color:var(--teal-dark);
    border:1.5px solid var(--teal); padding:14px 34px; border-radius:10px;
    font-weight:600; font-size:15px; text-decoration:none;
    display:inline-flex; align-items:center; gap:8px; transition:all 0.3s;
  }
  .btn-outline:hover { background:var(--teal-pale); transform:translateY(-3px); }

  .hero-stats {
    display:flex; gap:32px; margin-top:50px;
    animation:fadeUp 0.8s ease 0.8s both;
  }
  .stat { text-align:center; }
  .stat-num { font-size:32px; font-weight:900; color:var(--teal); line-height:1; }
  .stat-label { font-size:12px; color:var(--text-light); margin-top:4px; }
  .stat-divider { width:1px; background:var(--border); }

  /* Hero visual */
  .hero-visual { position:relative; animation:fadeLeft 1s ease 0.3s both; }
  .hero-card-stack { position:relative; height:420px; }
  .dest-card {
    position:absolute;
    background:white; border:1px solid var(--border);
    border-radius:20px; padding:24px;
    box-shadow:0 10px 40px rgba(45,158,140,0.1);
    transition:transform 0.4s ease;
  }
  .dest-card:hover { transform:translateY(-8px) !important; }
  .dest-card.main { width:280px; bottom:0; right:0; transform:rotate(-3deg); }
  .dest-card.secondary { width:240px; top:0; left:0; transform:rotate(4deg); }
  .dest-card.accent { width:200px; top:40%; right:30%; transform:rotate(-1deg); }
  .dest-card-icon { font-size:38px; margin-bottom:10px; }
  .dest-card-name { color:var(--teal-dark); font-size:17px; font-weight:700; margin-bottom:4px; }
  .dest-card-info { color:var(--text-light); font-size:13px; }
  .dest-card-price { margin-top:10px; color:var(--teal); font-weight:800; font-size:16px; }

  @keyframes fadeUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
  @keyframes fadeLeft { from{opacity:0;transform:translateX(40px);} to{opacity:1;transform:translateX(0);} }

  /* ─── SECTION ─── */
  .section-header { text-align:center; margin-bottom:60px; }
  .section-eyebrow {
    display:inline-block; font-size:12px; font-weight:700;
    letter-spacing:3px; text-transform:uppercase;
    color:var(--teal); margin-bottom:14px; position:relative; padding:0 20px;
  }
  .section-eyebrow::before,.section-eyebrow::after {
    content:''; position:absolute; top:50%; width:35px; height:1px; background:var(--teal); opacity:0.5;
  }
  .section-eyebrow::before { right:100%; margin-right:-20px; }
  .section-eyebrow::after { left:100%; margin-left:-20px; }

  .section-title {
    font-size:clamp(28px,4vw,44px); font-weight:900;
    color:var(--text-dark); line-height:1.2; margin-bottom:14px;
  }
  .section-sub { font-size:16px; font-weight:300; color:var(--text-mid); max-width:560px; margin:0 auto; line-height:1.9; }

  /* ─── ABOUT ─── */
  .about { padding:110px 60px; background:var(--white); }
  .about-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }

  .about-visual { position:relative; }
  .about-img-main {
    width:100%; border-radius:28px; overflow:hidden;
    background:linear-gradient(135deg,var(--teal-pale),var(--teal-ultra));
    height:430px; display:flex; align-items:center; justify-content:center;
    position:relative; box-shadow:0 30px 80px rgba(45,158,140,0.15);
    border:1px solid var(--border);
  }
  .about-float-badge {
    position:absolute; background:white; border:1px solid var(--border);
    border-radius:16px; padding:16px 22px; font-weight:800;
    box-shadow:0 10px 30px rgba(45,158,140,0.15); color:var(--text-dark);
  }
  .about-float-badge .big { font-size:26px; display:block; line-height:1; }
  .about-float-badge .label { font-size:12px; color:var(--teal); margin-top:4px; }
  .about-float-badge.top-right { top:-20px; left:-20px; }
  .about-float-badge.bottom { bottom:-20px; right:-20px; }

  .about-text .section-header { text-align:right; }
  .about-text .section-eyebrow { padding-right:0; }
  .about-text .section-eyebrow::before { display:none; }

  .about-desc { font-size:16px; line-height:2; color:var(--text-mid); margin-bottom:24px; }

  .about-features { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:36px; }
  .feature-item {
    display:flex; align-items:flex-start; gap:12px;
    background:var(--teal-ultra); border:1px solid var(--border);
    border-radius:14px; padding:16px; transition:all 0.3s;
  }
  .feature-item:hover { border-color:var(--teal); transform:translateY(-3px); box-shadow:0 8px 25px var(--shadow); background:white; }
  .feature-icon {
    width:40px; height:40px; flex-shrink:0;
    background:linear-gradient(135deg,var(--teal),var(--teal-dark));
    border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px;
  }
  .feature-text strong { display:block; font-size:14px; font-weight:700; color:var(--text-dark); margin-bottom:2px; }
  .feature-text span { font-size:12px; color:var(--text-light); }

  /* ─── PACKAGES ─── */
  .packages { padding:110px 60px; background:var(--off); position:relative; overflow:hidden; }
  .packages::before {
    content:''; position:absolute; inset:0;
    background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232D9E8C' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
  }
  .packages-inner { max-width:1200px; margin:0 auto; position:relative; }

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

  .pkg-card {
    background:white; border:1.5px solid var(--border); border-radius:22px;
    padding:32px 26px; position:relative; overflow:hidden;
    transition:all 0.35s ease; cursor:pointer;
  }
  .pkg-card:hover { transform:translateY(-8px); border-color:var(--teal); box-shadow:0 20px 60px var(--shadow); }
  .pkg-card.featured { border-color:var(--teal); box-shadow:0 8px 40px var(--shadow); }

  .pkg-featured-badge {
    position:absolute; top:-1px; left:50%; transform:translateX(-50%);
    background:linear-gradient(135deg,var(--teal),var(--teal-dark));
    color:white; font-size:11px; font-weight:800;
    padding:5px 20px; border-radius:0 0 12px 12px; letter-spacing:1px;
  }
  .pkg-emoji { font-size:44px; margin-bottom:14px; display:block; }
  .pkg-category { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--teal); margin-bottom:8px; }
  .pkg-title { font-size:20px; font-weight:800; color:var(--text-dark); margin-bottom:10px; }
  .pkg-desc { font-size:14px; font-weight:300; color:var(--text-mid); line-height:1.8; margin-bottom:22px; }

  .pkg-includes { margin-bottom:26px; list-style:none; }
  .pkg-includes li {
    display:flex; align-items:center; gap:8px;
    color:var(--text-mid); font-size:13px; margin-bottom:8px;
  }
  .pkg-includes li::before {
    content:'✓'; width:20px; height:20px; flex-shrink:0;
    background:var(--teal-pale); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:11px; color:var(--teal);
  }

  .pkg-footer { display:flex; align-items:center; justify-content:space-between; }
  .pkg-price-label { font-size:11px; color:var(--text-light); margin-bottom:2px; }
  .pkg-price { font-size:20px; font-weight:900; color:var(--teal); }
  .pkg-price span { font-size:13px; font-weight:400; color:var(--text-light); }

  .pkg-btn {
    background:var(--teal-pale); border:1.5px solid var(--border);
    color:var(--teal-dark); padding:10px 20px; border-radius:10px;
    font-size:13px; font-weight:600; text-decoration:none; transition:all 0.3s; cursor:pointer;
  }
  .pkg-btn:hover, .pkg-card.featured .pkg-btn {
    background:linear-gradient(135deg,var(--teal),var(--teal-dark));
    color:white; border-color:transparent;
  }

  /* ─── DESTINATIONS ─── */
  .destinations-band { padding:60px; background:var(--teal-pale); }
  .band-inner { max-width:1200px; margin:0 auto; }
  .band-title { font-size:18px; font-weight:700; color:var(--teal-dark); margin-bottom:28px; text-align:center; }
  .destinations-scroll { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }
  .dest-pill {
    display:flex; align-items:center; gap:10px;
    background:white; border:1px solid var(--border);
    border-radius:100px; padding:11px 22px;
    font-size:14px; font-weight:500; color:var(--text-dark);
    transition:all 0.3s; cursor:default;
  }
  .dest-pill:hover { background:var(--teal); color:white; border-color:var(--teal); transform:translateY(-3px); box-shadow:0 8px 20px var(--shadow); }
  .dest-pill-flag { font-size:20px; }

  /* ─── TESTIMONIAL ─── */
  .testimonial-section { padding:80px 60px; background:white; }
  .testimonial-inner { max-width:860px; margin:0 auto; text-align:center; }
  .testimonial-quote { font-size:64px; color:var(--teal-light); line-height:0.8; font-family:'Playfair Display',serif; }
  .stars { color:var(--teal); font-size:20px; letter-spacing:3px; margin:14px 0 20px; }
  .testimonial-text { font-size:19px; font-weight:300; color:var(--text-mid); line-height:1.9; margin-bottom:28px; }
  .testimonial-author { display:flex; align-items:center; justify-content:center; gap:14px; }
  .testimonial-avatar {
    width:50px; height:50px;
    background:linear-gradient(135deg,var(--teal),var(--teal-dark));
    border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:22px;
  }
  .testimonial-name { font-weight:700; color:var(--text-dark); font-size:16px; }
  .testimonial-title-label { font-size:13px; color:var(--text-light); }

  /* ─── CONTACT ─── */
  .contact { padding:110px 60px; background:var(--off); }
  .contact-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }

  .contact-info-block .section-header { text-align:right; }
  .contact-info-block .section-eyebrow { padding-right:0; }
  .contact-info-block .section-eyebrow::before { display:none; }
  .contact-desc { font-size:16px; line-height:2; color:var(--text-mid); margin-bottom:34px; }

  .contact-methods { display:flex; flex-direction:column; gap:14px; }
  .contact-method {
    display:flex; align-items:center; gap:14px;
    background:white; border:1px solid var(--border);
    border-radius:14px; padding:16px 20px; text-decoration:none; transition:all 0.3s;
  }
  .contact-method:hover { border-color:var(--teal); transform:translateX(-6px); box-shadow:0 8px 25px var(--shadow); }
  .contact-method-icon { width:46px; height:46px; flex-shrink:0; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:22px; }
  .contact-method-icon.teal { background:linear-gradient(135deg,var(--teal),var(--teal-dark)); }
  .contact-method-icon.green { background:linear-gradient(135deg,#25D366,#128C7E); }
  .contact-method-icon.insta { background:linear-gradient(135deg,#E1306C,#833AB4); }
  .contact-method-text label { display:block; font-size:11px; color:var(--text-light); margin-bottom:3px; font-weight:500; cursor:pointer; }
  .contact-method-text span { font-size:15px; font-weight:600; color:var(--text-dark); }

  .contact-form-card {
    background:white; border:1px solid var(--border); border-radius:24px;
    padding:38px; box-shadow:0 20px 60px var(--shadow);
  }
  .form-title { font-size:20px; font-weight:800; color:var(--text-dark); margin-bottom:26px; }
  .form-group { margin-bottom:18px; }
  .form-group label { display:block; font-size:13px; font-weight:600; color:var(--text-mid); margin-bottom:7px; }
  .form-group input,.form-group textarea,.form-group select {
    width:100%; background:var(--teal-ultra);
    border:1.5px solid var(--border); border-radius:10px;
    padding:12px 15px; font-family:'Tajawal',sans-serif;
    font-size:15px; color:var(--text-dark); outline:none; direction:rtl; transition:all 0.3s;
  }
  .form-group input:focus,.form-group textarea:focus,.form-group select:focus {
    border-color:var(--teal); box-shadow:0 0 0 3px rgba(45,158,140,0.1); background:white;
  }
  .form-group textarea { resize:vertical; min-height:100px; }
  .form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
  .form-submit {
    width:100%; background:linear-gradient(135deg,var(--teal),var(--teal-dark));
    color:white; border:none; border-radius:12px; padding:15px;
    font-family:'Tajawal',sans-serif; font-size:16px; font-weight:800;
    cursor:pointer; transition:all 0.3s; box-shadow:0 6px 25px rgba(45,158,140,0.3);
  }
  .form-submit:hover { transform:translateY(-3px); box-shadow:0 12px 35px rgba(45,158,140,0.4); }
  .success-msg {
    display:none; background:rgba(45,158,140,0.1); border:1px solid rgba(45,158,140,0.3);
    border-radius:10px; padding:13px; color:var(--teal-dark);
    font-size:14px; font-weight:600; margin-bottom:14px; text-align:center;
  }

  /* ─── SOCIAL ─── */
  .social-section { padding:80px 60px; background:var(--teal-pale); text-align:center; }
  .social-inner { max-width:700px; margin:0 auto; }
  .social-title { font-size:28px; font-weight:800; color:var(--text-dark); margin-bottom:12px; }
  .social-sub { color:var(--text-mid); font-size:15px; margin-bottom:38px; }
  .social-links { display:flex; justify-content:center; gap:18px; flex-wrap:wrap; }
  .social-link {
    display:flex; align-items:center; gap:10px;
    text-decoration:none; border-radius:14px; padding:14px 24px;
    font-size:14px; font-weight:600; border:1px solid transparent; transition:all 0.3s;
    background:white; color:var(--text-dark);
  }
  .social-link .social-icon { font-size:22px; }
  .social-link:hover { transform:translateY(-4px); box-shadow:0 12px 30px rgba(0,0,0,0.1); }
  .social-link.instagram:hover { background:linear-gradient(135deg,#E1306C,#833AB4); color:white; }
  .social-link.whatsapp:hover { background:#25D366; color:white; }
  .social-link.snapchat:hover { background:#FFFC00; color:#333; }
  .social-link.twitter:hover { background:#000; color:white; }

  /* ─── FOOTER ─── */
  footer {
    background:var(--text-dark); padding:50px 60px 28px;
    border-top:3px solid var(--teal);
  }
  .footer-inner { max-width:1200px; margin:0 auto; }
  .footer-top { display:grid; grid-template-columns:2fr 1fr 1fr; gap:60px; margin-bottom:46px; }

  .footer-brand-logo { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
  .footer-brand-logo img { height:52px; object-fit:contain; filter:brightness(0) invert(1); opacity:0.9; }
  .footer-brand-desc { color:rgba(255,255,255,0.45); font-size:14px; line-height:1.9; }

  .footer-col-title { color:var(--teal-light); font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:18px; }
  .footer-links { list-style:none; }
  .footer-links li { margin-bottom:10px; }
  .footer-links a { color:rgba(255,255,255,0.45); text-decoration:none; font-size:14px; transition:color 0.3s; }
  .footer-links a:hover { color:var(--teal-light); }

  .footer-bottom {
    border-top:1px solid rgba(255,255,255,0.08); padding-top:26px;
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
  }
  .footer-copyright { color:rgba(255,255,255,0.3); font-size:13px; }
  .footer-credit { color:rgba(255,255,255,0.4); font-size:13px; display:flex; align-items:center; gap:6px; }
  .footer-credit a { color:var(--teal-light); text-decoration:none; font-weight:600; transition:color 0.3s; }
  .footer-credit a:hover { color:white; }

  /* ─── WA FLOAT ─── */
  .wa-float {
    position:fixed; bottom:28px; right:28px; z-index:999;
    width:56px; height:56px; background:#25D366; border-radius:50%;
    display:flex; align-items:center; justify-content:center; font-size:26px;
    text-decoration:none; box-shadow:0 6px 25px rgba(37,211,102,0.45);
    transition:all 0.3s; animation:waPulse 3s ease infinite;
  }
  .wa-float:hover { transform:scale(1.12); box-shadow:0 12px 35px rgba(37,211,102,0.6); }
  @keyframes waPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.06);} }

  /* ─── REVEAL ─── */
  .reveal { opacity:0; transform:translateY(28px); transition:all 0.7s ease; }
  .reveal.visible { opacity:1; transform:translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media(max-width:1024px) {
    nav { padding:14px 28px; }
    .hero-content { grid-template-columns:1fr; padding:110px 28px 60px; }
    .hero-visual { display:none; }
    .about-inner,.contact-inner { grid-template-columns:1fr; }
    .packages-grid { grid-template-columns:1fr 1fr; }
    .footer-top { grid-template-columns:1fr 1fr; }
  }
  @media(max-width:768px) {
    nav { padding:12px 18px; }
    .nav-links { display:none; }
    .about,.packages,.contact,.social-section { padding:70px 22px; }
    .destinations-band,.testimonial-section { padding:50px 22px; }
    footer { padding:38px 22px 22px; }
    .packages-grid { grid-template-columns:1fr; }
    .footer-top { grid-template-columns:1fr; gap:32px; }
    .footer-bottom { flex-direction:column; text-align:center; }
    .form-row { grid-template-columns:1fr; }
    .about-features { grid-template-columns:1fr; }
    .hero-stats { justify-content:center; }
  }