/* ═══════════════════════════════════════════════════════════════
   RESET & TOKENS
══════════════════════════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --ink:     #08150F;
  --forest:  #0D4F34;
  --emerald: #1A7A50;
  --jade:    #24A36B;
  --mint:    #3ECFA0;
  --glow:    #5EFFC6;
  --gold:    #D4A017;
  --amber:   #F5B83A;
  --cream:   #F9F4E8;
  --sand:    #EDE5CF;
  --white:   #FFFFFF;
  --glass:   rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
  
  --shadow-card: 0 24px 60px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 40px rgba(36,163,107,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   BACKGROUND NOISE TEXTURE
══════════════════════════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════════
   ULTRA PREMIUM NAVBAR - COMPLETE
══════════════════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 25px;
  left: 25px;
  right: 25px;
  z-index: 1000;
  border-radius: 28px;
  background: rgba(6, 18, 12, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(36, 163, 107, 0.25);
  box-shadow: 
    0 20px 40px -12px rgba(0, 0, 0, 0.3),
    0 0 0 0.5px rgba(36, 163, 107, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.navbar.scrolled {
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  background: rgba(6, 18, 12, 0.98);
  border-bottom: 1px solid rgba(36, 163, 107, 0.3);
  box-shadow: 0 10px 40px -12px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Styles */
.nav-brand {
  position: relative;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-logo {
  position: relative;
  width: 52px;
  height: 52px;
}

.brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  border: 2px solid var(--mint);
  box-shadow: 0 0 25px rgba(36, 163, 107, 0.4);
  transition: all 0.4s ease;
}

.brand-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--amber), var(--mint));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  animation: spin 3s linear infinite;
  filter: blur(4px);
  pointer-events: none;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.brand-link:hover .brand-ring {
  opacity: 0.6;
}

.brand-link:hover .brand-img {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(36, 163, 107, 0.6);
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF, var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  position: relative;
}

