/* ============================================================
   BoostUp — Main Stylesheet
   Font: Poppins | Colors: #335acf (primary), #fff (white)
   ============================================================ */

:root {
  --primary: #335acf;
  --primary-dark: #2447b0;
  --primary-light: #6b8ef5;
  --primary-xlight: #eef1fc;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7f0;
  --shadow: 0 4px 24px rgba(51,90,207,0.12);
  --shadow-lg: 0 12px 48px rgba(51,90,207,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION ── */
.section { padding: 96px 0; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; margin-top: 12px; }

.section-tag {
  display: inline-block;
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2, .why-text h2, .story-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
}

.highlight { color: var(--primary); }
.highlight-white { color: #ffd700; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; height: 72px;
}

.logo {

  font-size: 1.5rem; font-weight: 900; color: var(--text);
  letter-spacing: -0.5px; flex-shrink: 0;
}
.logo img {
  height: 20px;   /* adjust this */
  width: auto;
}
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 8px; margin-left: auto; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px; font-size: 0.9rem;
  font-weight: 500; color: var(--text-muted);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary); background: var(--primary-xlight);
}

.btn-nav {
  background: var(--primary); color: var(--white);
  padding: 10px 24px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 600;
  transition: all 0.2s; flex-shrink: 0;
}
.btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block; padding: 12px 16px; border-radius: var(--radius-sm);
  font-weight: 500; color: var(--text);
}
.mobile-menu a:hover { background: var(--primary-xlight); color: var(--primary); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block; background: var(--primary); color: var(--white);
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s; border: none; cursor: pointer; font-family: 'Poppins', sans-serif;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost {
  display: inline-block; color: var(--primary); font-weight: 600; font-size: 0.95rem;
  padding: 14px 8px; transition: all 0.2s;
}
.btn-ghost:hover { color: var(--primary-dark); letter-spacing: 0.5px; }

.btn-outline {
  display: inline-block; border: 2px solid var(--primary); color: var(--primary);
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s; text-align: center;
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-white {
  display: inline-block; background: var(--white); color: var(--primary);
  padding: 16px 40px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto;
  gap: 64px; position: relative; overflow: hidden;
}

.hero-bg-shapes { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%; opacity: 0.08;
  animation: floatShape 8s ease-in-out infinite;
}
.shape1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -150px; }
.shape2 { width: 400px; height: 400px; background: var(--primary); bottom: -150px; left: -100px; animation-delay: -3s; }
.shape3 { width: 200px; height: 200px; background: var(--primary-light); top: 40%; right: 20%; animation-delay: -6s; }

@keyframes floatShape {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content { flex: 1; min-width: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-xlight); color: var(--primary);
  font-size: 0.8rem; font-weight: 600; padding: 8px 18px;
  border-radius: 50px; margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-sub {
  color: var(--text-muted); font-size: 1.1rem; max-width: 500px;
  margin-bottom: 36px; line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex; gap: 0; align-items: center;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat { padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat span { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  flex: 1; min-width: 0; position: relative; height: 480px;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-circle {
  position: absolute; width: 380px; height: 380px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:translate(-50%,-50%) scale(1);} 50%{transform:translate(-50%,-50%) scale(1.05);} }

.hero-card {
  position: absolute; background: var(--white);
  border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--border);
  animation: floatCard 5s ease-in-out infinite;
}
.card-main { top: 30%; left: 5%; min-width: 230px; }
.card-float1 { top: 10%; right: 5%; animation-delay: -2s; }
.card-float2 { bottom: 20%; right: 10%; animation-delay: -4s; }

@keyframes floatCard {
  0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);}
}

.card-icon { font-size: 2rem; }
.card-info strong { display: block; font-weight: 700; font-size: 0.9rem; color: var(--text); }
.card-info span { font-size: 0.78rem; color: var(--text-muted); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2447b0 100%);
  color: var(--white); padding: 160px 24px 100px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero .shape { opacity: 0.06; }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero .section-tag { background: rgba(255,255,255,0.2); color: var(--white); }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; margin: 16px 0; line-height: 1.15;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.page-hero .highlight { color: #ffd700; }

/* ============================================================
   LOGOS SECTION
   ============================================================ */
.logos-section {
  padding: 10px 0; background: var(--primary-xlight);
  text-align: center; overflow: hidden;
}
.logos-section p { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

.logos-track { overflow: hidden; }
.logos-inner {
  display: flex; gap: 48px; width: max-content;
  animation: scrollLogos 20s linear infinite;
}
.logos-inner span {
  font-weight: 700; font-size: 1rem; color: var(--primary);
  opacity: 0.5; white-space: nowrap; letter-spacing: 0.5px;
}
@keyframes scrollLogos { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ============================================================
   SERVICES GRID (HOME PREVIEW)
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: all 0.3s; cursor: default;
}
.service-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card.featured {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.service-card.featured h3, .service-card.featured p { color: var(--white); }
.service-card.featured .svc-link { color: rgba(255,255,255,0.8); }

.svc-icon { font-size: 2.4rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
.service-card.featured p { color: rgba(255,255,255,0.75); }
.svc-link { font-size: 0.875rem; font-weight: 600; color: var(--primary); transition: letter-spacing 0.2s; }
.svc-link:hover { letter-spacing: 0.5px; }

/* ============================================================
   SERVICES FULL (SERVICES PAGE)
   ============================================================ */
.services-full-grid { display: flex; flex-direction: column; gap: 40px; }

.svc-full-card {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 40px; align-items: start;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  transition: all 0.3s;
}
.svc-full-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.svc-full-card.reverse { grid-template-columns: 1fr 120px; }
.svc-full-card.reverse .svc-full-icon { order: 2; }
.svc-full-card.reverse .svc-full-body { order: 1; }

.svc-full-icon {
  font-size: 3.5rem; width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-xlight); border-radius: var(--radius);
}
.svc-full-body h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.svc-full-body p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.svc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.svc-features li { font-size: 0.875rem; color: var(--primary); font-weight: 500; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--primary-xlight); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why-image { position: relative; }
.why-img-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg); height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.why-img-inner {
  background: rgba(255,255,255,0.15); border-radius: var(--radius);
  padding: 32px 48px; text-align: center;
}
.why-metric strong { display: block; font-size: 4rem; font-weight: 900; color: var(--white); line-height: 1; }
.why-metric span { color: rgba(255,255,255,0.8); font-size: 1rem; font-weight: 500; }
.why-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 24px; font-size: 0.85rem; font-weight: 600;
  box-shadow: var(--shadow-lg); border: 1.5px solid var(--border);
}

.why-text .section-tag { margin-bottom: 16px; }
.why-text h2 { margin-bottom: 16px; }
.why-text > p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }

.why-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem; }
.check { color: var(--white); background: var(--primary); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.testi-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s;
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-card.featured { background: var(--primary); color: var(--white); border-color: var(--primary); }
.testi-card.featured p, .testi-card.featured .stars { color: var(--white); }
.testi-card.featured strong { color: var(--white); }
.testi-card.featured span { color: rgba(255,255,255,0.7); }

.stars { color: var(--primary); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 24px; font-size: 0.95rem; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-xlight); color: var(--primary);
  font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-card.featured .testi-avatar { background: rgba(255,255,255,0.2); color: var(--white); }
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #2447b0 100%);
  color: var(--white); padding: 100px 24px; text-align: center;
}
.cta-banner h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--primary-xlight); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }

