/* ============================================
   TechBlitz v5 - Premium Light Theme
   Professional IT Service Website - Bochum
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-input: #f8fafc;
  --bg-nav: rgba(255, 255, 255, 0.85);
  --bg-footer: #0f172a;

  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-dark: #1d4ed8;
  --accent-50: #eff6ff;
  --accent-100: #dbeafe;
  --accent-glow: rgba(37, 99, 235, 0.15);

  --cyan: #06b6d4;
  --green: #10b981;
  --green-50: #ecfdf5;
  --orange: #f59e0b;
  --red: #ef4444;
  --purple: #8b5cf6;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-white: #ffffff;

  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-accent: 0 8px 32px rgba(37, 99, 235, 0.2);

  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --gradient: linear-gradient(135deg, #2563eb, #7c3aed);
  --gradient-light: linear-gradient(135deg, #eff6ff, #f5f3ff);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ====================== TOP BAR ====================== */
.top-bar {
  background: var(--bg-footer);
  padding: 0; font-size: 0.78rem; z-index: 1100; position: fixed;
  top: 0; left: 0; right: 0;
  transition: all 0.3s ease;
  height: 36px;
}
.top-bar.hidden { transform: translateY(-100%); }
.top-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-item {
  color: #94a3b8; display: inline-flex; align-items: center; gap: 5px;
  text-decoration: none; transition: var(--transition); font-size: 0.78rem;
}
a.top-bar-item:hover { color: #ffffff; }
.top-bar-item i { font-size: 0.7rem; }
.top-bar-item.whatsapp-item { color: #34d399; }
.top-bar-item.whatsapp-item:hover { color: #5eead4; }
.top-bar-social { display: flex; gap: 8px; }
.top-bar-social a { color: #94a3b8; font-size: 0.8rem; transition: var(--transition); }
.top-bar-social a:hover { color: #ffffff; }

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

/* ====================== NAVBAR ====================== */
.navbar {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}
.navbar > .container, .navbar .container {
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.navbar-brand { display: flex; align-items: center; position: relative; z-index: 2; }
.navbar-logo { height: 40px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li { list-style: none; }
.nav-links a {
  color: var(--text-secondary); padding: 8px 16px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 500; transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-tertiary); }
.nav-links a.active { color: var(--accent); background: var(--accent-50); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; background: var(--bg-tertiary); border-radius: 8px;
  overflow: hidden; border: 1px solid var(--border);
}
.lang-toggle button {
  background: none; border: none; color: var(--text-muted);
  padding: 6px 14px; cursor: pointer; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.5px; transition: var(--transition);
}
.lang-toggle button.active { background: var(--accent); color: #ffffff; }
.nav-cta {
  background: var(--accent) !important; color: #ffffff !important;
  padding: 9px 22px !important; border-radius: 10px !important;
  font-weight: 600 !important; font-size: 0.88rem !important;
  box-shadow: var(--shadow-accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); box-shadow: 0 12px 40px rgba(37,99,235,0.25); }

.mobile-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text-primary); width: 44px; height: 44px; border-radius: 10px;
  cursor: pointer; font-size: 1.2rem; align-items: center; justify-content: center;
}

/* === MOBILE MENU === */
.mobile-menu { position: fixed; inset: 0; z-index: 2000; visibility: hidden; pointer-events: none; }
.mobile-menu.active { visibility: visible; pointer-events: auto; }
.mobile-menu-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease;
}
.mobile-menu.active .mobile-menu-overlay { opacity: 1; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; width: 300px; max-width: 85vw; height: 100%;
  background: #ffffff;
  border-left: 1px solid var(--border);
  padding: 24px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.active .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
  background: none; border: 1px solid var(--border); color: var(--text-primary);
  width: 40px; height: 40px; border-radius: 10px; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-links {
  list-style: none !important; display: flex; flex-direction: column; gap: 2px;
  margin: 0; padding: 0; flex: 1;
}
.mobile-menu-links li { list-style: none !important; }
.mobile-menu-links a {
  display: flex; align-items: center; gap: 12px; color: var(--text-secondary);
  padding: 14px 16px; border-radius: 12px; font-size: 1rem; font-weight: 500;
  transition: var(--transition); text-decoration: none;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active {
  color: var(--accent); background: var(--accent-50);
}
.mobile-menu-links a i { width: 20px; text-align: center; font-size: 0.9rem; color: var(--accent); }
.mobile-menu-bottom {
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: 12px; font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition); font-family: var(--font); text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #ffffff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,99,235,0.3); color: #ffffff; }
.btn-secondary {
  background: #ffffff; color: var(--text-primary);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--bg-secondary); border-color: var(--accent); color: var(--accent); }
.btn-green { background: var(--green); color: #ffffff; box-shadow: 0 8px 32px rgba(16,185,129,0.2); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(16,185,129,0.3); color: #ffffff; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ====================== HERO (Dark section) ====================== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 120px;
  text-align: center;
  background: var(--gradient-hero);
  color: #ffffff;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37,99,235,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(6,182,212,0.1) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  top: 10%; left: -10%; animation: floatOrb1 15s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  bottom: 10%; right: -5%; animation: floatOrb2 12s ease-in-out infinite;
}
@keyframes floatOrb1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(40px, -30px); } }
@keyframes floatOrb2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 20px); } }

.hero-carousel { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 40px 24px; }
.hero-slides { position: relative; min-height: 340px; overflow: hidden; }
.hero-slide {
  display: none !important; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px) scale(0.98); animation: none;
}
.hero-slide.active {
  display: flex !important; opacity: 1; transform: translateY(0) scale(1);
  animation: heroFadeIn 0.7s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-slide-icon {
  width: 80px; height: 80px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  animation: iconPulse 3s ease-in-out infinite;
}
.hero-slide-icon.blue { background: rgba(37,99,235,0.2); color: #60a5fa; }
.hero-slide-icon.cyan { background: rgba(6,182,212,0.2); color: #22d3ee; }
.hero-slide-icon.green { background: rgba(16,185,129,0.2); color: #34d399; }
.hero-slide-icon.purple { background: rgba(124,58,237,0.2); color: #a78bfa; }
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.2); }
  50% { box-shadow: 0 0 0 12px rgba(37,99,235,0); }
}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  color: #60a5fa; padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 28px;
}
.hero-label .dot { width: 6px; height: 6px; background: #34d399; border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-slide h2 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.5px; color: #ffffff;
}
.gradient-text { background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-cyan { background: linear-gradient(135deg, #22d3ee, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-slide p { font-size: clamp(0.95rem, 2vw, 1.1rem); color: #cbd5e1; margin-bottom: 32px; max-width: 560px; line-height: 1.7; }

.hero-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; position: relative; z-index: 2; }
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none;
  cursor: pointer; transition: var(--transition); padding: 0;
}
.hero-dot.active { background: var(--accent); width: 32px; border-radius: 5px; box-shadow: 0 0 12px rgba(37,99,235,0.4); }

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; position: relative; z-index: 2; }
.hero-features {
  display: grid !important; grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important; margin-top: 48px; position: relative; z-index: 2;
}
.hero-feature {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 12px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  transition: var(--transition); backdrop-filter: blur(8px);
}
.hero-feature:hover {
  border-color: rgba(37,99,235,0.4); background: rgba(37,99,235,0.1);
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-feature i { font-size: 1.4rem; color: #60a5fa; }
.hero-feature span { font-size: 0.82rem; color: #cbd5e1; font-weight: 600; text-align: center; }

/* ====================== SECTIONS (Light) ====================== */
section { padding: 100px 0; position: relative; }
.page-section { padding-top: 140px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h1, .section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.5px; color: var(--text-primary);
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Light section backgrounds */
.section-light { background: var(--bg-primary); }
.section-gray { background: var(--bg-secondary); }
.section-accent { background: var(--accent-50); }

/* ====================== SERVICE CARDS ====================== */
.services-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px; }
.tab-btn {
  background: #ffffff; border: 1px solid var(--border);
  color: var(--text-secondary); padding: 10px 20px; border-radius: 10px;
  cursor: pointer; font-size: 0.88rem; font-weight: 500; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font);
  box-shadow: var(--shadow-sm);
}
.tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.tab-btn.active { background: var(--accent); color: #ffffff; border-color: var(--accent); box-shadow: var(--shadow-accent); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 20px; }

.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.card:hover {
  border-color: var(--accent-100); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.card:hover::before { transform: scaleX(1); }
.card::after { display: none; }

.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.service-card .description { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.5; }
.service-card .price {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-50); color: var(--green);
  padding: 5px 14px; border-radius: 8px; font-weight: 700; font-size: 0.9rem;
}
.service-card .target { display: inline-flex; align-items: center; gap: 4px; color: var(--text-muted); font-size: 0.78rem; margin-top: 10px; }
.service-card .order-btn {
  display: block; width: 100%; margin-top: 16px; padding: 10px;
  background: var(--accent-50); border: 1px solid var(--accent-100);
  color: var(--accent); border-radius: 10px; cursor: pointer;
  font-weight: 600; font-size: 0.88rem; transition: var(--transition); font-family: var(--font);
}
.service-card .order-btn:hover { background: var(--accent); color: #ffffff; border-color: var(--accent); }

/* ====================== PLANS ====================== */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.plan-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 36px 28px; text-align: center; transition: var(--transition); position: relative;
  box-shadow: var(--shadow-sm);
}
.plan-card.popular {
  border-color: var(--accent); box-shadow: var(--shadow-accent);
  background: linear-gradient(180deg, var(--accent-50) 0%, #ffffff 40%);
}
.plan-card.popular .popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #ffffff; padding: 4px 20px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card h3 { font-size: 1.2rem; margin-bottom: 4px; color: var(--text-primary); }
.plan-price { font-size: 2.8rem; font-weight: 900; margin: 16px 0 4px; letter-spacing: -1px; color: var(--text-primary); }
.plan-price .currency { font-size: 1.1rem; vertical-align: top; color: var(--text-muted); font-weight: 500; }
.plan-price .period { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.plan-features { list-style: none; text-align: left; margin: 24px 0; }
.plan-features li {
  padding: 8px 0; color: var(--text-secondary); font-size: 0.88rem;
  display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border-light);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--green); font-size: 0.75rem; flex-shrink: 0; }
.plan-card .btn { width: 100%; justify-content: center; }

/* ====================== FORMS ====================== */
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.3rem; margin-bottom: 24px; color: var(--text-primary); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; background: var(--bg-input);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text-primary); font-size: 0.92rem; font-family: var(--font); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ====================== ABOUT ====================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.stat-item {
  text-align: center; padding: 20px 12px; background: var(--bg-card);
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stat-item .number { font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-item .label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-feature {
  display: flex; align-items: center; gap: 12px; padding: 16px;
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.about-feature:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.about-feature i { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }
.about-feature span { font-size: 0.88rem; font-weight: 500; color: var(--text-primary); }

/* Reviews */
.reviews-section { margin-top: 80px; text-align: center; }
.reviews-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 40px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; text-align: left;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--orange); margin-bottom: 12px; font-size: 0.9rem; }
.review-text { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 16px; font-style: italic; line-height: 1.6; }
.review-author { font-weight: 700; font-size: 0.88rem; color: var(--text-primary); }

/* ====================== CONTACT ====================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; padding: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition); box-shadow: var(--shadow-sm);
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-card .icon {
  width: 48px; height: 48px; min-width: 48px; background: var(--accent-50); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
}
.contact-card h4 { font-size: 0.92rem; margin-bottom: 2px; color: var(--text-primary); }
.contact-card p { color: var(--text-secondary); font-size: 0.88rem; }

/* ====================== BOOKING ====================== */
.booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.booking-info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow);
}
.booking-info-card h3 { font-size: 1.4rem; margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.info-item .icon {
  width: 48px; height: 48px; min-width: 48px; background: var(--accent-50); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
}
.info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.info-item p { color: var(--text-secondary); font-size: 0.88rem; }

/* ====================== NEWSLETTER ====================== */
.newsletter-section {
  background: var(--accent-50);
  border-top: 1px solid var(--accent-100);
  border-bottom: 1px solid var(--accent-100);
  padding: 60px 0; text-align: center;
}
.newsletter-inner { max-width: 540px; margin: 0 auto; }
.newsletter-icon {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px;
  background: var(--accent-100); border: 1px solid var(--accent-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
}
.newsletter-section h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: var(--text-primary); }
.newsletter-form { display: flex; max-width: 480px; margin: 24px auto 0; gap: 12px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; background: #ffffff;
  border: 1px solid var(--border); border-radius: 12px;
  color: var(--text-primary); font-size: 0.92rem; font-family: var(--font);
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); }

/* ====================== FOOTER (Dark) ====================== */
.footer { background: var(--bg-footer); color: #ffffff; border-top: none; padding: 60px 0 20px; }
.footer-logo { height: 48px; width: auto; margin-bottom: 16px; display: block; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: #94a3b8; font-size: 0.88rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; transition: var(--transition);
}
.social-links a:hover { background: var(--accent); color: #ffffff; border-color: var(--accent); }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 16px; color: #ffffff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; list-style: none; }
.footer-col ul li a { color: #94a3b8; font-size: 0.88rem; }
.footer-col ul li a:hover { color: #ffffff; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: #64748b;
}

/* ====================== MODAL ====================== */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px); z-index: 2000; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 40px; max-width: 500px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: var(--shadow-xl);
}
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }
.modal h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--text-primary); }

/* ====================== TOAST ====================== */
.toast-container { position: fixed; top: 90px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: #ffffff; border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 20px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); animation: slideIn 0.3s ease; min-width: 280px; font-size: 0.9rem;
  color: var(--text-primary);
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error { border-left: 3px solid var(--red); }
.toast.info { border-left: 3px solid var(--accent); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ====================== FLOATING ====================== */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px;
  background: var(--accent); border: none; border-radius: 12px; color: #ffffff;
  font-size: 1rem; cursor: pointer; z-index: 900; opacity: 0;
  transform: translateY(20px); transition: var(--transition);
  box-shadow: var(--shadow-accent);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.whatsapp-float { position: fixed; bottom: 24px; left: 24px; z-index: 900; }
.whatsapp-float a {
  width: 52px; height: 52px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}
.whatsapp-float a:hover { transform: scale(1.1); }

.page-enter { animation: fadeUp 0.5s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ====================== SCROLL REVEAL ====================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Glow pulse */
.glow-pulse { animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse { 0%, 100% { box-shadow: var(--shadow-accent); } 50% { box-shadow: 0 0 24px rgba(37,99,235,0.3); } }

/* Float icon */
.float-icon { animation: floatIcon 3s ease-in-out infinite; }
@keyframes floatIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Counter */
.count-up { font-variant-numeric: tabular-nums; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .hero-features { grid-template-columns: repeat(2, 1fr) !important; }
  .about-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-right .nav-cta { display: none !important; }
  .mobile-toggle { display: flex !important; }
  section { padding: 60px 0; }
  .page-section { padding-top: 90px; }
  .navbar { top: 0 !important; }
  .hero { min-height: auto; padding: 100px 0 40px; }
  .page-section { padding-top: 100px; }
  .hero-slides { min-height: 260px; }
  .hero-carousel { padding: 20px 16px; }
  .hero-slide-icon { width: 64px; height: 64px; font-size: 1.5rem; }
  .hero-features { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .hero-feature { padding: 14px 10px; }
  .section-header h1, .section-header h2 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .hero-features { grid-template-columns: 1fr !important; }
  .container { padding: 0 16px; }
  .hero-slide h2 { font-size: 1.6rem; }
}
