/* ========================================
   AMMON - Premium Luxury Design System
   أزرق داكن + ذهبي فاخر
   ======================================== */

/* CSS Variables - Light & Eye-Friendly */
:root {
  /* Primary Colors - Ammon Deep Blue */
  --primary: #1a3a5c;
  --primary-light: #2d4a6f;
  --primary-dark: #0f2842;
  --primary-gradient: linear-gradient(135deg, #1a3a5c 0%, #2d4a6f 100%);
  
  /* Secondary Colors - Soft Navy */
  --secondary: #1E293B;
  --secondary-light: #334155;
  --secondary-dark: #0F172A;
  
  /* Accent Colors - Gold & Premium */
  --accent-blue: #3B82F6;
  --accent-gold: #c9a961;
  --accent-gold-light: #e0c078;
  --accent-purple: #8B5CF6;
  --accent-red: #EF4444;
  --accent-amber: #c9a961;
  
  /* Background Colors - Light & Clean */
  --bg-primary: #F8FAFC;
  --bg-secondary: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --bg-glass-hover: rgba(255, 255, 255, 0.95);
  
  /* Text Colors - High Readability */
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-gold: #c9a961;
  
  /* Border & Shadow - Soft & Modern */
  --border-color: rgba(148, 163, 184, 0.3);
  --border-glow: 0 0 20px rgba(26, 58, 92, 0.15);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 169, 97, 0.25);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Fonts */
  --font-primary: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

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

/* Animated Background Grid - Light Theme */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(26, 58, 92, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Floating Particles Animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(5deg); opacity: 0.6; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(26, 58, 92, 0.2); }
  50% { box-shadow: 0 0 30px rgba(26, 58, 92, 0.4); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

/* ========================================
   HEADER - Light Professional Navigation
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
  background: rgba(26, 58, 92, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 58, 92, 0.2);
}

.header__brand img {
  height: 44px;
  width: auto;
  filter: none;
  transition: var(--transition-normal);
  display: block;
}

.header__brand:hover {
  background: rgba(26, 58, 92, 0.15);
  border-color: var(--primary);
  transform: scale(1.02);
}

.header__brand:hover img {
  filter: drop-shadow(0 0 10px rgba(26, 58, 92, 0.3));
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex: 1;
  justify-content: center;
}

.header__nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.header__nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  opacity: 0;
  transition: var(--transition-fast);
  z-index: -1;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: #ffffff;
}

.header__nav-link:hover::before,
.header__nav-link.active::before {
  opacity: 1;
}

.header__nav-link:hover {
  transform: translateY(-2px);
}

/* CTA Button */
.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-normal);
  animation: pulse-glow 2s infinite;
}

.header__phone:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-gold);
}

.header__phone svg {
  width: 18px;
  height: 18px;
}

/* Mobile Toggle */
.header__toggle {
  display: none;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: var(--space-xs);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.header__toggle:hover {
  background: var(--bg-glass-hover);
  border-color: var(--primary);
}

.header__toggle svg {
  width: 24px;
  height: 24px;
}

/* ========================================
   HERO SECTION - Web 3 Style
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(80px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  overflow: hidden;
  background: linear-gradient(135deg, #0d1f33 0%, #1a3a5c 50%, #0d1f33 100%);
}

/* Simple Mesh Grid Background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(200, 169, 126, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 126, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: meshFloat 30s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes meshFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.7;
  }
}

/* Soft Glow Effect */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(200, 169, 126, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 80%, rgba(200, 169, 126, 0.08) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}

/* Hero Background Grid - Disabled (using mesh in ::before) */
.hero__bg-grid {
  display: none;
}

.hero__inner {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Hero Content */
.hero__content {
  animation: slide-in 0.8s ease-out;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(26, 58, 92, 0.5);
  border: 1px solid rgba(200, 169, 126, 0.3);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #c9a961;
  font-weight: 600;
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: #c9a961;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #ffffff 0%, #c9a961 50%, #e8d5a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title span {
  display: block;
  font-size: 0.7em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-xs);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

/* Hero Actions */
.hero__actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(26, 58, 92, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.4);
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(200, 169, 126, 0.5);
  color: #ffffff;
}

.btn--outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
}

.btn--lg {
  padding: var(--space-sm) var(--space-xl);
  font-size: 1.1rem;
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.hero__stats > div {
  text-align: center;
}

.hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c9a961 0%, #e8d5a3 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Hero Visual Cards */
.hero__visual {
  display: grid;
  gap: var(--space-md);
  animation: slide-in 1s ease-out 0.2s both;
}

.hero__card {
  background: rgba(26, 58, 92, 0.4);
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
}

.hero__card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.hero__card-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(200, 169, 126, 0.15);
}

.hero__card-feature:last-child {
  border-bottom: none;
}

.hero__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hero__card-icon--green {
  background: rgba(200, 169, 126, 0.15);
  color: #c9a961;
}

.hero__card-icon--blue {
  background: rgba(200, 169, 126, 0.15);
  color: #c9a961;
}

.hero__card-icon--purple {
  background: rgba(200, 169, 126, 0.15);
  color: #c9a961;
}