.price-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 36px; border: 1.5px solid var(--border);
  position: relative; transition: all 0.3s;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card.featured { background: var(--primary); color: var(--white); border-color: var(--primary); transform: scale(1.05); }
.price-card.featured:hover { transform: scale(1.05) translateY(-4px); }

.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #ffd700; color: var(--text); font-size: 0.75rem;
  font-weight: 700; padding: 5px 16px; border-radius: 50px; white-space: nowrap;
}

.price-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.price { font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: 28px; }
.price span { font-size: 1.4rem; vertical-align: super; }
.price small { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.price-card.featured .price, .price-card.featured h4 { color: var(--white); }

.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price-card li { font-size: 0.875rem; font-weight: 500; }
.price-card .dim { opacity: 0.4; }
.price-card.featured li { color: rgba(255,255,255,0.9); }
.price-card.featured .dim { opacity: 0.4; }
.price-card.featured .btn-primary { background: var(--white); color: var(--primary); }
.price-card.featured .btn-primary:hover { background: var(--primary-xlight); }

/* ============================================================
   ABOUT — STORY
   ============================================================ */
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text .section-tag { margin-bottom: 16px; }
.story-text h2 { margin-bottom: 20px; }
.story-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }

.story-box {
  background: var(--primary); border-radius: var(--radius-lg);
  padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.story-stat { text-align: center; }
.story-stat strong { display: block; font-size: 2.4rem; font-weight: 900; color: var(--white); }
.story-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* VALUES */
.values-section { background: var(--primary-xlight); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 18px; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

.team-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 24px; text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem; color: var(--white);
}
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card span { display: block; font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* TIMELINE */
.milestones-section { background: var(--white); }
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 100px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}

.timeline-item {
  display: grid; grid-template-columns: 100px 24px 1fr;
  gap: 24px; align-items: start; margin-bottom: 48px;
}
.tl-year { font-weight: 700; color: var(--primary); font-size: 0.9rem; padding-top: 2px; text-align: right; }
.tl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--border); border: 3px solid var(--white);
  outline: 2px solid var(--border); margin-top: 4px; z-index: 1;
  position: relative;
}
.tl-dot.active { background: var(--primary); outline-color: var(--primary); }
.tl-content strong { display: block; font-weight: 700; margin-bottom: 6px; }
.tl-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }

.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.ci-icon {
  width: 44px; height: 44px; background: var(--primary-xlight);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 600; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.contact-item a:hover { color: var(--primary); }

.social-links { display: flex; gap: 10px; margin-top: 32px; }
.social-btn {
  background: var(--primary-xlight); color: var(--primary);
  padding: 8px 18px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; transition: all 0.2s;
}
.social-btn:hover { background: var(--primary); color: var(--white); }

/* FORM */
.contact-form-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s;
  outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab; }

.form-success {
  display: none; margin-top: 16px; padding: 16px;
  background: #e8f5e9; border-radius: var(--radius-sm);
  color: #2e7d32; font-weight: 600; font-size: 0.9rem; text-align: center;
}

/* FAQ */
.faq-section { background: var(--primary-xlight); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.faq-item { background: var(--white); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  background: none; border: none; cursor: pointer; font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--primary); }
.faq-arrow { flex-shrink: 0; transition: transform 0.3s; font-size: 0.75rem; color: var(--text-muted); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: all 0.35s ease; color: var(--text-muted);
  font-size: 0.9rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--text); color: var(--white); padding: 80px 0 0; }

.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 64px;
}
.footer-brand .logo { font-size: 1.4rem; }
.footer-brand .logo span { color: var(--primary-light); }
.footer-brand p { color: rgba(255,255,255,0.5); margin-top: 12px; font-size: 0.875rem; line-height: 1.7; }

.footer-links h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-links li:not(a) { color: rgba(255,255,255,0.5); font-size: 0.875rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; min-height: auto; padding-top: 120px; text-align: center; }
  .hero-visual { width: 100%; height: 300px; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .why-inner, .story-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-image { order: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .svc-full-card, .svc-full-card.reverse { grid-template-columns: 1fr; }
  .svc-full-card.reverse .svc-full-icon { order: 0; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .timeline::before { left: 70px; }
  .timeline-item { grid-template-columns: 70px 20px 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .hero-card { display: none; }
  .hero-circle { width: 260px; height: 260px; }
  .hero-visual { height: 200px; }
  .footer-inner { grid-template-columns: 1fr; }
  .svc-features { grid-template-columns: 1fr; }
}
