/* NPM‑Bildung – Website Styles */
/* =========================================================
   NPM Lernzentrum – Premium Modern Design
   - Glassmorphism, gradients, micro-animations
   - Keeps compatibility with existing HTML
   ========================================================= */

:root{
  /* Primary palette - Deep navy with warmth */
  --primary: #0a1628;
  --primary-light: #1e3a5f;
  --primary-gradient: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2d4a6f 100%);
  
  /* Accent - Vibrant warm orange/coral */
  --accent: #ff6b35;
  --accent-hover: #ff5722;
  --accent-light: rgba(255,107,53,0.15);
  --accent-glow: 0 0 30px rgba(255,107,53,0.4);
  --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  
  /* Secondary accent - Teal for variety */
  --secondary: #06b6d4;
  --secondary-light: rgba(6,182,212,0.12);

  /* Backgrounds */
  --bg-body: #f0f4f8;
  --bg-elevated: #ffffff;
  --bg-glass: rgba(255,255,255,0.75);
  --bg-glass-dark: rgba(10,22,40,0.85);
  --white: #ffffff;
  
  /* Text */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;

  /* Borders & Shadows */
  --border: rgba(226,232,240,0.8);
  --border-glass: rgba(255,255,255,0.18);
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-medium: 0 10px 40px rgba(0,0,0,0.1), 0 2px 10px rgba(0,0,0,0.05);
  --shadow-hover: 0 25px 60px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 60px rgba(255,107,53,0.2);
  
  /* Dimensions */
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --max: 1240px;
  --nav-h: 80px;
  
  /* Hero background */
  --hero-img: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=2000&q=80');
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*{ margin: 0; padding: 0; box-sizing: border-box; }
html{ 
  scroll-behavior: smooth; 
  overflow-x: hidden;
}
body{
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-main);
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6,182,212,0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255,107,53,0.06), transparent),
    var(--bg-body);
  overflow-x: hidden;
  line-height: 1.7;
  padding-top: var(--nav-h);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
  width: 100%;
}

body[dir="rtl"]{
  font-family: Cairo, Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Selection styling */
::selection{ background: var(--accent); color: white; }

h1, h2, h3, h4{ color: var(--primary); line-height: 1.15; font-weight: 700; }
h1{ font-weight: 800; letter-spacing: -2px; }
h2{ font-family: "Playfair Display", serif; font-weight: 700; letter-spacing: -1px; }
h3{ letter-spacing: -0.5px; }

a{ text-decoration: none; color: inherit; transition: all .3s var(--ease-out); }
a:hover{ color: var(--accent); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-light), 0 0 0 5px rgba(255,107,53,.15);
}

.container{
  width: 100%;
  max-width: var(--max);
  padding: 0 clamp(16px, 5vw, 40px);
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 16px; top: 16px; }

/* --- NAV (glassmorphism style) --- */
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5), 0 4px 30px rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  transition: all 0.4s var(--ease-out);
}

header.scrolled{
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  transition: transform 0.3s var(--ease-bounce);
}
.brand:hover{ transform: scale(1.02); color: var(--primary); }

.brand-badge{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--primary-gradient);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 0.75rem;
  box-shadow: 0 8px 24px rgba(10,22,40,.25), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.3s var(--ease-out);
}
.brand:hover .brand-badge{
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 12px 30px rgba(10,22,40,.3);
}

.navlinks{
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Desktop nav links only */
@media (min-width: 1025px) {
  .navlinks a{
    font-weight: 500;
    font-size: .92rem;
    color: var(--text-muted);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
  }

  .navlinks a::before{
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform: translateX(-50%);
  }
  
  .navlinks a:hover{
    color: var(--primary);
    background: rgba(255,107,53,0.06);
  }
  .navlinks a:hover::before{ width: calc(100% - 32px); }
}

/* Hide mobile menu footer on desktop */
.mobile-menu-footer{
  display: none;
}

.nav-cta{
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang{
  border: 1px solid rgba(226,232,240,.8);
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease-out);
}
.lang:hover{ box-shadow: var(--shadow-soft); }
.lang a{ color: var(--text-muted); }
.lang a:hover{ color: var(--accent); }
.lang .sep{ opacity: .3; }

/* --- Buttons (premium style) --- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease-out);
  user-select: none;
  position: relative;
  overflow: hidden;
}
.btn::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before{ opacity: 1; }
.btn:active{ transform: scale(0.97); }

.btn-primary{
  background: var(--accent-gradient);
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(255,107,53,0.35), 0 1px 3px rgba(255,107,53,0.2);
}
.btn-primary:hover{ 
  transform: translateY(-3px); 
  box-shadow: 0 12px 35px rgba(255,107,53,0.4), 0 4px 15px rgba(255,107,53,0.25);
  text-decoration: none;
  color: var(--white) !important;
}

.btn-ghost{
  background: rgba(255,255,255,.8);
  border-color: rgba(10,22,40,.15);
  color: var(--primary) !important;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover{ 
  border-color: var(--accent); 
  color: var(--accent) !important; 
  background: rgba(255,107,53,0.08);
  transform: translateY(-2px);
  text-decoration: none; 
}

/* Pulse glow animation */
.btn-glow{ 
  animation: npmPulse 2.5s infinite;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}
@keyframes npmPulse{
  0%, 100%{ box-shadow: 0 4px 20px rgba(255,107,53,0.4), 0 0 0 0 rgba(255,107,53,0.5); }
  50%{ box-shadow: 0 4px 30px rgba(255,107,53,0.5), 0 0 0 12px rgba(255,107,53,0); }
}

/* Shimmer effect for primary buttons */
.btn-primary::after{
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s var(--ease-out);
}
.btn-primary:hover::after{ left: 150%; }

/* --- Mobile nav behavior (no HTML changes required) --- */
/* NOTE: Mobile fullscreen menu styles are in the main mobile section below */
@media (max-width: 1024px){
  .navbar{ flex-wrap: wrap; }
  /* navlinks styles moved to main mobile section */
  .nav-cta{ display: none; } /* Hide on mobile, use mobile-menu-footer instead */
}

/* --- Hero (homepage) - Cinematic style --- */
.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.5) 40%, rgba(10,22,40,0.85) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

/* Animated gradient overlay */
.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,107,53,0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6,182,212,0.1), transparent 50%);
  animation: heroShift 15s ease-in-out infinite alternate;
}
@keyframes heroShift{
  0%{ opacity: 0.6; transform: scale(1); }
  100%{ opacity: 1; transform: scale(1.1); }
}

/* Floating particles effect (pseudo) */
.hero::after{
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.15), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.1), transparent),
    radial-gradient(1px 1px at 60% 40%, rgba(255,255,255,0.1), transparent),
    radial-gradient(2px 2px at 80% 60%, rgba(255,255,255,0.12), transparent);
  background-size: 250px 250px;
  animation: particleFloat 20s linear infinite;
}
@keyframes particleFloat{
  0%{ transform: translateY(0); }
  100%{ transform: translateY(-250px); }
}

.hero-content{ 
  max-width: 900px; 
  position: relative; 
  z-index: 2;
}

/* Hero Locations - Top bar */
.hero-locations{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}
.hero-locations::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: locationShine 3s infinite;
}
@keyframes locationShine{
  0%{ left: -100%; }
  50%, 100%{ left: 100%; }
}