.hero__card-icon--gold {
  background: rgba(200, 169, 126, 0.15);
  color: #c9a961;
}

.hero__card-feature-text {
  flex: 1;
}

.hero__card-feature-text strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero__card-feature-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   SECTIONS - General Styles
   ======================================== */
.section {
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
}

.section-alt {
  background: var(--bg-secondary);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.service-card:hover .service-card__icon {
  background: var(--primary-gradient);
  transform: scale(1.1);
}

.service-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.service-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.service-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-color);
}

.service-card__price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.service-card__price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   PROCESS STEPS
   ======================================== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
  opacity: 0.3;
  z-index: 0;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__step-num {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto var(--space-md);
  position: relative;
  transition: var(--transition-normal);
}

.process__step:hover .process__step-num {
  background: var(--primary-gradient);
  color: #ffffff;
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.process__step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.process__step-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========================================
   EXEMPT CATEGORIES
   ======================================== */
.exempt__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.exempt__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: var(--transition-normal);
}

.exempt__item:hover {
  border-color: var(--accent-green);
  transform: translateX(-5px);
}

.exempt__item-icon {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.exempt__item-text {
  font-weight: 600;
}

.exempt__note {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-top: var(--space-lg);
  text-align: center;
  color: var(--accent-red);
}

/* ========================================
   DOCUMENTS TABS
   ======================================== */
.main-docs__tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.main-docs__tab {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
  font-family: inherit;
  font-size: 0.95rem;
}

.main-docs__tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.main-docs__tab.active {
  background: var(--primary-gradient);
  border-color: var(--primary);
  color: #ffffff;
}

.main-docs__panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  animation: slide-in 0.3s ease-out;
}

.main-docs__panel.active {
  display: block;
}

.docs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-sm);
}

.docs__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-glass);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.docs__item:hover {
  background: var(--bg-glass-hover);
  transform: translateX(5px);
}

.docs__item-num {
  width: 32px;
  height: 32px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

/* ========================================
   EXAM TABLES
   ======================================== */
.exam__table {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.exam__table-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  background: var(--bg-glass);
  padding: var(--space-md);
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
}

.exam__table-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.exam__table-row:last-child {
  border-bottom: none;
}

.exam__table-row:hover {
  background: var(--bg-glass);
}

.exam__table-cell {
  display: flex;
  align-items: center;
}

.exam__level-badge {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
}

.exam__price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Exam Levels Grid */
.exam__levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
}

.exam__level-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: var(--transition-normal);
}

.exam__level-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.exam__level-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: #ffffff;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26, 58, 92, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.form__wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  backdrop-filter: blur(20px);
}

.form__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.form__group {
  margin-bottom: var(--space-md);
}

.form__label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* File Upload */
.file-zone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--bg-glass);
}

.file-zone:hover {
  border-color: var(--primary);
  background: var(--bg-glass-hover);
}

.file-zone svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.file-zone p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Terms Box */
.terms-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  max-height: 200px;
  overflow-y: auto;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq__item:hover {
  border-color: var(--primary);
}

.faq__item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
}

.faq__question:hover {
  background: var(--bg-glass);
}

.faq__icon {
  width: 24px;
  height: 24px;
  transition: var(--transition-fast);
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========================================
   DETAILS SECTION
   ======================================== */
.details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.details__block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.details__block:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.details__block-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-color);
}

.details__block-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid var(--border-color);
}

.details__block-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.details__block-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.details__list {
  list-style: none;
}

.details__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.details__list-item:last-child {
  border-bottom: none;
}

.details__list-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.details__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.details__info-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: var(--transition-fast);
}

.details__info-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--primary);
}

.details__info-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.details__info-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* ========================================
   AFFILIATE SECTION
   ======================================== */
.affiliate__card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.affiliate__input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.affiliate__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.affiliate__stat {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  min-width: 120px;
  transition: var(--transition-fast);
}

.affiliate__stat:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.affiliate__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.affiliate__stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.affiliate__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.affiliate__link-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.affiliate__link-row input {
  flex: 1;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  direction: ltr;
}

.affiliate__link-row input:focus {
  outline: none;
  border-color: var(--primary);
}

.affiliate__link-row .btn {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  min-width: 110px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary-gradient);
}

.footer__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__brand img {
  height: 48px;
  margin-bottom: var(--space-md);
}

.footer__brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.footer__brand-desc {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.9rem;
}

.footer__col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.footer__link {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.footer__link:hover {
  color: var(--primary);
  transform: translateX(-5px);
}

.footer__contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--primary);
}

