
    /* ===========================
   JKIMS — Premium CSS System
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* === CSS Variables === */
:root {
  --deep-blue: #0a1628;
  --navy: #0d1f3c;
  --blue-mid: #1a3560;
  --blue-light: #1e4a8a;
  --blue-glow: #2563eb;
  --red: #c8102e;
  --red-hover: #e8132f;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --silver: #b8c4d0;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --shadow-deep: 0 32px 80px rgba(0,0,0,0.5);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(37,99,235,0.4);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--deep-blue);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === Preloader === */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--deep-blue);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--white);
}
.preloader-logo span { color: var(--red); }
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-glow), var(--red));
  border-radius: 2px;
  animation: loadProgress 1.8s var(--transition) forwards;
}
@keyframes loadProgress { from { width: 0; } to { width: 100%; } }

/* === Navbar === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--transition);
}
nav.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 4px 8px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  padding: 4px 8px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.lang-btn.active, .lang-btn:hover { background: var(--red); color: var(--white); }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--red); }

/* === Typography === */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--red);
}
.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--silver);
  max-width: 560px;
  line-height: 1.7;
}

/* === Buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.45);
}
.btn-primary:hover::before { opacity: 1; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 17px 40px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.35s var(--transition);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* === Sections === */
section { padding: 120px 60px; }
.container { max-width: 1280px; margin: 0 auto; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 60px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30,74,138,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(200,16,46,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #0a1628 0%, #0d1f3c 60%, #081220 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 0%, transparent 70%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(37,99,235,0.15); top: -100px; right: 5%; animation-delay: 0s; }
.hero-orb-2 { width: 350px; height: 350px; background: rgba(200,16,46,0.1); bottom: 0; right: 30%; animation-delay: 3s; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(30,74,138,0.2); top: 20%; left: -50px; animation-delay: 5s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.05); }
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.5s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; height: 1px; background: var(--red);
}
.hero-eyebrow::before { width: 30px; }
.hero-eyebrow::after { width: 30px; }
.hero-title {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.7s forwards;
}
.hero-title .accent { color: var(--red); font-style: italic; }
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--silver);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.9s forwards;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 1.1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll-line { width: 40px; height: 1px; background: var(--silver); }
.hero-scroll-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--silver); }
.hero-scroll-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: dotPulse 2s ease infinite; }
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

/* === Fade Animations === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* === Services Cards === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue-glow), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 28px;
}
.service-card-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card-desc { font-size: 0.88rem; color: var(--silver); line-height: 1.75; margin-bottom: 28px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.3s ease;
}
.service-card-link:hover { gap: 12px; }

/* === Why JKIMS === */
.why-section { background: linear-gradient(160deg, var(--navy) 0%, var(--deep-blue) 100%); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual { position: relative; }
.why-visual-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}
.why-stat { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.why-stat-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; color: var(--white); }
.why-stat-unit { font-size: 1.4rem; font-weight: 600; color: var(--red); }
.why-stat-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-bottom: 32px; }
.why-stat-divider { width: 100%; height: 1px; background: var(--glass-border); margin: 24px 0; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-feature-text h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 4px; font-family: 'Montserrat', sans-serif; }
.why-feature-text p { font-size: 0.83rem; color: var(--silver); line-height: 1.6; }

/* ============================================
   TESTIMONIALS SECTION — Premium Slider
   ============================================ */
.testimonials-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--deep-blue) 0%, #081220 50%, var(--deep-blue) 100%);
}

/* Ambient background effect */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  padding: 0 60px;
  margin-bottom: 72px;
}

/* Track + viewport */
.testimonials-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.testimonials-viewport:active { cursor: grabbing; }

.testimonials-track {
  display: flex;
  gap: 28px;
  padding: 20px 60px 40px;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual card */
.testimonial-card {
  flex: 0 0 calc(60% - 14px);
  max-width: 760px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 52px 52px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--transition);
  opacity: 0.45;
  transform: scale(0.96);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(37,99,235,0.15);
}

/* Decorative quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 12rem;
  font-weight: 800;
  color: rgba(37,99,235,0.08);
  line-height: 1;
  pointer-events: none;
}

/* Subtle top gradient line on active */
.testimonial-card.active::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), var(--red), transparent);
  opacity: 1;
}

/* Star rating */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.testimonial-stars span {
  color: #f59e0b;
  font-size: 1rem;
}

/* Quote text */
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

/* Author row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}

.testimonial-author-info { flex: 1; }
.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--silver);
  letter-spacing: 0.5px;
}

/* Company logo badge */
.testimonial-company {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.company-logo-box {
  width: 80px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}
.testimonial-card.active .company-logo-box {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

/* SVG logos inside company box */
.company-logo-box svg { width: 54px; height: 22px; }

.company-country {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* === Controls === */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding: 0 60px;
}

.testi-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition);
  backdrop-filter: blur(10px);
}
.testi-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}
.testi-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Dots */
.testi-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.35s var(--transition);
  border: none;
  padding: 0;
}
.testi-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--red);
}
.testi-dot:hover:not(.active) { background: rgba(255,255,255,0.45); }

/* Progress bar */
.testi-progress-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 60px;
  margin-top: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.testi-counter {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--silver);
  white-space: nowrap;
  min-width: 40px;
}
.testi-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.testi-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-glow), var(--red));
  border-radius: 2px;
  transition: width 0.6s var(--transition);
}