.brand-text span {
  background: linear-gradient(135deg, var(--mint), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.brand-badge {
  position: absolute;
  top: -8px;
  right: -55px;
  font-size: 0.65rem;
  background: linear-gradient(135deg, var(--mint), var(--jade));
  -webkit-text-fill-color: white;
  color: white;
  padding: 3px 10px;
  border-radius: 30px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(36, 163, 107, 0.3);
  letter-spacing: 0;
}

/* Desktop Navigation Items */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 60px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.nav-svg {
  width: 20px;
  height: 20px;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--amber));
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-item:hover {
  color: var(--mint);
  transform: translateY(-2px);
  background: rgba(36, 163, 107, 0.08);
}

.nav-item.active {
  background: linear-gradient(135deg, rgba(36, 163, 107, 0.2), rgba(36, 163, 107, 0.05));
  color: var(--mint);
  border: 1px solid rgba(36, 163, 107, 0.3);
  box-shadow: 0 4px 15px rgba(36, 163, 107, 0.15);
}

.nav-item.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-item.nav-cta {
  background: linear-gradient(135deg, var(--amber), #FF8C00, var(--gold));
  color: #1a1a2e;
  border: none;
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.nav-item.nav-cta::after {
  display: none;
}

.nav-item.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.6);
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.nav-item.nav-cta .nav-svg {
  stroke: #1a1a2e;
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: rgba(36, 163, 107, 0.15);
  border: 1px solid rgba(36, 163, 107, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.menu-btn:hover {
  background: rgba(36, 163, 107, 0.25);
  transform: scale(1.05);
}

.menu-btn-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 18px;
}

.menu-btn-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-btn.active .menu-btn-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.active .menu-btn-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-btn.active .menu-btn-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Panel */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: rgba(8, 21, 15, 0.98);
  backdrop-filter: blur(30px);
  border-left: 1px solid rgba(36, 163, 107, 0.2);
  transition: right 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-mobile.active {
  right: 0;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 25px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--mint);
}

.mobile-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-close:hover {
  background: rgba(212, 160, 23, 0.2);
  transform: rotate(90deg);
}

.mobile-menu-inner {
  flex: 1;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 60px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}

.mobile-nav-icon {
  font-size: 1.4rem;
  width: 36px;
}

.mobile-nav-arrow {
  margin-right: auto;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: linear-gradient(135deg, rgba(36, 163, 107, 0.15), rgba(36, 163, 107, 0.05));
  border-color: rgba(36, 163, 107, 0.3);
  color: var(--mint);
  transform: translateX(-5px);
}

.mobile-nav-item:hover .mobile-nav-arrow,
.mobile-nav-item.active .mobile-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mobile-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 15px 0;
}

.mobile-nav-item.mobile-cta {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #1a1a2e;
  justify-content: center;
  font-weight: 800;
  margin-top: 10px;
}

.mobile-nav-item.mobile-cta:hover {
  transform: translateX(0);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

.mobile-footer {
  padding: 20px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Powered By Section - Room Tech (Single Version) */
.powered-by {
  margin-top: 25px;
  padding-top: 20px;
  text-align: center;
}

.powered-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.powered-divider span:first-child,
.powered-divider span:last-child {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.powered-divider span:first-child {
  flex: 1;
  text-align: right;
}

.powered-divider span:last-child {
  flex: 1;
  text-align: left;
}

.powered-divider span:nth-child(2) {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--mint), var(--jade));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #1a1a2e;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(36, 163, 107, 0.5);
}

.powered-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 500;
}

.powered-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.roomtech-logo {
  max-width: 120px;
  height: auto;
  max-height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.roomtech-logo:hover {
  opacity: 1;
  filter: brightness(0) invert(1);
  transform: scale(1.02);
}

.powered-name {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Navbar Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Navbar */
@media (max-width: 968px) {
  .desktop-menu {
    display: none;
  }
  
  .menu-btn {
    display: flex;
  }
  
  .brand-badge {
    display: none;
  }
  
  .brand-text {
    font-size: 1.2rem;
  }
  
  .brand-logo {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 15px;
    left: 15px;
    right: 15px;
    border-radius: 20px;
  }
  
  .navbar.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  
  .nav-container {
    padding: 0.7rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .brand-text {
    display: none;
  }
  
  .brand-logo {
    width: 40px;
    height: 40px;
  }
  
  .navbar {
    top: 10px;
    left: 10px;
    right: 10px;
  }
}

/* ============================================
   MOBILE ONLY - POWERED BY ROOM TECH
   تظهر فقط في شاشات الموبايل في منتصف الناف بار
   ============================================ */

.desktop-hide {
  display: none;
}

.mobile-powered {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(36, 163, 107, 0.1);
  padding: 6px 14px;
  border-radius: 40px;
  border: 1px solid rgba(36, 163, 107, 0.2);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-powered-text {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mobile-powered-logo {
  height: 22px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* للشاشات المتوسطة والصغيرة - إظهار العنصر في منتصف الناف بار */
@media (max-width: 968px) {
  .mobile-powered {
    display: flex;
  }
  
  /* إخفاء العنصر عندما تكون القائمة مفتوحة */
  .menu-btn.active ~ .mobile-powered,
  body.menu-open .mobile-powered {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 480px) {
  .mobile-powered-text {
    font-size: 0.55rem;
  }
  
  .mobile-powered-logo {
    height: 18px;
    max-width: 55px;
  }
  
  .mobile-powered {
    padding: 4px 10px;
    gap: 5px;
  }
}
/* ============================================
   ROOM TECH CENTER SECTION - داخل القائمة الجوالة
   تظهر فقط في منتصف القائمة عند فتحها على الموبايل
   ============================================ */

.roomtech-center {
  text-align: center;
  padding: 30px 20px;
  margin: 20px 0;
  background: linear-gradient(135deg, rgba(36, 163, 107, 0.08), rgba(36, 163, 107, 0.02));
  border-top: 1px solid rgba(36, 163, 107, 0.15);
  border-bottom: 1px solid rgba(36, 163, 107, 0.15);
  position: relative;
}

.roomtech-center::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 1px;
  background: radial-gradient(circle, rgba(36, 163, 107, 0.3), transparent);
  z-index: -1;
}

.roomtech-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-weight: 500;
}

.roomtech-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.roomtech-brand-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.roomtech-brand-logo:hover {
  transform: scale(1.02);
  filter: brightness(0) invert(1);
}

.roomtech-name {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* تنسيقات إضافية لضمان وضوح الكلام داخل الشعار */
.roomtech-brand-logo {
  background: transparent;
  /* إذا كان الشعار يحتوي على نصوص داكنة، تأكد من ظهورها */
}

/* للشاشات الصغيرة جداً */
@media (max-width: 480px) {
  .roomtech-center {
    padding: 25px 15px;
    margin: 15px 0;
  }
  
  .roomtech-brand-logo {
    max-height: 200px;
            border-radius: 50%;
  }
  
  .roomtech-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
  
  .roomtech-name {
    font-size: 0.7rem;
  }
}

/* للشاشات الأكبر (سطح المكتب) - إخفاء هذا القسم */
@media (min-width: 969px) {
  .roomtech-center {
    display: none;
  }
}
/* ═══════════════════════════════════════════════════════════════
   PAGE ROUTING
══════════════════════════════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════════════════════════════
   باقي التنسيقات (HERO, OFFERS, CALCULATOR, FORM, POLICY, FOOTER)
   تستمر كما هي من الكود الأصلي...
══════════════════════════════════════════════════════════════════ */

/* ... هنا باقي الكود الأصلي للـ Hero, Offers, Calculator, Form, Policy, Footer ... */




/* ═══════════════════════════════════════════════════════════════
   PAGE ROUTING
══════════════════════════════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 40px 80px;
}

/* animated mesh gradient */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(ellipse 80% 80% at 10% 20%, rgba(13,79,52,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(26,122,80,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(8,21,15,1) 40%, transparent 100%),
    var(--ink);
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0%   { background-position: 0% 0%, 100% 100%; }
  100% { background-position: 5% 5%, 95% 95%; }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(36,163,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,163,107,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite alternate;
  z-index: 0;
}

.orb-1 {
  width: 500px; height: 500px;
  background: var(--jade);
  top: -200px; right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px; height: 300px;
  background: var(--amber);
  bottom: 10%; left: 5%;
  animation-delay: 3s;
  opacity: 0.15;
}

.orb-3 {
  width: 200px; height: 200px;
  background: var(--mint);
  top: 40%; left: 40%;
  animation-delay: 6s;
  opacity: 0.1;
}

@keyframes float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(36,163,107,0.15);
  border: 1px solid rgba(36,163,107,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease both;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title .line-accent {
  background: linear-gradient(90deg, var(--jade) 0%, var(--mint) 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--jade) 0%, var(--emerald) 100%);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 60px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 900;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(26,122,80,0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26,122,80,0.55);
}

.btn-secondary {
  background: var(--glass);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 60px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

/* hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.7s 0.5s ease both;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mint), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeIn 1s 1s ease both;
  opacity: 0.4;
}

.scroll-hint span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION WRAPPERS
══════════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 40px;
  position: relative;
  z-index: 1;
}

.section-dark { background: rgba(8,21,15,0.5); }
.section-mid  { background: rgba(13,79,52,0.08); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }

.container { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mint);
  text-align: center;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   PARTNER CARDS (Offers)
══════════════════════════════════════════════════════════════════ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.partner-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: default;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(36,163,107,0.12) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36,163,107,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(36,163,107,0.15), var(--shadow-glow);
  background: rgba(36,163,107,0.06);
}

.partner-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(36,163,107,0.15), rgba(36,163,107,0.05));
  border: 1px solid rgba(36,163,107,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.partner-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.partner-card p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
}

.partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.tag-green { background: rgba(36,163,107,0.15); color: var(--mint); border: 1px solid rgba(36,163,107,0.25); }
.tag-amber { background: rgba(212,160,23,0.12); color: var(--amber); border: 1px solid rgba(212,160,23,0.25); }
.tag-coming { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS (Timeline style)
══════════════════════════════════════════════════════════════════ */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, var(--jade), var(--mint), var(--jade));
  opacity: 0.3;
  z-index: 0;
}

.step-item {
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--jade), var(--emerald));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(26,122,80,0.4), 0 0 0 6px rgba(26,122,80,0.12);
  position: relative;
}

.step-item:nth-child(2) .step-number {
  background: linear-gradient(135deg, var(--mint), var(--jade));
}

.step-item:nth-child(3) .step-number {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  box-shadow: 0 8px 24px rgba(212,160,23,0.4), 0 0 0 6px rgba(212,160,23,0.12);
}

.step-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.step-item p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   CALCULATOR
══════════════════════════════════════════════════════════════════ */
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-copy h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.calc-copy p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.8;
}

.calc-card {
  background: rgba(13,79,52,0.12);
  border: 1px solid rgba(36,163,107,0.2);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.calc-card::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(36,163,107,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-label span:first-child {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.slider-value {
  background: rgba(36,163,107,0.15);
  border: 1px solid rgba(36,163,107,0.25);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
  color: var(--mint);
}

input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  margin-bottom: 32px;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jade), var(--mint));
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(36,163,107,0.5);
  transition: all 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.months-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.month-btn {
  padding: 10px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: rgba(255,255,255,0.6);
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.month-btn:hover {
  background: rgba(36,163,107,0.1);
  border-color: rgba(36,163,107,0.3);
  color: var(--mint);
}

.month-btn.active {
  background: var(--jade);
  border-color: var(--jade);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,122,80,0.4);
}

.calc-result {
  background: linear-gradient(135deg, rgba(36,163,107,0.15), rgba(36,163,107,0.05));
  border: 1px solid rgba(36,163,107,0.25);
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  margin-bottom: 14px;
}

.result-amount {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--mint), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.result-unit {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.calc-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   LEAD FORM
══════════════════════════════════════════════════════════════════ */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.form-aside h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
}

.form-aside p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.trust-item .icon {
  width: 36px; height: 36px;
  background: rgba(36,163,107,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.form-card {
  background: rgba(13,79,52,0.08);
  border: 1px solid rgba(36,163,107,0.15);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.form-card::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.form-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-control:focus {
  border-color: var(--jade);
  background: rgba(36,163,107,0.06);
  box-shadow: 0 0 0 4px rgba(36,163,107,0.1);
}

.form-control option {
  background: #0D1F18;
  color: var(--white);
}

/* phone input with flag */
.phone-group {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.25s;
}

.phone-group:focus-within {
  border-color: var(--jade);
  background: rgba(36,163,107,0.06);
  box-shadow: 0 0 0 4px rgba(36,163,107,0.1);
}

.phone-prefix {
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--mint);
  background: rgba(36,163,107,0.1);
  border-left: 1.5px solid rgba(36,163,107,0.15);
  white-space: nowrap;
  flex-shrink: 0;
}

.phone-group input {
  flex: 1;
  padding: 14px 14px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  outline: none;
  direction: ltr;
}

.phone-group input::placeholder {
  color: rgba(255,255,255,0.25);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--jade) 0%, var(--emerald) 100%);
  color: var(--white);
  border: none;
  border-radius: 60px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 900;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(26,122,80,0.4);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(26,122,80,0.55);
}

.btn-submit:hover::before { opacity: 1; }

.btn-submit:active { transform: translateY(0); }

.btn-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* success state */
.success-state {
  display: none;
  text-align: center;
  padding: 32px 20px;
  animation: fadeInUp 0.5s ease both;
}

.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(36,163,107,0.2), rgba(36,163,107,0.1));
  border: 2px solid rgba(36,163,107,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(36,163,107,0.25);
}

.success-state h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--mint);
}

.success-state p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
}

.ref-badge {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.25);
  color: var(--amber);
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  margin: 20px 0;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   POLICY PAGE
══════════════════════════════════════════════════════════════════ */
.policy-hero {
  padding: 120px 40px 60px;
  background: linear-gradient(180deg, rgba(13,79,52,0.2) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.policy-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.policy-subtitle {
  color: rgba(255,255,255,0.45);
  font-size: 15px;
}

.policy-body {
  padding: 60px 40px;
}

.policy-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 88px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 24px;
}

.policy-nav h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}

.policy-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 4px;
}

.policy-nav a:hover {
  background: rgba(36,163,107,0.1);
  color: var(--mint);
}

.policy-doc {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 48px 52px;
}

.policy-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.policy-section h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.policy-section p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 12px;
}