.footer__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-xs);
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer__links a:hover {
  color: var(--primary);
  transform: translateX(-5px);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__content {
    order: 2;
  }
  
  .hero__visual {
    order: 1;
  }
  
  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .hero__stats {
    justify-content: center;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-xs);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .header__nav.active {
    display: flex;
  }
  
  .header__nav-link {
    width: 100%;
    text-align: center;
    padding: var(--space-sm);
  }
  
  .header__toggle {
    display: block;
  }
  
  .header__phone {
    display: none;
  }
  
  .hero {
    padding-top: calc(80px + var(--space-xl));
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .btn--lg {
    padding: var(--space-sm) var(--space-lg);
    font-size: 1rem;
  }
  
  .hero__stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .process__steps::before {
    display: none;
  }
  
  .process__steps {
    grid-template-columns: 1fr;
  }
  
  .main-docs__tabs {
    flex-direction: column;
  }
  
  .exam__table-header,
  .exam__table-row {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
  
  .exam__table-cell {
    padding: var(--space-xs) 0;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__brand {
    max-width: 100%;
  }
  
  .footer__links a {
    justify-content: center;
  }
  
  .footer__contact {
    align-items: center;
  }
}

/* ========================================
   ANNOUNCEMENTS
   ======================================== */
.announcement {
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.1) 0%, rgba(201, 169, 97, 0.1) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  animation: slide-in 0.5s ease-out;
}

.announcement__icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.announcement__content h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.announcement__content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.section--alt {
  background: var(--bg-secondary);
  position: relative;
}

.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
}

.glow {
  box-shadow: var(--shadow-gold);
}

.hidden {
  display: none !important;
}

/* Animations on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.form__terms-box {
  background: rgba(52, 199, 89, 0.05);
  border: 1px solid rgba(52, 199, 89, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  white-space: pre-line;
}

.form__group--full {
  grid-column: 1 / -1;
}

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}

.message--success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
}

.message--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
}

/* ========================================
   TRANSPORT & HOTELS SECTION
   ======================================== */
.transport__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.transport__card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.transport__card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.transport__card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-glass);
}

.transport__card-header--bus {
  border-left: 4px solid var(--accent-blue);
}

.transport__card-header--hotel {
  border-left: 4px solid var(--accent-purple);
}

.transport__card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid var(--border-color);
}

.transport__card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.transport__card-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.transport__card-body {
  padding: var(--space-lg);
}

/* Bus Groups */
.bus-group {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-color);
}

.bus-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bus-group__title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.bus-time {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  color: var(--text-secondary);
}

.bus-time svg {
  width: 18px;
  height: 18px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

/* Transport Reminder */
.transport__reminder {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: 0 var(--space-lg) var(--space-lg);
  color: var(--accent-red);
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}

/* Hotel Cards */
.hotel-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  transition: var(--transition-fast);
}

.hotel-card:last-child {
  margin-bottom: 0;
}

.hotel-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--accent-purple);
}

.hotel-card__name {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.hotel-stars {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.hotel-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.hotel-card__row:last-child {
  border-bottom: none;
}

.hotel-card__row span {
  color: var(--text-muted);
}

.hotel-card__row strong {
  color: var(--primary);
  font-weight: 700;
}

/* Mobile Responsive for Transport */
@media (max-width: 1024px) {
  .transport__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .transport__card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .transport__card-icon {
    margin: 0 auto;
  }
}

/* ========================================
   TRAVEL TIPS
   ======================================== */
.tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.tips__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.tips__card:hover {
  border-color: var(--accent-red);
  transform: translateX(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
}

.tips__card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 107, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tips__card-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.tips__card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   TRACKING SECTION
   ======================================== */
.track__wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  backdrop-filter: blur(20px);
}

.track__form {
  display: flex;
  gap: var(--space-sm);
}

.track__form .form__input {
  flex: 1;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.track__result {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

/* ========================================
   FORM FILE UPLOAD
   ======================================== */
.form__file-zone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--bg-glass);
  position: relative;
}

.form__file-zone:hover {
  border-color: var(--primary);
  background: var(--bg-glass-hover);
}

.form__file-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.form__file-zone-icon {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.form__file-zone-icon svg {
  width: 48px;
  height: 48px;
}

.form__file-zone-text {
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.form__file-zone-text strong {
  color: var(--primary);
}

.form__file-zone-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form__file-names {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

/* Form Success */
.form__success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form__success.active {
  display: block;
  animation: slide-in 0.5s ease-out;
}

.form__success-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.form__success-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.form__success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form__success-desc {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Form Checkbox */
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(52, 199, 89, 0.3);
  background: rgba(52, 199, 89, 0.05);
  transition: var(--transition-fast);
}

.form__checkbox:hover {
  border-color: var(--accent-green);
  background: rgba(52, 199, 89, 0.08);
}

.form__checkbox input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.form__checkbox span {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.form__checkbox strong {
  color: var(--primary);
}

/* Form Submit */
.form__submit-wrap {
  margin-top: var(--space-lg);
}

.btn--block {
  width: 100%;
}

.btn--green {
  background: linear-gradient(135deg, #153A5A 0%, #1a3a5c 50%, #c9a961 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(21, 58, 90, 0.4);
}

.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.floating-btns {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.1);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

.floating-btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn--telegram {
  background: linear-gradient(135deg, #0088cc 0%, #0056a8 100%);
}

.floating-btn__tooltip {
  position: absolute;
  left: 70px;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  border: 1px solid var(--border-color);
}

.floating-btn:hover .floating-btn__tooltip {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
  z-index: 999;
  box-shadow: var(--shadow-gold);
}

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

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 58, 92, 0.4);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
  .floating-btns {
    bottom: 20px;
    left: 20px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  
  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}