/* Fade-edge masks on viewport sides */
.testimonials-viewport::before,
.testimonials-viewport::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--deep-blue), transparent);
}
.testimonials-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, #081220, transparent);
}

/* Autoplay pause indicator */
.testi-autoplay-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.testi-autoplay-dot.playing { background: var(--red); animation: dotPulse 2s ease infinite; }

/* === CTA Section === */
.cta-section {
  position: relative;
  padding: 100px 60px;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--navy) 100%);
}
.cta-glow {
  position: absolute;
  width: 600px; height: 300px;
  background: rgba(200,16,46,0.2);
  filter: blur(100px);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; margin-bottom: 20px; }
.cta-text { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }

/* === Services Page === */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--deep-blue) 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.service-detail { padding: 80px 60px; }
.service-detail:nth-child(even) { background: rgba(255,255,255,0.02); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1280px; margin: 0 auto; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-visual {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.service-detail-visual::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.service-features-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.service-features-list li { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--silver); }
.service-features-list li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.service-tag {
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.pricing-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px 36px;
  position: relative;
  transition: all 0.4s var(--transition);
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-card); }
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(37,99,235,0.2), rgba(26,53,96,0.4));
  border-color: rgba(37,99,235,0.4);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-10px); }
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.pricing-tier { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--silver); margin-bottom: 12px; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.pricing-price sup { font-size: 1.4rem; vertical-align: super; font-weight: 600; }
.pricing-period { font-size: 0.8rem; color: var(--silver); margin-bottom: 32px; }
.pricing-divider { width: 100%; height: 1px; background: var(--glass-border); margin: 28px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.pricing-features li .check { color: var(--red); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.pricing-ideal { font-size: 0.78rem; font-style: italic; color: var(--silver); padding-top: 16px; border-top: 1px solid var(--glass-border); }
.pricing-section-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--glass-border); }
.pricing-other { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.pricing-other-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s var(--transition);
}
.pricing-other-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.2); box-shadow: var(--shadow-card); }

/* === About === */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1280px; margin: 0 auto; }
.about-visual-block { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 48px; position: relative; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 64px; }
.about-value-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 32px 28px; transition: all 0.4s var(--transition); }
.about-value-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.about-value-icon { font-size: 1.8rem; margin-bottom: 16px; }
.about-value-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; font-family: 'Montserrat', sans-serif; }
.about-value-text { font-size: 0.83rem; color: var(--silver); line-height: 1.6; }
.timeline { margin-top: 48px; position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--red), transparent); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before { content: ''; position: absolute; left: -36px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px rgba(200,16,46,0.5); }
.timeline-year { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; color: var(--red); text-transform: uppercase; margin-bottom: 4px; }
.timeline-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
.timeline-text { font-size: 0.85rem; color: var(--silver); line-height: 1.6; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.contact-info-value { font-size: 0.9rem; color: var(--white); font-weight: 500; }
.contact-form { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 56px 48px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: rgba(37,99,235,0.6); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.form-input.error, .form-textarea.error { border-color: var(--red); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: var(--navy); color: var(--white); }
.form-error { font-size: 0.75rem; color: var(--red); margin-top: 6px; display: none; }
.form-error.visible { display: block; }
.form-success { text-align: center; padding: 40px; display: none; }
.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === Footer === */
footer { background: var(--navy); border-top: 1px solid var(--glass-border); padding: 80px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1280px; margin: 0 auto; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; letter-spacing: 4px; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--red); }
.footer-desc { font-size: 0.83rem; color: var(--silver); line-height: 1.7; margin-bottom: 28px; }
.footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; color: var(--silver); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: 1280px; margin: 60px auto 0; padding-top: 28px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-badges { display: flex; gap: 16px; align-items: center; }
.footer-badge { font-size: 0.68rem; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.12); padding: 4px 10px; border-radius: 20px; }

/* === Misc === */
.counter-stat { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--white); }
.page-transition { animation: pageIn 0.6s var(--transition) forwards; }
@keyframes pageIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
[data-i18n] { transition: opacity 0.25s ease; }
[data-i18n].lang-changing { opacity: 0; }

/* === Responsive === */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-10px); }
  .pricing-other { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 calc(80% - 14px); }
}

@media (max-width: 900px) {
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 14px 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 80px 32px; }
  .hero { padding: 0 32px; }
  .page-hero { padding: 120px 32px 60px; }
  .service-detail { padding: 60px 32px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse { direction: ltr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 36px 28px; }
  footer { padding: 60px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-section { padding: 80px 32px; }
  .testimonials-header { padding: 0 32px; }
  .testimonials-track { padding: 20px 32px 40px; }
  .testimonial-card { flex: 0 0 calc(90% - 14px); padding: 36px 32px 30px; }
  .testi-controls { padding: 0 32px; }
  .testi-progress-wrap { padding: 0 32px; }
  .testimonials-viewport::before,
  .testimonials-viewport::after { width: 40px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .pricing-other { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lang-switcher { display: none; }
  .testimonial-card { flex: 0 0 calc(94% - 14px); padding: 28px 24px 24px; }
  .testimonial-card::before { font-size: 8rem; top: -10px; left: 20px; }
  .testimonial-quote { font-size: 1rem; }
  .testi-btn { width: 44px; height: 44px; }
}