/* =====================
   CSS Variables & Reset
   ===================== */
:root {
  --red: #D4294B;
  --red-light: #f87171;
  --red-pale: #fef2f4;
  --dark: #111827;
  --dark-2: #1f2937;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --gray-pale: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================
   Layout
   ===================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 20px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }

/* =====================
   Typography
   ===================== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 2.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 1.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: #b91c3c; border-color: #b91c3c; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,41,75,0.3); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: white; }
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-light);
}
.btn-outline-dark:hover { border-color: var(--dark); }
.btn-sm { padding: 5px 18px; font-size: 0.85rem; }
.btn-lg { padding: 5px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* =====================
   Header
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.logo-icon { display: flex; align-items: center; }
.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a:hover,
.main-nav a.active { color: var(--dark); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =====================
   Hero Section
   ===================== */
.hero {
  padding: 0px 0 60px;
  background: linear-gradient(135deg, #fff 60%, var(--red-pale) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title { margin-bottom: 1.2rem; }
.hero-desc {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Dashboard Visual */
.hero-dashboard {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: floatUp 0.8s ease both;
}
@keyframes floatUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
.dashboard-header {
  background: var(--gray-pale);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.d-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}
.d-controls { display: flex; gap: 6px; }
.d-controls span {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-light);
}
.dashboard-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.chart-area { grid-column: 1 / -1; }
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 8px;
  background: var(--gray-pale);
  border-radius: var(--radius-sm);
}
.bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--red) 0%, #f87171 100%);
  border-radius: 4px 4px 0 0;
  animation: growUp 1s ease both;
}
.bar:nth-child(even) { background: linear-gradient(180deg, #fca5a5 0%, var(--gray-light) 100%); }
@keyframes growUp {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); }
}
.metric-cards { display: flex; flex-direction: column; gap: 8px; }
.metric-card {
  background: var(--gray-pale);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
}
.metric-card.accent { background: var(--red-pale); }
.metric-val { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--dark); }
.metric-lbl { font-size: 0.7rem; color: var(--gray); }
.donut-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-pale);
  border-radius: var(--radius-sm);
  padding: 12px;
}

