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

:root {
  --primary: #0ea5e9;
  --secondary: #6366f1;
  --text: #1a1a2e;
  --text-light: #555;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0f0f23;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

@keyframes bodyFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  animation: bodyFadeIn 0.6s ease-out;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
}
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-brand { color: var(--text); }
.navbar.scrolled .nav-toggle span { background: var(--text); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover { color: white; }
.navbar.scrolled .nav-link:hover { color: var(--primary); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-toggle { display: none; cursor: pointer; background: none; border: none; padding: 0.5rem; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 6px 0;
  transition: var(--transition);
}

/* Image Placeholder */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
/* .img-placeholder {
  width: 100%;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 2.5s ease-in-out infinite;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 200px;
}
.img-placeholder i {
  font-size: 2rem;
  color: #94a3b8;
} */

/* Hero */
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark), var(--primary));
  padding: 140px 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,35,0.75), rgba(15,15,35,0.6));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-content-inner {
  max-width: 600px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 450;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease-out;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: white;
  color: var(--text);
  border-color: white;
}
.btn-dark {
  background: var(--bg-dark);
  color: white;
}
.btn-dark:hover { transform: translateY(-2px); }
.btn-secondary-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-size: 0.9rem;
  padding: 0.625rem 1.5rem;
}
.btn-secondary-outline:hover {
  background: var(--primary);
  color: white;
}

/* Sections */
.section {
  padding: 100px 0;
}
.section-light { background: var(--bg-light); }
.section-dark {
  background: linear-gradient(135deg, var(--bg-dark), #1a1a3e);
  color: white;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* Grid System */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Cards — Unified Design */
.card, .unified-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.card:hover, .unified-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
  color: white;
}
.card h3, .unified-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card p, .unified-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}
.card-highlights {
  list-style: none;
  margin-top: 0.75rem;
  padding: 0;
}
.card-highlights li {
  padding: 0.3rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.card-highlights li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
}
.card ul {
  list-style: none;
  margin-top: 1rem;
}
.card ul li {
  padding: 0.35rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}
.card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Service Card */
.service-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
/* .service-card .img-placeholder {
  border-radius: 0;
  border: none;
  border-bottom: 2px dashed #cbd5e1;
  height: 200px;
  min-height: 200px;
} */
.service-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card-body p {
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}
.service-card-body .btn-secondary-outline {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-author-info h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.testimonial-author-info span {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* CTA */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Mission/Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.mv-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  color: white;
}
.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.mv-card p { opacity: 0.9; line-height: 1.8; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info { display: flex; flex-direction: column; gap: 2rem; justify-content: center; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-weight: 700; margin-bottom: 0.25rem; }
.contact-info-item p { color: var(--text-light); }

/* Footer */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.footer-desc { line-height: 1.7; }
.footer h4 { color: white; margin-bottom: 1rem; font-size: 1.05rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { transition: var(--transition); }
.footer ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: white;
}

/* Page Header */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--bg-dark), var(--primary));
  text-align: center;
  color: white;
}
.page-header h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}
.page-header p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Solution Card */
.solution-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.solution-card-header {
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}
.solution-card-header h3 { font-size: 1.3rem; font-weight: 700; }
.solution-card-body { padding: 2rem; }
.solution-card-body p { color: var(--text-light); margin-bottom: 1rem; }
.solution-card-body ul { list-style: none; }
.solution-card-body ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}
.solution-card-body ul li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.benefit-item {
  text-align: center;
  padding: 2rem;
}
.benefit-item .benefit-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.benefit-item h4 { font-weight: 700; margin-bottom: 0.5rem; }
.benefit-item p { color: var(--text-light); font-size: 0.95rem; }

/* Service Detail Sections */
.detail-section { padding: 100px 0; }
.detail-section + .detail-section { padding-top: 0; }

.bullet-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  border-left: 4px solid var(--primary);
}
.bullet-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.bullet-box ul { list-style: none; }
.bullet-box ul li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.7;
}
.bullet-box ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.step-card .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 1.25rem;
}
.step-card h4 { font-weight: 700; margin-bottom: 0.5rem; font-size: 1.1rem; }
.step-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* Benefit cards with accent border */
.benefit-card { background: white; border-radius: var(--radius); padding: 2rem; border-left: 4px solid transparent; transition: all 0.3s ease; box-shadow: var(--shadow); }
.benefit-card:hover { border-left-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-card .card-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1rem; }
.benefit-card h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* Feature grid layout - 2 columns */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.feature-grid-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-bottom: 1px solid var(--border); transition: padding-left 0.3s ease; }
.feature-grid-item:hover { padding-left: 1.75rem; }
.feature-grid-icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.95rem; }
.feature-grid-text h4 { font-weight: 700; margin-bottom: 0.25rem; font-size: 1.05rem; }
.feature-grid-text p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Process timeline */
.process-timeline { display: flex; justify-content: space-between; position: relative; padding-top: 2rem; }
.process-timeline::before { content: ''; position: absolute; top: calc(2rem + 28px); left: 10%; right: 10%; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); z-index: 0; border-radius: 2px; }
.timeline-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; flex: 1; padding: 0 0.5rem; }
.timeline-step .step-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; margin: 0 auto; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.timeline-step h4 { margin-top: 1rem; font-weight: 700; font-size: 1.05rem; }
.timeline-step p { color: var(--text-light); font-size: 0.9rem; max-width: 200px; margin: 0.5rem auto 0; line-height: 1.6; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4col { grid-template-columns: repeat(2, 1fr); }
  .grid-3col { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
  }
  .nav-links.active .nav-link { color: var(--text); padding: 0.75rem 0; }
  .about-grid,
  .contact-grid,
  .mv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .grid-4col,
  .grid-3col,
  .card-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-timeline { flex-direction: column; align-items: flex-start; gap: 2rem; padding-left: 2.5rem; }
  .process-timeline::before { top: 0; bottom: 0; left: 28px; right: auto; width: 3px; height: 100%; }
  .timeline-step { flex-direction: row; text-align: left; gap: 1rem; }
  .timeline-step .step-num { margin: 0; flex-shrink: 0; }
  .timeline-step p { max-width: none; }
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.team-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
/* .team-card .img-placeholder {
  border-radius: 0;
  border: none;
  border-bottom: 2px dashed #cbd5e1;
  height: 250px;
  min-height: 250px;
} */
.team-card-body {
  padding: 1.5rem;
}
.team-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.team-card-body .team-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.team-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: #f1f5f9;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}
.map-placeholder i {
  font-size: 2.5rem;
  color: #94a3b8;
}

/* Business Hours */
.business-hours {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.business-hours h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.business-hours ul {
  list-style: none;
}
.business-hours ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.95rem;
}
.business-hours ul li:last-child {
  border-bottom: none;
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.9rem;
}
.breadcrumb a {
  color: var(--primary);
  transition: var(--transition);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--text-light);
  margin: 0 0.5rem;
}
.breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 9998;
  font-size: 1.2rem;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Cookie Consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.9);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 10000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 800px;
}
.cookie-banner p a {
  color: var(--primary);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-banner .btn-accept {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.cookie-banner .btn-accept:hover {
  opacity: 0.9;
}

/* Hero 2-column */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}
.legal-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--text);
}
.legal-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* WhatsApp Floating Widget */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Wave Divider */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
.wave-divider-flip {
  transform: rotate(180deg);
}

/* Stat counter animation */
.stat-value[data-target] {
  transition: none;
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .wave-divider svg { height: 30px; }
}