.hero-subtitle{
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero h1{ 
  font-size: clamp(2.8rem, 7vw, 5rem); 
  margin-bottom: 24px; 
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
  line-height: 1.05;
}

.hero p{ 
  font-size: 1.25rem; 
  color: rgba(255,255,255,0.9); 
  margin: 0 auto 40px; 
  max-width: 600px;
  line-height: 1.8;
}

.hero-cta{ 
  display: flex; 
  justify-content: center; 
  gap: 16px; 
  flex-wrap: wrap; 
}

/* Scroll indicator */
.hero-scroll{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce{
  0%, 100%{ transform: translateX(-50%) translateY(0); opacity: 1; }
  50%{ transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* --- Floating stats (glassmorphism card) --- */
.stats-wrapper{ 
  margin-top: -70px; 
  position: relative; 
  z-index: 10; 
  padding: 0 5%; 
}

.stats-card{
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium), 0 0 0 1px rgba(255,255,255,0.5) inset;
  display: flex;
  justify-content: space-around;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}

.stats-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.stat-item{ 
  text-align: center; 
  flex: 1; 
  padding: 10px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after{
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.stat-num{ 
  font-size: clamp(2.2rem, 4vw, 3rem); 
  font-weight: 800; 
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; 
  line-height: 1; 
  margin-bottom: 8px;
}

.stat-desc{ 
  font-size: 0.8rem; 
  color: var(--text-muted); 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
}

/* --- Hero Trust Badges --- */
.hero-trust{
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-trust span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-trust i{
  color: var(--accent);
  font-size: 1rem;
}

/* --- Features Grid (Why Us) --- */
.features-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item{
  display: flex;
  gap: 24px;
  padding: 35px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(241,245,249,.8);
  transition: all 0.4s var(--ease-out);
}
.feature-item:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-number{
  font-size: 3rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.3;
  flex-shrink: 0;
}

.feature-content h3{
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.feature-content p{
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Sections --- */
.section{ padding: 120px 0; position: relative; }
.section-header{ text-align: center; margin-bottom: 70px; }
.section-header h4{ 
  color: var(--accent); 
  text-transform: uppercase; 
  letter-spacing: 3px; 
  font-size: .75rem; 
  margin-bottom: 14px; 
  font-weight: 800;
  display: inline-block;
  position: relative;
}
.section-header h4::before,
.section-header h4::after{
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}
.section-header h4::before{ right: calc(100% + 15px); }
.section-header h4::after{ left: calc(100% + 15px); }
.section-header h2{ font-size: clamp(2rem, 4vw, 3rem); }
.section-header p{ margin-top: 16px; color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Services (premium cards) --- */
.services-grid{ 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px; 
  margin-bottom: 50px; 
}

.service-card{
  background: var(--white);
  padding: 35px 25px 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: all .4s var(--ease-out);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(241,245,249,.8);
  position: relative;
  overflow: hidden;
}

.service-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover{ 
  transform: translateY(-12px); 
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before{ transform: scaleX(1); }

.service-list{
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  text-align: left;
}
.service-list li{
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before{
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
}

.service-icon{
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(6,182,212,0.05));
  color: var(--secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 24px auto;
  transition: all .4s var(--ease-out);
  position: relative;
}

.service-icon::after{
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: var(--accent-gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}

.service-card:hover .service-icon{ 
  background: var(--accent-gradient);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.service-card:hover .service-icon::after{ opacity: 0.2; }

.service-card h3{ font-size: 1.35rem; margin-bottom: 12px; }
.service-card p{ font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* --- Funding box (gradient card) --- */
.funding-box{
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,247,237,0.9) 100%);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.funding-box::before{ 
  content:""; 
  position:absolute; 
  left:0; 
  top:0; 
  height:100%; 
  width:6px; 
  background: var(--accent-gradient);
  border-radius: 0 4px 4px 0;
}

.funding-box::after{
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,107,53,0.08), transparent 70%);
  border-radius: 50%;
}

.funding-content{ flex: 2; position: relative; z-index: 1; }
.funding-icon{ 
  flex: 1; 
  text-align: center; 
  font-size: 6rem; 
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .2;
  position: relative;
  z-index: 1;
}

/* --- Formats Section --- */
.formats-section{
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(255,107,53,0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6,182,212,0.15);
}

.formats-title{
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.formats-title i{
  color: var(--secondary);
}

.formats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.format-card{
  text-align: center;
  padding: 25px 15px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s var(--ease-out);
}
.format-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.format-icon{
  width: 50px;
  height: 50px;
  background: var(--secondary-light);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 15px;
  transition: all 0.3s;
}
.format-card:hover .format-icon{
  background: var(--secondary);
  color: white;
}

.format-card h4{
  font-size: 1rem;
  margin-bottom: 8px;
}
.format-card p{
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Testimonials --- */
.testimonials-section{
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,107,53,0.1), transparent 50%);
}
.testimonials-section .section-header h4,
.testimonials-section .section-header h2{
  color: var(--white);
}
.testimonials-section .section-header h4::before,
.testimonials-section .section-header h4::after{
  background: rgba(255,255,255,0.3);
}

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

.testimonial-card{
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.testimonial-card:hover{
  transform: translateY(-10px);
}
.testimonial-card::before{
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars{
  color: #fbbf24;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.testimonial-stars i{
  margin-right: 2px;
}

.testimonial-text{
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author{
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar{
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.testimonial-author strong{
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
}
.testimonial-author span{
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- About Section --- */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-header{
  margin-bottom: 30px;
}
.about-content .section-header h4::before,
.about-content .section-header h4::after{
  display: none;
}

.about-text{
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.value-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--secondary-light);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  transition: all 0.3s;
}
.value-item:hover{
  background: var(--secondary);
  color: white;
}
.value-item i{
  color: var(--secondary);
  transition: color 0.3s;
}
.value-item:hover i{
  color: white;
}

.about-image{
  position: relative;
}
.about-image img{
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}
.about-badge{
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent-gradient);
  color: white;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  text-align: center;
}
.badge-number{
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.badge-text{
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

/* --- Process Section --- */
.process-section{
  background: linear-gradient(180deg, rgba(241,245,249,0.5), var(--bg-body));
}

.process-timeline{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-timeline::before{
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 2px;
  z-index: 0;
}

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

.step-icon{
  width: 70px;
  height: 70px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 auto 20px;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-soft);
}
.process-step:hover .step-icon{
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
}

.step-content h3{
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.step-content p{
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- FAQ Grid --- */
.faq-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.faq-column{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- CTA Banner --- */
.cta-banner{
  background: var(--accent-gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 50%);
}

.cta-content{
  position: relative;
  z-index: 1;
}
.cta-content h2{
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 15px;
}
.cta-content p{
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 30px;
}
.cta-buttons{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-banner .btn-primary{
  background: white;
  color: var(--accent) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-banner .btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.cta-banner .btn-ghost{
  border-color: rgba(255,255,255,0.5);
  color: white !important;
}
.cta-banner .btn-ghost:hover{
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* --- Locations (3D cards) --- */
.cards-3d-grid{ 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px; 
}

.card-3d{
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  transition: all .4s var(--ease-out);
  border: 1px solid rgba(241,245,249,.8);
  text-decoration: none;
  display: block;
}

.card-3d:hover{ 
  transform: translateY(-15px) rotateX(2deg); 
  box-shadow: var(--shadow-hover);
}

.card-image-wrap{ 
  height: 220px; 
  border-radius: calc(var(--radius) - 6px); 
  overflow: hidden;
  position: relative;
}

.card-image-wrap::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.card-3d:hover .card-image-wrap::after{ opacity: 1; }

.card-image-wrap img{ 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform .6s var(--ease-out);
}
.card-3d:hover img{ transform: scale(1.08); }

.card-content{ padding: 24px 16px; text-align: center; }
.card-content h3{ font-size: 1.3rem; margin-bottom: 6px; transition: color 0.3s; }
.card-3d:hover .card-content h3{ color: var(--accent); }
.card-content p{ color: var(--text-muted); font-size: 0.95rem; }

/* --- Booking (elevated container) --- */
.booking-container{
  background: var(--white);
  border-radius: 40px 40px 0 0;
  padding: 100px 0;
  box-shadow: 0 -30px 80px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.booking-container::before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: var(--accent-gradient);
  border-radius: 0 0 10px 10px;
}

.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group{ display:flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

/* Keep existing .field/.quickform for wizard + modal */
.quickform{ display:grid; gap: 18px; }
.field{ display:grid; gap: 10px; }

label{ 
  font-weight: 600; 
  font-size: .88rem; 
  color: var(--primary);
  letter-spacing: 0.3px;
}

input, select, textarea{
  padding: 16px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-body);
  width: 100%;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s var(--ease-out);
}

input::placeholder, textarea::placeholder{
  color: var(--text-light);
}

input:hover, select:hover, textarea:hover{
  border-color: rgba(6,182,212,0.3);
}

input:focus, select:focus, textarea:focus{ 
  border-color: var(--accent); 
  background: var(--white);
  box-shadow: 0 0 0 4px var(--accent-light);
}

textarea{ resize: vertical; min-height: 120px; }

.submit-btn{
  background: var(--primary-gradient);
  color: var(--white);
  padding: 18px 32px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.submit-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: left 0.6s;
}

.submit-btn:hover{ 
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(10,22,40,0.25);
}
.submit-btn:hover::before{ left: 100%; }

/* --- Helpers / legacy pieces used across pages --- */
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,107,53,.3);
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.kicker .dot{ 
  width: 8px; 
  height: 8px; 
  border-radius: 99px; 
  background: var(--accent); 
  box-shadow: 0 0 0 4px rgba(255,107,53,.2), 0 0 12px rgba(255,107,53,.4);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.2); }
}

.lead{ font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; }
.helper{ font-size: .85rem; color: var(--text-muted); }

.badge{
  display:inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(6,182,212,.2);
  background: var(--secondary-light);
  font-weight: 700;
  font-size: 12px;
  color: var(--primary);
  transition: all 0.3s var(--ease-out);
}
.badge:hover{
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.notice{
  border: 1px solid var(--border);
  background: rgba(248,250,252,.9);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ (premium accordion) */
.faq{ background: linear-gradient(180deg, var(--bg-body) 0%, rgba(241,245,249,0.5) 100%); }

.faq details{
  border: 1px solid rgba(226,232,240,.8);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.faq details:hover{ box-shadow: var(--shadow-medium); }
.faq details + details{ margin-top: 16px; }

.faq summary{ 
  cursor: pointer; 
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none; 
  display:flex; 
  justify-content: space-between; 
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  transition: background 0.3s;
}
.faq details:hover summary{ background: rgba(248,250,252,0.5); }
.faq summary::-webkit-details-marker{ display:none; }

.faq summary::after{ 
  content:""; 
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq details[open] summary::after{ transform: rotate(-135deg); }
.faq details[open] summary{ 
  background: rgba(255,107,53,0.05);
  border-bottom: 1px solid var(--border);
}

.faq details p{ 
  padding: 20px 26px 26px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  animation: fadeSlideIn 0.3s var(--ease-out);
}
@keyframes fadeSlideIn{
  from{ opacity: 0; transform: translateY(-10px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* Page headers (termin/standorte/danke) */
.pagehead{ 
  padding: 60px 0 24px;
  position: relative;
}
.pagehead::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}
.pagehead h1{ font-size: clamp(2.2rem, 4vw, 3.2rem); }
.pagehead p{ margin-top: 14px; color: var(--text-muted); max-width: 70ch; font-size: 1.1rem; line-height: 1.7; }

/* Wizard stepper */
.stepper{ display:flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.step{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--white);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out);
}
.step .num{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--bg-body);
  border: 2px solid var(--border);
  display:grid;
  place-items:center;
  color: var(--text-muted);
  font-weight: 800;
  font-size: 12px;
  transition: all 0.3s var(--ease-out);
}
.step.active{ 
  border-color: var(--accent); 
  color: var(--primary);
  background: var(--accent-light);
}
.step.active .num{ 
  background: var(--accent-gradient); 
  border-color: var(--accent);
  color: white;
}
.step.completed{
  border-color: var(--secondary);
  color: var(--secondary);
}
.step.completed .num{
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

/* Footer (premium dark) */
footer{
  background: var(--primary-gradient);
  color: var(--white);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

footer::after{
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,0.08), transparent 60%);
  border-radius: 50%;
}

.footer-grid{ 
  display: grid; 
  grid-template-columns: 1.5fr 1fr; 
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-grid a{ 
  color: rgba(148,163,184,.9);
  transition: color 0.3s;
}
.footer-grid a:hover{ color: var(--accent); }

.footer-grid .brand{ margin-bottom: 20px; }
.footer-grid .brand-badge{
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}

.small{ font-size: .88rem; color: rgba(148,163,184,.8); }

/* Footer card styling */
.footer-grid .card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

@media (max-width: 1024px){
  /* Stats */
  .stats-wrapper{ margin-top: -50px; padding: 0 16px; }
  .stats-card{ padding: 28px 16px; flex-wrap: wrap; }
  .stat-item{ min-width: 80px; padding: 10px 12px; }
  .stat-item:not(:last-child)::after{ display: none; }
  .stat-num{ font-size: 1.6rem; margin-bottom: 4px; }
  .stat-desc{ font-size: .65rem; letter-spacing: 1px; }

  /* Hero trust badges */
  .hero-trust{ gap: 16px; }
  .hero-trust span{ font-size: 0.8rem; }

  /* Features */
  .features-grid{ grid-template-columns: 1fr; gap: 20px; }
  .feature-item{ padding: 25px; }
  .feature-number{ font-size: 2rem; }

  /* Sections */
  .section{ padding: 80px 0; }
  .section-header{ margin-bottom: 50px; }
  .section-header h4::before,
  .section-header h4::after{ display: none; }

  /* Services */
  .services-grid{ grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card{ padding: 25px 18px; }
  .service-icon{ width: 55px; height: 55px; font-size: 1.4rem; margin-bottom: 16px; }
  .service-card h3{ font-size: 1.05rem; margin-bottom: 8px; }
  .service-card p{ font-size: .88rem; line-height: 1.5; }
  .service-list{ display: none; }

  /* Formats */
  .formats-section{ padding: 30px 20px; }
  .formats-grid{ grid-template-columns: 1fr 1fr; gap: 15px; }
  .format-card{ padding: 20px 12px; }
  .format-card h4{ font-size: 0.9rem; }
  .format-card p{ font-size: 0.8rem; }

  /* Testimonials */
  .testimonials-grid{ grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card{ padding: 28px; }

  /* About */
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-image{ order: -1; }
  .about-badge{ bottom: 20px; left: 20px; padding: 18px; }
  .badge-number{ font-size: 2rem; }
  .about-content .section-header{ text-align: center; }

  /* Process */
  .process-timeline{ grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .process-timeline::before{ display: none; }
  .step-icon{ width: 60px; height: 60px; font-size: 1.3rem; }

  /* FAQ */
  .faq-grid{ grid-template-columns: 1fr; gap: 16px; }

  /* Funding */
  .funding-box{ 
    flex-direction: column; 
    padding: 32px 24px; 
    text-align: left; 
    gap: 24px; 
  }
  .funding-icon{ display: none; }

  /* Locations - 2 columns on tablet, will be 3 on mobile via 768px media query */
  .cards-3d-grid{ grid-template-columns: 1fr 1fr; gap: 16px; }
  .card-3d{ padding: 10px; }
  .card-image-wrap{ height: 140px; }
  .card-content{ padding: 18px 12px; }
  .card-content h3{ font-size: 1.1rem; }
  .card-content p{ font-size: .88rem; }
  .card-3d:nth-child(3){ 
    grid-column: span 2; 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    text-align: left; 
  }
  .card-3d:nth-child(3) .card-image-wrap{ width: 40%; height: 100px; flex-shrink: 0; }
  .card-3d:nth-child(3) .card-content{ width: 60%; padding: 8px 0; text-align: left; }

  /* Booking */
  .booking-container{ padding: 60px 0; border-radius: 30px 30px 0 0; }
  .form-grid{ grid-template-columns: 1fr; gap: 20px; }
  
  /* Footer */
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px){
  .hero{ min-height: 100svh; padding: 100px 16px 60px; background-attachment: scroll; }
  .hero h1{ font-size: 2rem; }
  .hero p{ font-size: 0.95rem; }
  
  /* Mobile header already styled in 1024px breakpoint */
  
  .services-grid{ grid-template-columns: 1fr; }
  
  .formats-grid{ grid-template-columns: 1fr; }
  
  /* Process timeline stays 2x2 from 768px breakpoint */
  .process-timeline{ 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 10px;
  }
  
  .about-values{ justify-content: center; }
  .value-item{ padding: 10px 16px; font-size: 0.85rem; }
  
  /* Locations - Reset 3rd card to match others */
  .card-3d:nth-child(3){ 
    grid-column: span 1; 
    display: block;
    text-align: center;
  }
  .card-3d:nth-child(3) .card-image-wrap{
    width: 100%;
    height: 70px;
  }
  .card-3d:nth-child(3) .card-content{
    width: 100%;
    text-align: center;
  }
  
  /* Stats - 2x2 grid - styles from 768px block apply */
}

/* Modal / Popup (glassmorphism) */
.modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  place-items: center;
  padding: 20px;
  z-index: 1200;
  animation: fadeIn 0.3s var(--ease-out);
}
@keyframes fadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}

.modal{
  width: 100%;
  max-width: 520px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  animation: modalSlideIn 0.4s var(--ease-bounce);
}
@keyframes modalSlideIn{
  from{ opacity: 0; transform: translateY(30px) scale(0.95); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

.modal-top{
  padding: 24px 28px 20px;
  background:
    radial-gradient(ellipse 600px 150px at 20% 0%, rgba(255,107,53,.15), transparent 60%),
    radial-gradient(ellipse 400px 100px at 80% 100%, rgba(6,182,212,.08), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(248,250,252,1));
  border-bottom: 1px solid var(--border);
  position: relative;
}

.modal-title{ 
  margin: 0; 
  font-size: 1.25rem; 
  letter-spacing: -0.3px; 
  color: var(--primary);
  font-weight: 700;
}

.modal-close{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out);
}
.modal-close:hover{
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: rotate(90deg);
}

.modal-body{ 
  padding: 24px 28px 28px; 
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-body p{ margin: 0 0 20px; color: var(--text-muted); line-height: 1.7; }

.checkbox{ 
  display:flex; 
  gap: 14px; 
  align-items:flex-start; 
  padding: 12px 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.checkbox input{ 
  width: 20px; 
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.checkbox span{ font-size: .88rem; color: var(--text-muted); line-height: 1.5; }

.hidden{ display:none !important; }

/* Smooth scrollbar styling */
::-webkit-scrollbar{ width: 10px; height: 10px; }
::-webkit-scrollbar-track{ background: var(--bg-body); }
::-webkit-scrollbar-thumb{ 
  background: linear-gradient(180deg, var(--text-light), var(--text-muted));
  border-radius: 10px;
  border: 2px solid var(--bg-body);
}
::-webkit-scrollbar-thumb:hover{ background: var(--primary-light); }

/* Loading state for buttons */
.btn.loading{
  pointer-events: none;
  opacity: 0.7;
}
.btn.loading::after{
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}
@keyframes spin{
  to{ transform: rotate(360deg); }
}

/* RTL specific adjustments */
body[dir="rtl"] .service-card:nth-child(3){ text-align: right; }
body[dir="rtl"] .card-3d:nth-child(3) .card-content{ text-align: right; }
body[dir="rtl"] .funding-box::before{ left: auto; right: 0; border-radius: 4px 0 0 4px; }
body[dir="rtl"] .section-header h4::before{ right: auto; left: calc(100% + 15px); }
body[dir="rtl"] .section-header h4::after{ left: auto; right: calc(100% + 15px); }
body[dir="rtl"] .modal-close{ right: auto; left: 20px; }
body[dir="rtl"] .pagehead::after{ left: auto; right: 50%; transform: translateX(50%); }

/* =========================================================
   PREMIUM FEATURES
   ========================================================= */

/* Scroll to top button */
.scroll-to-top{
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 30px rgba(10,22,40,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s var(--ease-out);
  z-index: 999;
}
.scroll-to-top.visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-to-top:hover{
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(10,22,40,0.4);
}
body[dir="rtl"] .scroll-to-top{ right: auto; left: 30px; }

/* Floating contact buttons */
.floating-contact{
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}
body[dir="rtl"] .floating-contact{ right: auto; left: 30px; }

.floating-btn{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: all 0.4s var(--ease-bounce);
  text-decoration: none;
}

.floating-trigger{
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
}
.floating-trigger:hover{
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 40px rgba(255,107,53,0.5);
}

.floating-menu{
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
}
.floating-contact.open .floating-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-phone{
  background: #25D366;
  color: white;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
}
.floating-email{
  background: var(--secondary);
  color: white;
  box-shadow: 0 6px 25px rgba(6,182,212,0.4);
}
.floating-booking{
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 25px rgba(10,22,40,0.4);
}
.floating-menu .floating-btn:hover{
  transform: scale(1.15);
}

/* Scroll progress indicator */
.scroll-progress{
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-gradient);
  width: 0%;
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(255,107,53,0.5);
}

/* Typing cursor effect */
.typing-cursor::after{
  content: '|';
  animation: blink 0.8s infinite;
  color: var(--accent);
  margin-left: 5px;
}
@keyframes blink{
  0%, 50%{ opacity: 1; }
  51%, 100%{ opacity: 0; }
}

/* Enhanced card hover with 3D */
.service-card,
.testimonial-card,
.card-3d{
  transition: all 0.4s var(--ease-out);
  transform-style: preserve-3d;
}

/* Gradient text effect */
.gradient-text{
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pulse animation for CTAs */
@keyframes pulse-ring{
  0%{ transform: scale(0.9); opacity: 1; }
  100%{ transform: scale(1.4); opacity: 0; }
}
.btn-glow::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--accent);
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}

/* Floating shapes background */
.hero::after{
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
  animation: float-shape 20s ease-in-out infinite;
}
@keyframes float-shape{
  0%, 100%{ transform: translate(0, 0) rotate(0deg); }
  33%{ transform: translate(30px, 30px) rotate(120deg); }
  66%{ transform: translate(-20px, 20px) rotate(240deg); }
}

/* Stats card enhanced glow */
.stats-card{
  position: relative;
}
.stats-card::before{
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent), var(--secondary), var(--accent));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stats-card:hover::before{
  opacity: 0.5;
  animation: gradient-shift 3s ease infinite;
}
@keyframes gradient-shift{
  0%, 100%{ filter: hue-rotate(0deg); }
  50%{ filter: hue-rotate(30deg); }
}

/* Enhanced testimonial cards */
.testimonial-card{
  position: relative;
  overflow: hidden;
}
.testimonial-card::before{
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 150px;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

/* Process step connector line */
.process-timeline{
  position: relative;
}
.process-timeline::before{
  content: '';
  position: absolute;
  left: 40px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--secondary));
  opacity: 0.3;
}
body[dir="rtl"] .process-timeline::before{
  left: auto;
  right: 40px;
}

/* Feature number enhanced */
.feature-number{
  position: relative;
}
.feature-number::after{
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: var(--accent);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}
.feature-item:hover .feature-number::after{
  opacity: 0.15;
  transform: scale(1.2);
}

/* About image floating badge animation */
.about-badge{
  animation: float-badge 3s ease-in-out infinite;
}
@keyframes float-badge{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* CTA banner animated background */
.cta-banner{
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.03) 30px,
    rgba(255,255,255,0.03) 60px
  );
  animation: move-stripes 30s linear infinite;
}
@keyframes move-stripes{
  0%{ transform: translate(0, 0); }
  100%{ transform: translate(60px, 60px); }
}

/* Loading skeleton animation */
@keyframes skeleton-loading{
  0%{ background-position: -200px 0; }
  100%{ background-position: calc(200px + 100%) 0; }
}
.skeleton{
  background: linear-gradient(90deg, var(--bg-body) 0%, var(--white) 50%, var(--bg-body) 100%);
  background-size: 200px 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

/* Image reveal on scroll */
.about-image img{
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s var(--ease-out);
}

/* Enhanced button ripple effect */
.btn{
  position: relative;
  overflow: hidden;
}
.btn::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 0.8s;
}
.btn:active::after{
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

/* Mobile floating button adjustments */
@media(max-width: 768px){
  .floating-contact{
    bottom: 24px !important;
    right: 16px !important;
  }
  body[dir="rtl"] .floating-contact{
    right: auto !important;
    left: 16px !important;
  }
  .scroll-to-top{
    bottom: 90px !important;
    right: 16px !important;
    width: 44px;
    height: 44px;
  }
  .floating-btn{
    width: 52px;
    height: 52px;
  }
}

/* Reduced motion for accessibility */
@media(prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-to-top,
  .floating-contact,
  .scroll-progress{
    transition: none;
  }
}

/* =========================================================
   DARK MODE
   ========================================================= */
body.dark-mode{
  --primary: #e2e8f0;
  --primary-light: #94a3b8;
  --bg-body: #0f172a;
  --bg-elevated: #1e293b;
  --bg-glass: rgba(30,41,59,0.85);
  --white: #1e293b;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --border: rgba(100,116,139,0.3);
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-medium: 0 10px 40px rgba(0,0,0,0.4);
}

body.dark-mode header{
  background: rgba(15,23,42,0.9);
  border-bottom-color: rgba(100,116,139,0.2);
}

body.dark-mode .hero{
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(30,41,59,0.95)), var(--hero-img);
}

body.dark-mode .stats-card{
  background: rgba(30,41,59,0.9);
  border-color: rgba(100,116,139,0.2);
}

body.dark-mode .service-card,
body.dark-mode .testimonial-card,
body.dark-mode .format-card,
body.dark-mode .card-3d{
  background: var(--bg-elevated);
  border-color: rgba(100,116,139,0.2);
}

body.dark-mode .funding-box{
  background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(6,182,212,0.1));
  border-color: rgba(255,107,53,0.3);
}

body.dark-mode details{
  background: var(--bg-elevated);
  border-color: rgba(100,116,139,0.2);
}

body.dark-mode .booking-container{
  background: linear-gradient(180deg, var(--bg-elevated), rgba(15,23,42,0.95));
}

body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea{
  background: rgba(15,23,42,0.8);
  border-color: rgba(100,116,139,0.3);
  color: var(--text-main);
}

body.dark-mode .modal{
  background: var(--bg-elevated);
}

body.dark-mode footer{
  background: linear-gradient(180deg, var(--bg-elevated), #0a0f1a);
}

/* Theme toggle button */
.theme-toggle{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-glass);
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.theme-toggle:hover{
  transform: scale(1.1);
  background: var(--accent-light);
}
.theme-toggle.rotating{
  animation: rotate-toggle 0.3s ease;
}
@keyframes rotate-toggle{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(180deg); }
}

.theme-toggle i{
  position: absolute;
  font-size: 1.1rem;
  transition: all 0.3s var(--ease-out);
}
.theme-toggle .fa-moon{
  color: var(--primary);
  opacity: 1;
  transform: scale(1);
}
.theme-toggle .fa-sun{
  color: var(--accent);
  opacity: 0;
  transform: scale(0.5);
}
body.dark-mode .theme-toggle .fa-moon{
  opacity: 0;
  transform: scale(0.5);
}
body.dark-mode .theme-toggle .fa-sun{
  opacity: 1;
  transform: scale(1);
}

/* =========================================================
   HAMBURGER MENU
   ========================================================= */
.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.hamburger.active span:nth-child(1){
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2){
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3){
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================================
   SMART GREETING
   ========================================================= */
.smart-greeting{
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #ffd700 0%, var(--accent) 50%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0;
  transition: opacity 0.6s ease;
  letter-spacing: 1px;
  text-shadow: none;
}
.smart-greeting:empty{
  display: none;
}

/* Mobile Smart Greeting - better contrast */
@media(max-width: 768px){
  .smart-greeting{
    font-size: 1.1rem;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255,215,0,0.9) 0%, rgba(255,140,0,0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  }
}

/* =========================================================
   TOAST NOTIFICATIONS
   ========================================================= */
.toast-container{
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  max-width: calc(100vw - 40px);
}
body[dir="rtl"] .toast-container{
  right: auto;
  left: 20px;
}

.toast{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-medium);
  transform: translateX(120%);
  transition: all 0.3s var(--ease-out);
  min-width: 280px;
  border-left: 4px solid var(--accent);
}
body[dir="rtl"] .toast{
  transform: translateX(-120%);
  border-left: none;
  border-right: 4px solid var(--accent);
}
.toast.show{
  transform: translateX(0);
}
.toast-success{ border-color: #10b981; }
.toast-success i{ color: #10b981; }
.toast-error{ border-color: #ef4444; }
.toast-error i{ color: #ef4444; }
.toast-info{ border-color: var(--secondary); }
.toast-info i{ color: var(--secondary); }

/* =========================================================
   CONFETTI
   ========================================================= */
.confetti{
  position: fixed;
  top: -10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  z-index: 10001;
  pointer-events: none;
  animation: confetti-fall 3s ease-out forwards;
}
@keyframes confetti-fall{
  0%{ transform: translateY(0) rotate(0deg); opacity: 1; }
  100%{ transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner{
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 600px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  box-shadow: 0 -10px 50px rgba(0,0,0,0.2);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--border);
}
.cookie-banner.show{
  bottom: 20px;
}
.cookie-content{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
.cookie-content i{
  font-size: 1.5rem;
  color: var(--accent);
}
.cookie-content p{
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cookie-buttons{
  display: flex;
  gap: 10px;
}
.cookie-buttons .btn{
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* =========================================================
   BOTTOM NAVIGATION (Mobile)
   ========================================================= */
.bottom-nav{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index: 999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
}
body.dark-mode .bottom-nav{
  background: rgba(15,23,42,0.95);
}

.bottom-nav-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.bottom-nav-item i{
  font-size: 1.2rem;
}
.bottom-nav-item.active,
.bottom-nav-item:hover{
  color: var(--accent);
}
.bottom-nav-item.active i{
  transform: scale(1.1);
}

.bottom-nav-cta{
  width: 56px;
  height: 56px;
  background: var(--accent-gradient);
  border-radius: 50%;
  margin-top: -30px;
  color: white !important;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}
.bottom-nav-cta i{
  font-size: 1.4rem;
}

/* =========================================================
   FORM VALIDATION STYLES
   ========================================================= */
input.valid,
select.valid,
textarea.valid{
  border-color: #10b981 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2310b981' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}
body[dir="rtl"] input.valid,
body[dir="rtl"] select.valid,
body[dir="rtl"] textarea.valid{
  background-position: left 12px center;
}

input.invalid,
select.invalid,
textarea.invalid{
  border-color: #ef4444 !important;
  animation: shake 0.3s ease;
}
@keyframes shake{
  0%, 100%{ transform: translateX(0); }
  25%{ transform: translateX(-5px); }
  75%{ transform: translateX(5px); }
}

.field-error{
  display: block;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 6px;
}

/* =========================================================
   AUTO-HIDE HEADER
   ========================================================= */
header.header-hidden{
  transform: translateY(-100%);
}

/* =========================================================
   ACTIVE NAV LINK
   ========================================================= */
.navlinks a.active{
  color: var(--accent);
}
.navlinks a.active::before{
  width: 100%;
}

/* =========================================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ========================================================= */
@media(max-width: 1024px){
  /* Prevent horizontal scroll on mobile */
  html, body{
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
  }
  
  .hamburger{
    display: flex;
  }
  
  /* Enhanced Fixed Mobile Header */
  header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }
  header.scrolled{
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  }
  
  .navbar{
    padding: 12px 16px;
    height: auto;
    min-height: 60px;
  }
  
  .brand{
    color: white;
    font-size: 1.1rem;
  }
  .brand-badge{
    background: linear-gradient(135deg, var(--accent), var(--coral));
    color: white;
    padding: 4px 8px;
    font-size: 10px;
  }
  
  .hamburger{
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .hamburger:hover,
  .hamburger:active{
    background: rgba(255,255,255,0.15);
  }
  .hamburger span{
    background: white;
    width: 22px;
    height: 2px;
  }
  .hamburger.active{
    background: rgba(255,107,53,0.2);
  }
  .hamburger.active span{
    background: var(--accent);
  }
  
  .navlinks{
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: calc(100vh - 70px) !important;
    background: #0a1628 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 9999 !important;
    display: flex !important;
    transform: none !important;
  }
  body.dark-mode .navlinks{
    background: #050c19 !important;
  }
  
  .navlinks.mobile-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  /* Direct nav links - ensure they're visible */
  .navlinks > a{
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 500;
    color: white !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    display: flex !important;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: transparent;
  }
  .navlinks > a:hover,
  .navlinks > a:active{
    background: rgba(255,107,53,0.15);
    color: var(--accent) !important;
  }
  .navlinks > a.active{
    background: rgba(255,107,53,0.2);
    color: var(--accent) !important;
    font-weight: 600;
  }
  .navlinks > a::before{
    display: none;
  }
  
  /* Language switcher and CTA - fixed at bottom of menu */
  .nav-cta{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.99);
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    gap: 10px;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    z-index: 1000;
  }
  
  .nav-cta.mobile-open{
    display: flex;
  }
  
  .nav-cta .btn{
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  .nav-cta .btn-primary{
    background: linear-gradient(135deg, var(--accent), var(--coral));
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
  }
  .nav-cta .btn-ghost{
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: white;
  }
  
  .nav-cta .lang{
    justify-content: center;
    padding: 14px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-size: 1rem;
    gap: 16px;
    margin-bottom: 8px;
  }
  .nav-cta .lang strong{
    color: var(--accent);
    font-size: 1rem;
  }
  .nav-cta .lang a{
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.05);
  }
  .nav-cta .lang a:hover,
  .nav-cta .lang a:active{
    color: white;
    background: rgba(255,107,53,0.3);
  }
  .nav-cta .lang .sep{
    color: rgba(255,255,255,0.3);
  }
  
  /* Add padding to navlinks for nav-cta space */
  .navlinks{
    padding-bottom: 20px !important;
  }
  
  /* Mobile menu footer - language & CTA inside navlinks */
  .mobile-menu-footer{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.2);
  }
  .mobile-menu-footer .lang{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-size: 1rem;
    gap: 16px;
  }
  .mobile-menu-footer .lang strong{
    color: var(--accent);
    font-size: 1rem;
  }
  .mobile-menu-footer .lang a{
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.05);
    border-bottom: none !important;
    width: auto !important;
  }
  .mobile-menu-footer .lang a:hover,
  .mobile-menu-footer .lang a:active{
    color: white;
    background: rgba(255,107,53,0.3);
  }
  .mobile-menu-footer .lang .sep{
    color: rgba(255,255,255,0.3);
  }
  .mobile-menu-footer .btn{
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
    border-bottom: none !important;
  }
  .mobile-menu-footer .btn-primary{
    background: linear-gradient(135deg, var(--accent), var(--coral));
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
  }
  .mobile-menu-footer .btn-ghost{
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: white;
  }

  body.menu-open{
    overflow: hidden;
  }
  
  /* Adjust floating elements for mobile */
  .floating-contact{
    bottom: 20px;
  }
  .scroll-to-top{
    bottom: 20px;
    right: 20px;
  }
  
  /* Cookie banner mobile */
  .cookie-banner{
    flex-direction: column;
    text-align: center;
  }
  .cookie-content{
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons{
    width: 100%;
  }
  .cookie-buttons .btn{
    flex: 1;
  }
  
  /* Toast mobile */
  .toast-container{
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 100px;
  }
  .toast{
    width: 100%;
  }
}

@media(max-width: 640px){
  /* Extra padding for bottom nav */
  body{
    padding-bottom: 80px;
  }
  
  /* Touch-friendly button sizes */
  .btn{
    min-height: 48px;
    padding: 14px 24px;
  }
  
  /* Larger touch targets */
  .navlinks a{
    min-height: 56px;
    display: flex;
    align-items: center;
  }
  
  details summary{
    min-height: 56px;
    padding: 18px 50px 18px 20px;
  }
  
  /* Cards horizontal scroll on mobile - only for testimonials/formats */
  .testimonials-grid,
  .formats-grid{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .testimonials-grid > *,
  .formats-grid > *{
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
  
  /* Hide scrollbar but keep functionality */
  .testimonials-grid::-webkit-scrollbar,
  .formats-grid::-webkit-scrollbar{
    display: none;
  }
  .testimonials-grid,
  .formats-grid{
    scrollbar-width: none;
  }
  
  /* Improve tap areas */
  .stat-item{
    padding: 16px 12px;
  }
  
  /* Floating button adjustments */
  .floating-contact{
    right: 16px !important;
    bottom: 24px !important;
    z-index: 900;
  }
  body[dir="rtl"] .floating-contact{
    right: auto !important;
    left: 16px !important;
  }
  
  .scroll-to-top{
    right: 16px !important;
    bottom: 90px !important;
    width: 44px;
    height: 44px;
    z-index: 900;
  }
  body[dir="rtl"] .scroll-to-top{
    right: auto !important;
    left: 16px !important;
  }
  
  /* Theme toggle in mobile menu */
  .theme-toggle{
    width: 48px;
    height: 48px;
  }
}

/* RTL mobile menu */
body[dir="rtl"] .hamburger span{
  transform-origin: center;
}
body[dir="rtl"] .hamburger.active span:nth-child(1){
  transform: rotate(-45deg) translate(-5px, 5px);
}
body[dir="rtl"] .hamburger.active span:nth-child(3){
  transform: rotate(45deg) translate(-5px, -5px);
}

/* =========================================================
   PREMIUM FEATURES - CURSOR FOLLOWER
   ========================================================= */
.custom-cursor{
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
  mix-blend-mode: difference;
}
.custom-cursor-dot{
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.custom-cursor.cursor-hover{
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 107, 0.1);
  border-color: var(--teal);
}
.custom-cursor-dot.cursor-hover{
  transform: translate(-50%, -50%) scale(2);
  background: var(--teal);
}
.custom-cursor.cursor-click{
  transform: translate(-50%, -50%) scale(0.8);
}

/* Hide on touch devices */
@media (hover: none){
  .custom-cursor, .custom-cursor-dot{
    display: none !important;
  }
}

/* =========================================================
   PARTICLE CANVAS
   ========================================================= */
.particle-canvas{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   TEXT SCRAMBLE EFFECT
   ========================================================= */
.scramble-char{
  color: var(--coral);
  font-weight: 600;
}

/* =========================================================
   SECTION INDICATOR (Side dots)
   ========================================================= */
.section-indicator{
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.section-dot:hover{
  background: rgba(255,255,255,0.6);
  transform: scale(1.2);
}
.section-dot.active{
  background: var(--coral);
  border-color: white;
  transform: scale(1.3);
}

body[dir="rtl"] .section-indicator{
  right: auto;
  left: 20px;
}

@media(max-width: 768px){
  .section-indicator{
    display: none;
  }
}

/* =========================================================
   IMAGE ZOOM OVERLAY
   ========================================================= */
.image-zoom-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}
.image-zoom-overlay.active{
  opacity: 1;
}
.zoomed-image{
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.image-zoom-overlay.active .zoomed-image{
  transform: scale(1);
}

/* =========================================================
   PAGE LOADER
   ========================================================= */
.page-loader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.loaded{
  opacity: 0;
  visibility: hidden;
}
.loader-content{
  text-align: center;
}
.loader-logo{
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 20px;
  animation: pulse 1s infinite;
}
.loader-bar{
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress{
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  animation: loading 1.5s ease-in-out infinite;
  transform-origin: left;
}
@keyframes loading{
  0%{ transform: scaleX(0); }
  50%{ transform: scaleX(1); }
  100%{ transform: scaleX(0); transform-origin: right; }
}

/* =========================================================
   COPY TO CLIPBOARD FEEDBACK
   ========================================================= */
.contact-item{
  transition: all 0.3s ease;
  position: relative;
}
.contact-item:hover{
  color: var(--coral);
}
.contact-item.copied{
  animation: copiedPulse 0.5s ease;
}
@keyframes copiedPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.05); color: var(--teal); }
}

/* =========================================================
   ENHANCED CARD INTERACTIONS
   ========================================================= */
.service-card, .format-item, .faq-item{
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glassmorphism enhancement on hover */
.service-card:hover{
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,255,255,0.1) inset;
}

/* Shine effect on cards */
.service-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.1),
    transparent
  );
  transition: left 0.5s ease;
  pointer-events: none;
}
.service-card:hover::after{
  left: 100%;
}

/* =========================================================
   FLOATING SHAPES ANIMATION
   ========================================================= */
.hero::before{
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape 20s ease-in-out infinite;
  pointer-events: none;
}
.hero::after{
  content: "";
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78,205,196,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape 25s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes floatShape{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  25%{ transform: translate(30px, -30px) scale(1.1); }
  50%{ transform: translate(-20px, 20px) scale(0.9); }
  75%{ transform: translate(20px, 30px) scale(1.05); }
}

/* =========================================================
   GRADIENT TEXT ANIMATION
   ========================================================= */
.hero-title{
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffffff 25%,
    var(--coral) 50%,
    #ffffff 75%,
    #ffffff 100%
  );
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

/* =========================================================
   BUTTON GLOW EFFECT
   ========================================================= */
.btn-primary{
  position: relative;
  overflow: hidden;
}
.btn-primary::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-primary:hover::before{
  width: 300px;
  height: 300px;
}

/* =========================================================
   TESTIMONIAL CARD ENHANCEMENTS
   ========================================================= */
.testimonial-card{
  position: relative;
  overflow: hidden;
}
.testimonial-card::before{
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: var(--coral);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
[data-aos]{
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* =========================================================
   FOCUS STATES FOR ACCESSIBILITY
   ========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip to content link */
.skip-link{
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--coral);
  color: white;
  padding: 8px 16px;
  z-index: 100000;
  transition: top 0.3s;
}
.skip-link:focus{
  top: 0;
}

/* =========================================================
   PERFORMANCE: REDUCE MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .particle-canvas{
    display: none;
  }
  .custom-cursor, .custom-cursor-dot{
    display: none;
  }
}

/* =========================================================
   PREMIUM: MORPHING BACKGROUND
   ========================================================= */
.hero{
  position: relative;
}
.morphing-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.morphing-blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: morphBlob 20s ease-in-out infinite;
}
.morphing-blob:nth-child(1){
  width: 500px;
  height: 500px;
  background: var(--coral);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}
.morphing-blob:nth-child(2){
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: 50%;
  right: -5%;
  animation-delay: -5s;
}
.morphing-blob:nth-child(3){
  width: 300px;
  height: 300px;
  background: #9b59b6;
  bottom: -5%;
  left: 30%;
  animation-delay: -10s;
}
@keyframes morphBlob{
  0%, 100%{
    transform: translate(0, 0) scale(1) rotate(0deg);
    border-radius: 50%;
  }
  25%{
    transform: translate(50px, -30px) scale(1.1) rotate(90deg);
    border-radius: 40% 60% 70% 30%;
  }
  50%{
    transform: translate(-30px, 50px) scale(0.9) rotate(180deg);
    border-radius: 60% 40% 30% 70%;
  }
  75%{
    transform: translate(20px, 20px) scale(1.05) rotate(270deg);
    border-radius: 30% 70% 60% 40%;
  }
}

/* =========================================================
   PREMIUM: TYPING INDICATOR
   ========================================================= */
.typing-indicator{
  display: inline-flex;
  gap: 4px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  margin-top: 10px;
}
.typing-indicator span{
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}
.typing-indicator span:nth-child(2){ animation-delay: 0.2s; }
.typing-indicator span:nth-child(3){ animation-delay: 0.4s; }
@keyframes typingBounce{
  0%, 60%, 100%{ transform: translateY(0); }
  30%{ transform: translateY(-8px); }
}

/* =========================================================
   PREMIUM: HIGHLIGHT TEXT ON SCROLL
   ========================================================= */
.highlight-text{
  background: linear-gradient(120deg, var(--coral) 0%, var(--coral) 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: 0 88%;
  transition: background-size 0.5s ease;
  padding: 0 4px;
}
.highlight-text.active{
  background-size: 100% 30%;
}

/* =========================================================
   PREMIUM: COUNTER FLIP ANIMATION
   ========================================================= */
.stat-num{
  position: relative;
  display: inline-block;
  perspective: 500px;
}
.stat-num.counting{
  animation: countPulse 0.3s ease;
}
@keyframes countPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.1); }
}

/* =========================================================
   PREMIUM: FLOATING BADGES
   ========================================================= */
.floating-badge{
  position: absolute;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(26, 32, 53, 0.95), rgba(42, 52, 83, 0.95));
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1) inset;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  animation: floatBadge 6s ease-in-out infinite;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.floating-badge i{
  margin-right: 8px;
  color: var(--coral);
}
.floating-badge.badge-1{
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}
.floating-badge.badge-2{
  top: 40%;
  right: 5%;
  animation-delay: -2s;
}
.floating-badge.badge-3{
  bottom: 25%;
  left: 8%;
  animation-delay: -4s;
}
@keyframes floatBadge{
  0%, 100%{ transform: translateY(0) rotate(-2deg); }
  50%{ transform: translateY(-15px) rotate(2deg); }
}
@media(max-width: 1024px){
  .floating-badge{ display: none; }
}

/* =========================================================
   PREMIUM: GRADIENT BORDER
   ========================================================= */
.gradient-border{
  position: relative;
  background: var(--white);
  border-radius: 16px;
}
.gradient-border::before{
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--coral), var(--teal), var(--coral));
  border-radius: 18px;
  z-index: -1;
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite;
}
@keyframes gradientMove{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

/* =========================================================
   PREMIUM: NEON GLOW EFFECT
   ========================================================= */
.neon-glow{
  text-shadow: 
    0 0 5px var(--coral),
    0 0 10px var(--coral),
    0 0 20px var(--coral),
    0 0 40px var(--coral);
  animation: neonPulse 2s ease-in-out infinite;
}
@keyframes neonPulse{
  0%, 100%{ opacity: 1; }
  50%{ opacity: 0.8; }
}

/* =========================================================
   PREMIUM: REVEAL ON SCROLL
   ========================================================= */
.reveal-up{
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.reveal-up.revealed{
  opacity: 1;
  transform: translateY(0);
}
.reveal-left{
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.reveal-left.revealed{
  opacity: 1;
  transform: translateX(0);
}
.reveal-right{
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.reveal-right.revealed{
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   PREMIUM: TOOLTIP ENHANCEMENT
   ========================================================= */
[data-tooltip]{
  position: relative;
  cursor: help;
}
[data-tooltip]::after{
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  padding: 8px 12px;
  background: var(--navy);
  color: white;
  font-size: 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
[data-tooltip]::before{
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
[data-tooltip]:hover::after,
[data-tooltip]:hover::before{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}
[data-tooltip]:hover::before{
  transform: translateX(-50%) translateY(-5px);
}

/* =========================================================
   PREMIUM: LIVE CHAT BUTTON
   ========================================================= */
.live-chat-btn{
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--coral), #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(255,107,107,0.4);
  cursor: pointer;
  z-index: 9998;
  transition: all 0.3s ease;
  animation: chatPulse 2s infinite;
}
.live-chat-btn:hover{
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(255,107,107,0.5);
}
.live-chat-btn .badge{
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #25D366;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePop 0.5s ease;
}
@keyframes chatPulse{
  0%, 100%{ box-shadow: 0 8px 32px rgba(255,107,107,0.4); }
  50%{ box-shadow: 0 8px 32px rgba(255,107,107,0.6), 0 0 0 10px rgba(255,107,107,0.1); }
}
@keyframes badgePop{
  0%{ transform: scale(0); }
  50%{ transform: scale(1.2); }
  100%{ transform: scale(1); }
}
body[dir="rtl"] .live-chat-btn{
  right: auto;
  left: 20px;
}

/* =========================================================
   PREMIUM: ANIMATED UNDERLINE LINKS
   ========================================================= */
.animated-link{
  position: relative;
  text-decoration: none;
}
.animated-link::after{
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  transition: width 0.3s ease;
}
.animated-link:hover::after{
  width: 100%;
}

/* =========================================================
   PREMIUM: SKELETON LOADING
   ========================================================= */
.skeleton{
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes skeletonShimmer{
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}

/* =========================================================
   PREMIUM: SUCCESS CHECKMARK
   ========================================================= */
.success-checkmark{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4BB543;
  stroke-miterlimit: 10;
  box-shadow: inset 0 0 0 #4BB543;
  animation: fillCheck 0.4s ease-in-out 0.4s forwards, scaleCheck 0.3s ease-in-out 0.9s both;
  margin: 0 auto;
}
.success-checkmark circle{
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4BB543;
  fill: none;
  animation: strokeCheck 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.success-checkmark path{
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes strokeCheck{
  100%{ stroke-dashoffset: 0; }
}
@keyframes fillCheck{
  100%{ box-shadow: inset 0 0 0 30px rgba(75, 181, 67, 0.1); }
}
@keyframes scaleCheck{
  0%, 100%{ transform: none; }
  50%{ transform: scale3d(1.1, 1.1, 1); }
}

/* =========================================================
   PREMIUM: NUMBER BADGE
   ========================================================= */
.number-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  background: linear-gradient(135deg, var(--coral), var(--accent));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(255,107,107,0.3);
}

/* =========================================================
   MOBILE PREMIUM FEATURES
   ========================================================= */

/* Mobile Hero - Darker and more readable */
@media(max-width: 768px){
  .hero{
    background: 
      linear-gradient(180deg, 
        rgba(5,12,25,0.92) 0%, 
        rgba(10,22,40,0.88) 30%,
        rgba(15,28,50,0.85) 60%,
        rgba(5,12,25,0.95) 100%
      ),
      linear-gradient(-45deg, #050c19, #0a1628, #0f1c32, #050c19);
    background-size: 100% 100%, 400% 400%;
    animation: mobileGradient 20s ease infinite;
    background-attachment: scroll;
  }
  
  /* Add darker overlay for better text contrast */
  .hero::before{
    background: 
      radial-gradient(ellipse at 30% 20%, rgba(255,107,53,0.12), transparent 50%),
      radial-gradient(ellipse at 70% 80%, rgba(6,182,212,0.08), transparent 50%),
      linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
  }
  
  /* Ensure hero content is readable */
  .hero-content{
    position: relative;
    z-index: 5;
  }
  
  .hero h1{
    text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 4px rgba(0,0,0,0.9);
  }
  
  .hero p{
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .hero-locations{
    background: rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    font-size: 0.7rem;
    padding: 8px 16px;
  }
  
  /* Hero Trust Badges - Horizontal compact layout on mobile */
  .hero-trust{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .hero-trust span{
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    white-space: nowrap;
  }
  .hero-trust i{
    color: #4BB543;
    font-size: 0.8rem;
  }
  
  /* Hide desktop floating badges on mobile */
  .floating-badge{
    display: none !important;
  }
  
  @keyframes mobileGradient{
    0%{ background-position: 100% 100%, 0% 50%; }
    50%{ background-position: 100% 100%, 100% 50%; }
    100%{ background-position: 100% 100%, 0% 50%; }
  }
  
  /* Mobile Card Stack Effect */
  .service-card{
    transform-style: preserve-3d;
  }
  .service-card:active{
    transform: scale(0.98);
  }
  
  /* Mobile Swipe Indicator */
  .swipe-indicator{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin: 20px auto;
    width: fit-content;
    animation: swipeHint 2s ease-in-out infinite;
  }
  .swipe-indicator i{
    animation: swipeArrow 1s ease-in-out infinite;
  }
  @keyframes swipeHint{
    0%, 100%{ opacity: 0.7; }
    50%{ opacity: 1; }
  }
  @keyframes swipeArrow{
    0%, 100%{ transform: translateX(0); }
    50%{ transform: translateX(5px); }
  }
  
  /* Mobile Floating Action Button */
  .mobile-fab{
    position: fixed;
    bottom: 80px;
    right: 16px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--coral), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
    z-index: 9990;
    transition: all 0.3s ease;
  }
  .mobile-fab:active{
    transform: scale(0.9);
  }
  .mobile-fab.expanded{
    border-radius: 28px;
    width: auto;
    padding: 0 20px;
  }
  
  /* Mobile Pull Tab */
  .pull-tab{
    width: 40px;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    margin: 8px auto;
  }
  
  /* Mobile Quick Actions Bar */
  .quick-actions{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 53, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .quick-actions.visible{
    transform: translateY(0);
  }
  .quick-action-btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .quick-action-btn i{
    font-size: 1.2rem;
  }
  .quick-action-btn:active,
  .quick-action-btn.active{
    background: rgba(255,107,107,0.2);
    color: var(--coral);
  }
  
  /* Mobile Sticky CTA - HIDDEN */
  .mobile-sticky-cta{
    display: none !important;
    visibility: hidden !important;
  }
  .mobile-sticky-cta.visible{
    transform: translateY(0);
  }
  .mobile-sticky-cta-text{
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
  }
  .mobile-sticky-cta-btn{
    background: white;
    color: var(--coral);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  /* Mobile Card Carousel */
  .mobile-carousel{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 20px 16px;
    margin: 0 -16px;
  }
  .mobile-carousel::-webkit-scrollbar{
    display: none;
  }
  .mobile-carousel > *{
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 85%;
  }
  
  /* Mobile Dots Pagination */
  .mobile-dots{
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
  }
  .mobile-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
  }
  .mobile-dot.active{
    width: 24px;
    border-radius: 4px;
    background: var(--coral);
  }
  
  /* Mobile Expandable Sections */
  .mobile-expandable{
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .mobile-expandable-header{
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .mobile-expandable-header i{
    transition: transform 0.3s ease;
  }
  .mobile-expandable.open .mobile-expandable-header i{
    transform: rotate(180deg);
  }
  .mobile-expandable-content{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
  }
  .mobile-expandable.open .mobile-expandable-content{
    max-height: 500px;
    padding-bottom: 20px;
  }
  
  /* Mobile Touch Ripple */
  .touch-ripple{
    position: relative;
    overflow: hidden;
  }
  .touch-ripple::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s, opacity 0.4s;
    opacity: 0;
  }
  .touch-ripple:active::after{
    width: 200%;
    height: 200%;
    opacity: 1;
    transition: 0s;
  }
  
  /* Mobile Progress Steps */
  .mobile-progress-steps{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
  }
  .mobile-progress-steps::before{
    content: "";
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255,255,255,0.2);
    z-index: 0;
  }
  .mobile-step{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
  }
  .mobile-step-circle{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
  }
  .mobile-step.completed .mobile-step-circle{
    background: var(--coral);
    color: white;
  }
  .mobile-step.active .mobile-step-circle{
    background: var(--teal);
    color: white;
    box-shadow: 0 0 0 4px rgba(78,205,196,0.3);
  }
  .mobile-step-label{
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
  }
  
  /* Mobile Slide Up Panel */
  .slide-up-panel{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    border-radius: 24px 24px 0 0;
    padding: 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    max-height: 80vh;
    overflow-y: auto;
  }
  .slide-up-panel.open{
    transform: translateY(0);
  }
  .slide-up-panel-handle{
    width: 40px;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    margin: 0 auto 20px;
  }
  .slide-up-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
  }
  .slide-up-overlay.open{
    opacity: 1;
    visibility: visible;
  }
  
  /* Mobile Action Sheet */
  .action-sheet{
    position: fixed;
    bottom: 0;
    left: 8px;
    right: 8px;
    background: var(--navy);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: max(8px, env(safe-area-inset-bottom));
    transform: translateY(calc(100% + 20px));
    transition: transform 0.3s ease;
    z-index: 10001;
  }
  .action-sheet.open{
    transform: translateY(0);
  }
  .action-sheet-item{
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    border-radius: 12px;
    transition: background 0.2s ease;
  }
  .action-sheet-item:active{
    background: rgba(255,255,255,0.1);
  }
  .action-sheet-item.destructive{
    color: #ff4757;
  }
  .action-sheet-cancel{
    margin-top: 8px;
    background: rgba(255,255,255,0.1);
    text-align: center;
    font-weight: 600;
  }
  
  /* Mobile Badges Row */
  .mobile-badges{
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 16px 0;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-badges::-webkit-scrollbar{
    display: none;
  }
  .mobile-badge{
    flex-shrink: 0;
    padding: 10px 16px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }
  .mobile-badge i{
    color: var(--coral);
  }
  
  /* Mobile Floating Labels */
  .mobile-float-label{
    position: relative;
  }
  .mobile-float-label input,
  .mobile-float-label select{
    padding-top: 20px;
  }
  .mobile-float-label label{
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.5);
    pointer-events: none;
  }
  .mobile-float-label input:focus + label,
  .mobile-float-label input:not(:placeholder-shown) + label{
    top: 12px;
    font-size: 0.7rem;
    color: var(--coral);
  }
  
  /* Mobile Success Animation */
  .mobile-success{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
  }
  .mobile-success-icon{
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4BB543, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  @keyframes successPop{
    0%{ transform: scale(0); }
    50%{ transform: scale(1.2); }
    100%{ transform: scale(1); }
  }
  
  /* Mobile Loading Skeleton */
  .mobile-skeleton{
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: mobileShimmer 1.5s infinite;
    border-radius: 8px;
  }
  @keyframes mobileShimmer{
    0%{ background-position: 200% 0; }
    100%{ background-position: -200% 0; }
  }
  
  /* Mobile Story-style Progress */
  .story-progress{
    display: flex;
    gap: 4px;
    padding: 12px 16px;
  }
  .story-progress-bar{
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
  }
  .story-progress-bar.active .story-progress-fill,
  .story-progress-bar.completed .story-progress-fill{
    width: 100%;
  }
  .story-progress-fill{
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.3s ease;
  }
  .story-progress-bar.active .story-progress-fill{
    animation: storyFill 5s linear forwards;
  }
  @keyframes storyFill{
    0%{ width: 0; }
    100%{ width: 100%; }
  }
  
  /* Mobile Chip Selection */
  .mobile-chips{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 0;
  }
  .mobile-chip{
    padding: 10px 18px;
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .mobile-chip:active,
  .mobile-chip.selected{
    background: rgba(255,107,107,0.2);
    border-color: var(--coral);
    color: var(--coral);
  }
  
  /* Mobile Notification Badge */
  .mobile-notification{
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    background: #ff4757;
    border-radius: 9px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    animation: notificationPop 0.3s ease;
  }
  @keyframes notificationPop{
    0%{ transform: scale(0); }
    50%{ transform: scale(1.3); }
    100%{ transform: scale(1); }
  }
  
  /* Mobile Smooth Scroll Container */
  .mobile-scroll-container{
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  
  /* =========================================================
     MOBILE CONTENT OPTIMIZATION - COMPACT LAYOUT
     ========================================================= */
  
  /* Sections - Less padding */
  .section{
    padding: 50px 16px;
  }
  
  /* Section Headers - Compact */
  .section-header{
    margin-bottom: 30px;
  }
  .section-header h2{
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .section-header p{
    font-size: 0.9rem;
  }
  .section-tag{
    font-size: 0.7rem;
    padding: 6px 14px;
    margin-bottom: 12px;
  }
  
  /* Stats Card - Compact 2x2 grid layout */
  .stats-wrapper{
    margin-top: -40px;
    padding: 0 12px;
  }
  .stats-card{
    padding: 16px 12px;
    gap: 0;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .stat-item{
    padding: 12px 6px;
    flex: none;
    width: 100%;
    text-align: center;
  }
  .stat-item:not(:last-child)::after{
    display: none;
  }
  /* Add subtle border between items */
  .stat-item:nth-child(1),
  .stat-item:nth-child(2){
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 14px;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4){
    padding-top: 14px;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(3){
    border-right: 1px solid rgba(0,0,0,0.06);
  }
  .stat-num{
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  .stat-desc{
    font-size: 0.65rem;
    letter-spacing: 1px;
    line-height: 1.2;
  }
  
  /* Locations - 3 columns compact - all cards same style */
  .cards-3d-grid{
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
  .card-3d,
  .card-3d:nth-child(3){
    padding: 6px;
    border-radius: 10px;
    display: block !important;
    flex-direction: unset !important;
    grid-column: span 1 !important;
    text-align: center !important;
  }
  .card-image-wrap,
  .card-3d:nth-child(3) .card-image-wrap{
    height: 70px !important;
    width: 100% !important;
    border-radius: 6px;
    flex-shrink: unset !important;
  }
  .card-content,
  .card-3d:nth-child(3) .card-content{
    padding: 8px 4px 4px !important;
    width: 100% !important;
    text-align: center !important;
  }
  .card-content h3{
    font-size: 0.75rem;
    margin-bottom: 0;
  }
  .card-content p{
    display: none !important;
  }
  
  /* Features Grid - 2 columns compact */
  .features-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .feature-item{
    padding: 14px 12px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
  .feature-icon{
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 auto;
  }
  .feature-item h3{
    font-size: 0.85rem;
    margin-bottom: 4px;
  }
  .feature-item p{
    font-size: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* Service Cards - Clean 2x2 Grid für Mobile */
  .services-grid{
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  
  .service-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 12px;
    border-radius: 16px;
    background: white;
    border: none;
    box-shadow: 0 2px 12px rgba(15,23,42,0.08);
    width: 100%;
    box-sizing: border-box;
  }
  
  .service-card::before{
    display: none;
  }
  
  .service-card:hover{
    transform: none;
  }
  
  .service-icon{
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    margin: 0 auto 14px auto;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
  }
  
  .service-card h3{
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 700;
  }
  
  .service-card p{
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--text-muted);
    margin-bottom: 0;
  }
  
  .service-card .service-list{
    display: none;
  }
  
  /* Formats - 2 columns */
  .formats-grid{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .format-item{
    padding: 16px 12px;
    border-radius: 12px;
  }
  .format-icon{
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  .format-item h3{
    font-size: 0.85rem;
  }
  .format-item p{
    font-size: 0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* Testimonials - Compact horizontal scroll */
  .testimonials-wrapper{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 0 16px;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials-wrapper::-webkit-scrollbar{
    display: none;
  }
  .testimonial-card{
    flex-shrink: 0;
    width: 85%;
    scroll-snap-align: center;
    padding: 20px 16px;
    border-radius: 14px;
  }
  .testimonial-card p{
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* Buttons - Smaller, side by side */
  .btn{
    padding: 12px 18px;
    font-size: 0.85rem;
    min-height: 44px;
  }
  .hero-cta{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .hero-cta .btn{
    width: auto;
    flex: 0 0 auto;
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  .btn-primary{
    width: auto;
  }
  
  /* CTA Banner compact */
  .cta-banner{
    padding: 30px 16px;
    border-radius: 16px;
    margin: 0 8px;
  }
  .cta-banner h2{
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .cta-banner p{
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  .cta-banner .btn{
    padding: 12px 24px;
  }
  
  /* About section compact */
  .about-content{
    gap: 20px;
  }
  .about-text h3{
    font-size: 1.2rem;
  }
  .about-text p{
    font-size: 0.85rem;
  }
  .features-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature-item{
    padding: 20px;
    gap: 16px;
  }
  .feature-icon{
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .feature-item h3{
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .feature-item p{
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* Service Cards - Compact */
  .service-card{
    padding: 24px 20px;
    border-radius: 16px;
  }
  .service-icon{
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .service-card h3{
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .service-card p{
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .service-card ul{
    margin-top: 14px;
  }
  .service-card li{
    font-size: 0.8rem;
    padding: 6px 0;
  }
  
  /* Formats Grid - Compact */
  .formats-grid{
    gap: 12px;
  }
  .format-item{
    padding: 20px;
    border-radius: 14px;
  }
  .format-icon{
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .format-item h3{
    font-size: 1rem;
  }
  .format-item p{
    font-size: 0.8rem;
  }
  
  /* Testimonials - Compact */
  .testimonial-card{
    padding: 24px 20px;
    border-radius: 16px;
  }
  .testimonial-card p{
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .testimonial-author{
    margin-top: 16px;
  }
  .testimonial-author strong{
    font-size: 0.9rem;
  }
  .testimonial-author span{
    font-size: 0.75rem;
  }
  
  /* About Section - Compact */
  .about-content{
    gap: 30px;
  }
  .about-text h3{
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .about-text p{
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .about-values{
    gap: 8px;
    margin-top: 16px;
  }
  .value-item{
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  
  /* Process Timeline - 2x2 Grid compact */
  .process-timeline{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .process-timeline::before{
    display: none;
  }
  .process-step{
    padding: 16px 12px;
    background: rgba(255,255,255,0.8);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .step-icon{
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-bottom: 10px;
    border-width: 2px;
  }
  .step-content h3{
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  .step-content p{
    font-size: 0.7rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* FAQ - Compact Accordion Style */
  .faq-grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .faq-item{
    padding: 16px 20px;
    border-radius: 12px;
  }
  .faq-item h3{
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .faq-item h3::before{
    content: "?";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
  }
  .faq-item p{
    font-size: 0.85rem;
    line-height: 1.5;
    padding-left: 34px;
  }
  
  /* CTA Banner - Compact */
  .cta-banner{
    padding: 40px 20px;
    border-radius: 20px;
    margin: 0 12px;
  }
  .cta-banner h2{
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .cta-banner p{
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  /* Booking Section - Compact */
  .booking-container{
    padding: 40px 20px;
    border-radius: 24px 24px 0 0;
  }
  .wizard-step{
    padding: 24px 20px;
  }
  .wizard-step h3{
    font-size: 1.2rem;
  }
  .form-group label{
    font-size: 0.85rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea{
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  /* Footer - Compact */
  footer{
    padding: 40px 16px 100px;
  }
  .footer-grid{
    gap: 24px;
  }
  .footer-col h4{
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .footer-col p,
  .footer-col a{
    font-size: 0.85rem;
  }
  
  /* Buttons - Touch friendly */
  .btn{
    padding: 14px 24px;
    font-size: 0.95rem;
    min-height: 48px;
  }
  .btn-primary{
    width: 100%;
    justify-content: center;
  }
  .hero-cta{
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-cta .btn{
    width: 100%;
  }
}

/* =========================================================
   MOBILE OVERFLOW FIX (CRITICAL)
   ========================================================= */
@media(max-width: 1024px){
  /* Lock horizontal scrolling */
  html{
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
  }
  body{
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
    position: relative;
  }
  
  /* Prevent any element from causing horizontal scroll */
  main,
  section,
  header,
  footer,
  .container,
  .hero,
  .hero-content{
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Fix fixed elements */
  .toast-container{
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }
  body[dir="rtl"] .toast-container{
    right: 10px;
    left: 10px;
  }
  .toast{
    min-width: auto;
    width: 100%;
  }
  
  /* Hide cursor effects on touch devices */
  .custom-cursor,
  .custom-cursor-dot{
    display: none !important;
  }
  
  /* Ensure nav links dont cause overflow */
  .navlinks a:hover,
  .navlinks a:active{
    transform: none;
  }
  
  /* Fix floating elements - ensure visibility */
  .floating-contact{
    display: flex !important;
    right: 16px !important;
    bottom: 24px !important;
  }
  .scroll-to-top{
    right: 16px !important;
    bottom: 90px !important;
  }
  body[dir="rtl"] .floating-contact{
    right: auto !important;
    left: 16px !important;
  }
  body[dir="rtl"] .scroll-to-top{
    right: auto !important;
    left: 16px !important;
  }
}