/* =====================
   Why / Features Grid
   ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--red-light); }
.feature-icon {
  width: 60px; height: 60px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.feature-card h3 {
    padding-bottom: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid #d4294b59;
}
.feature-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.5; }

/* =====================
   Services Preview
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); border-color: var(--red); transform: translateY(-4px); }
.service-icon {
  width: 100%; height: 64px;
  background: var(--red-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.service-card h3 {
    padding-bottom: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid #d4294b59;
}
.service-card p { color: var(--gray); font-size: 0.8rem; line-height: 1.5; }

/* =====================
   Services Detail Grid
   ===================== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-detail-card {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */
  text-align: center;  
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow); border-color: var(--red); }
.sdc-icon {
  width: 80%; height: 60px;
  background: var(--red-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sdc-content h3 { margin-bottom: 12px; }
.sdc-content ul li {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}
/* .sdc-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
} */

/* =====================
   Process Steps
   ===================== */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  text-align: center;
  flex: 1;
  min-width: 160px;
  padding: 0 16px;
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.process-step h4 { color: var(--red); font-size: 0.95rem; margin-bottom: 4px; }
.process-step p { color: var(--gray); font-size: 0.82rem; }
.step-arrow {
    font-size: 2.4rem;
    color: #d4294b69;
    padding-top: 14px;
    flex-shrink: 0;
}

/* =====================
   CTA Section
   ===================== */
.cta-section { background: var(--gray-pale); }
.cta-box {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
}
.cta-box h2 { margin-bottom: 12px; }
.cta-box p { color: var(--gray); margin-bottom: 28px; font-size: 1.05rem; }

/* =====================
   Page Hero (inner pages)
   ===================== */
.page-hero {
  padding: 10px 0;
  background: linear-gradient(135deg, #fff 55%, var(--red-pale) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero-content h1 { margin-bottom: 1rem; }
.page-hero-content p { color: var(--gray); margin-bottom: 1.8rem; font-size: 1rem; line-height: 1.7; }
.breadcrumb { font-size: 0.85rem; color: var(--gray); margin-bottom: 12px; }

/* Mini dashboard for service page */
.hero-dashboard.mini .dashboard-body { display: block; padding: 16px; }
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
}
.mini-bar {
  flex: 1;
  height: var(--h);
  background: var(--c);
  border-radius: 4px 4px 0 0;
  animation: growUp 1s ease both;
}

/* Team illustration (about page) */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.avatar-row { display: flex; gap: 10px; margin-bottom: 16px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c);
  opacity: 0.85;
}
.team-stat { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; }
.chart-mini { display: flex; align-items: flex-end; gap: 8px; height: 60px; }
.chart-mini div { flex: 1; border-radius: 4px; }

/* Story section */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.story-card-header {
  height: 60px;
  background: linear-gradient(90deg, var(--red) 0%, #f87171 100%);
}
.story-card-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.story-row { display: flex; align-items: center; gap: 12px; }
.story-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.story-line { height: 8px; background: var(--gray-light); border-radius: 4px; flex: 1; }
.story-line.short { max-width: 60%; }
.story-content h2 { margin-bottom: 1.5rem; }
.story-list li {
  padding: 10px 0 0px 20px;
  position: relative;
  border-bottom: 1px solid var(--gray-pale);
  font-size: 0.95rem;
  color: var(--dark-2);
}
.story-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.6rem;
  top: 14px;
}

/* MVV */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 10px;
  background: var(--white);
  text-align: center;
}
/* .mvv-card.accent { border-color: var(--red); } */
.mvv-card h3 { margin-bottom: 12px; font-size: 1.5rem; }
.mvv-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }
.values-list {
    display: flex;
    flex-direction: column;
    margin-top: 4px;
    align-items: center;
}
.values-list li { display: flex; align-items: center; font-size: 0.95rem; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow); border-color: var(--red); transform: translateY(-3px); }
.stat-icon {
  width: 52px; height: 52px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.stat-val { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--dark); }
.stat-lbl { font-size: 0.85rem; color: var(--gray); margin-top: 4px; }