.policy-section p strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

.highlight-box {
  background: rgba(36,163,107,0.08);
  border: 1px solid rgba(36,163,107,0.2);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-top: 20px;
}

.highlight-box p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin: 0;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.fee-table th {
  background: rgba(36,163,107,0.12);
  padding: 12px 16px;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: var(--mint);
}

.fee-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.fee-table tr:hover td {
  background: rgba(36,163,107,0.04);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER - RESPONSIVE DESIGN
══════════════════════════════════════════════════════════════════ */

footer {
  background: linear-gradient(180deg, #060E09 0%, #030705 100%);
  border-top: 1px solid rgba(36, 163, 107, 0.2);
  padding: 60px 40px 30px;
  position: relative;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint), var(--amber), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   FOOTER TOP SECTION
   ============================================ */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--mint);
  object-fit: cover;
}

.footer-brand-text {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF, var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-text span {
  background: linear-gradient(135deg, var(--mint), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  max-width: 280px;
}

/* Footer Links Columns */
.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links-column h4 {
  font-size: 0.75rem;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 800;
}

.footer-links-column a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 0;
  transition: all 0.25s ease;
}

.footer-links-column a:hover {
  color: var(--mint);
  transform: translateX(-5px);
}

.social-link {
  display: inline-block !important;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.footer-partners {
  background: rgba(36, 163, 107, 0.05);
  border: 1px solid rgba(36, 163, 107, 0.1);
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.partners-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 1px;
}

.partners-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-badge {
  font-size: 0.7rem;
  padding: 4px 12px;
  background: rgba(36, 163, 107, 0.12);
  border: 1px solid rgba(36, 163, 107, 0.2);
  border-radius: 30px;
  color: var(--mint);
  font-weight: 600;
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */
.footer-disclaimer {
  background: rgba(212, 160, 23, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: 20px;
  padding: 20px 28px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.disclaimer-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.disclaimer-text strong {
  color: var(--amber);
  font-weight: 800;
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copyright strong {
  color: var(--mint);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--mint);
}

.separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(36, 163, 107, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.65rem;
  color: var(--mint);
  font-weight: 600;
  border: 1px solid rgba(36, 163, 107, 0.2);
}

.badge-icon {
  width: 16px;
  height: 16px;
  background: var(--mint);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #1a1a2e;
  font-weight: 900;
}

/* ============================================
   RESPONSIVE FOOTER - شاشة الموبايل
   ============================================ */
@media (max-width: 768px) {
  footer {
    padding: 40px 24px 24px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-tagline {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    gap: 40px;
    text-align: center;
  }
  
  .footer-links-column a:hover {
    transform: translateX(0);
  }
  
  .footer-partners {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  
  .partners-badges {
    justify-content: center;
  }
  
  .footer-disclaimer {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }
  
  .disclaimer-icon {
    margin: 0 auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 32px 16px 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
  
  .partner-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
  
  .disclaimer-text {
    font-size: 0.7rem;
  }
  
  .footer-copyright {
    font-size: 0.65rem;
  }
}
/* ═══════════════════════════════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2000;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.error { border-color: rgba(248,113,113,0.3); color: #f87171; }
.toast.success { border-color: rgba(36,163,107,0.3); color: var(--mint); }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .section { padding: 70px 24px; }
  .calc-wrapper { grid-template-columns: 1fr; }
  .form-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .steps-timeline { grid-template-columns: 1fr; gap: 32px; }
  .steps-timeline::before { display: none; }
  .policy-grid { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .policy-doc { padding: 32px 24px; }
  .policy-hero { padding: 100px 24px 48px; }
  .policy-body { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 90px 24px 70px; }
  .navbar { padding: 0 20px; }
  .nav-link { padding: 7px 14px; font-size: 13px; }
  .form-card { padding: 28px 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 28px; }
}

@media (max-width: 600px) {
  .months-grid { grid-template-columns: repeat(2,1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