/* =====================
   Contact Page
   ===================== */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info h2 { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.ci-icon {
  width: 40px; height: 40px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 0.9rem; color: var(--gray); }
.contact-item a:hover { color: var(--red); }
.follow-us { margin-top: 2rem; }
.follow-us h4 { margin-bottom: 12px; }
.social-links { display: flex; gap: 10px; }

.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.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: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Contact hero illustration */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cc-lines { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.cc-line { height: 8px; background: var(--gray-light); border-radius: 4px; }
.cc-line.long { width: 100%; }
.cc-line.medium { width: 60%; }

/* FAQ */
.faq-section { background: var(--gray-pale); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  color: var(--dark);
  gap: 12px;
}
.faq-question:hover { color: var(--red); }
.faq-icon { flex-shrink: 0; color: var(--red); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-answer p { padding: 0 24px 20px; color: var(--gray); font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* =====================
   Footer
   ===================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}
.site-footer .logo { color: var(--white); }
.site-footer .logo-text { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 16px; font-family: var(--font-heading); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.contact-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; padding: 3px 0; }
.contact-list li a { color: rgba(255,255,255,0.55); }
.contact-list li a:hover { color: var(--white); }

.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--red); color: white; }

/* Social buttons in contact info (light bg context) */
.contact-info .social-btn {
  background: var(--gray-pale);
  color: var(--gray);
}
.contact-info .social-btn:hover { background: var(--red); color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom .text-red { color: var(--red-light); }

/* =====================
   Responsive
   ===================== */
@media (max-width: 900px) {
  .hero-inner,
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-body { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .main-nav { display: none; position: fixed; inset: 68px 0 0 0; background: white; flex-direction: column; padding: 24px; z-index: 99; border-top: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0;background-color: #fff; }
  .main-nav a { display: block; padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--gray-pale); }
  .hamburger { display: flex; }
  .features-grid,
  .services-grid,
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding:0px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-btns .btn { width: auto; }
}

@media (max-width: 480px) {
  .features-grid,
  .services-grid,
  .stats-grid { grid-template-columns: 1fr; }
}





/* New CSS */

/* Title base */
.services-preview .section-title,
.how-section .section-title {
  position: relative;
}

/* left & right lines (Mobile first) */
.services-preview .section-title::before,
.services-preview .section-title::after,
.how-section .section-title::before,
.how-section .section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20%;                 /* Mobile width */
  height: 2px;
  background: #d1d5db;
  transform: translateY(-50%);
}

.services-preview .section-title::before,
.how-section .section-title::before {
  left: 0;
}

.services-preview .section-title::after,
.how-section .section-title::after {
  right: 0;
}

/* Desktop */
@media (min-width: 768px) {
  .services-preview .section-title::before,
  .services-preview .section-title::after,
  .how-section .section-title::before,
  .how-section .section-title::after {
    width: 35%;              /* Desktop width */
  }
}
/* CTA Section */

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
/* 70% content */
.cta-content {
  flex: 0 0 60%;
  max-width: 60%;
}

/* 30% image */
.cta-image {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: right;
}


/* Right Image */
.cta-image img {
  max-width: 500px;
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-image img {
    max-width: 100%;
  }
}

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

@media(max-width:900px){
  .mvv-grid{ grid-template-columns:1fr; }
}

.service-style{
  position:relative;
  background:#fff;
  padding:60px 35px 45px;
  text-align:center;
  border:2px solid #ef4444;
}

/* horizontal line effect (left + right) */
.service-style::before,
.service-style::after{
  content:"";
  position:absolute;
  top:35px;
  width:120px;
  height:2px;
  background:#ef4444;
}

.service-style::before{ left:-120px; }
.service-style::after{ right:-120px; }

.card-icon{
  position:absolute;
  top:-28px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  padding:10px 14px;
  border:2px solid #ef4444;
  border-radius:10px;
}

.card-icon svg{
  width:32px;
  height:32px;
}

/* ===== Privacy Section ===== */
.privacy-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 100px 20px;
}

.privacy-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== Page Title ===== */
.page-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #0f172a;
  position: relative;
}

.page-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #b91c3c;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ===== Intro Text ===== */
.intro-text {
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 60px;
}

/* ===== Section Headings ===== */
.privacy-section h2 {
  font-size: 24px;
  margin-top: 50px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #0f172a;
  border-left: 4px solid #b91c3c;
  padding-left: 12px;
}

.privacy-section h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1e293b;
}

/* ===== Paragraph ===== */
.privacy-section p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===== Lists ===== */
.policy-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-list li {
  margin-bottom: 10px;
  color: #334155;
  position: relative;
  padding-left: 10px;
}

.policy-list li::marker {
  color: #b91c3c;
}

/* ===== Card Style Sections ===== */
.privacy-section h2,
.privacy-section p,
.policy-list {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

/* Remove background from main title & intro */
.page-title,
.intro-text {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ===== Contact Section Special Style ===== */
.privacy-section strong {
  color: #b91c3c;
}

/* ===== Thank You Text ===== */
.thank-you {
  margin-top: 60px;
  text-align: center;
  font-weight: 600;
  color: #0f172a;
  font-size: 18px;
}

/* ===== Animation ===== */
.animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.animate:nth-child(1) { animation-delay: 0.1s; }
.animate:nth-child(2) { animation-delay: 0.2s; }
.animate:nth-child(3) { animation-delay: 0.3s; }
.animate:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .privacy-section {
    padding: 70px 15px;
  }

  .page-title {
    font-size: 32px;
  }

  .privacy-section h2 {
    font-size: 20px;
  }
}