/* Akman Auto — Yellow Insurance Theme */
:root {
  --primary: #F5B800;
  --primary-dark: #D99E00;
  --primary-light: #FFF3CC;
  --secondary: #1B2337;
  --accent: #FFE066;
  --text: #2D3748;
  --text-muted: #64748B;
  --bg-cream: #FFFBF5;
  --white: #FFFFFF;
  --danger: #E53E3E;
  --success: #38A169;
  --shadow: 0 10px 40px rgba(27, 35, 55, 0.08);
  --shadow-lg: 0 20px 60px rgba(27, 35, 55, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.3; color: var(--secondary); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-dark { background: var(--secondary); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-light { background: var(--white); }
.section-cream { background: var(--bg-cream); }
.section-yellow { background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-dark .section-label { background: rgba(245, 184, 0, 0.2); color: var(--accent); }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.75); }

/* Top Bar */
.top-bar {
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  padding: 10px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar a { color: var(--primary); }
.top-bar a:hover { color: var(--accent); }

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo img { height: 44px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary-dark); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--secondary);
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--secondary);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 184, 0, 0.5);
}
.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary-dark);
}
.btn-outline:hover { background: var(--primary); color: var(--secondary); }
.btn-dark {
  background: var(--secondary);
  color: var(--white);
}
.btn-dark:hover { background: #2a3548; transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--secondary);
}
.btn-white:hover { background: var(--primary-light); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--primary-light) 50%, var(--bg-cream) 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-blob-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.hero-blob-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-content h1 span { color: var(--primary-dark); }
.hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 28px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-feature svg { color: var(--primary-dark); flex-shrink: 0; }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 400px; object-fit: cover; }
.hero-image-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-image-badge strong { font-size: 1.5rem; color: var(--primary-dark); display: block; }
.hero-image-badge span { font-size: 0.8rem; color: var(--text-muted); }

/* Quote Form Card */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
}
.quote-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.quote-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.2);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--danger); }
.form-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.form-checkbox input { width: auto; margin-top: 4px; accent-color: var(--primary); }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success svg { color: var(--success); margin-bottom: 16px; }
.form-success h3 { color: var(--success); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }
.form-wrapper.success .form-fields { display: none; }
.shake { animation: shake 0.4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}
.stat-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-5px); }
.stat-number { font-size: 2.2rem; font-weight: 700; color: var(--primary-dark); font-family: var(--font-heading); }
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }

/* About Block */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img { width: 100%; height: 450px; object-fit: cover; }
.about-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  background: var(--primary);
  border-radius: var(--radius);
  z-index: -1;
}
.about-content h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 20px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }
.check-list { margin: 24px 0; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
}
.check-list svg { color: var(--primary-dark); flex-shrink: 0; }
.progress-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.progress-item label { font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; display: block; }
.progress-bar {
  height: 8px;
  background: #E2E8F0;
  border-radius: 50px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 50px;
  width: 0;
  transition: width 1.5s ease;
}

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-8px); }
.step-number {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
}
.step-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-card:hover { background: rgba(245, 184, 0, 0.1); border-color: var(--primary); }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--secondary);
}
.feature-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.service-link {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.featured {
  border: 3px solid var(--primary);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-price { font-size: 2.5rem; font-weight: 700; color: var(--primary-dark); margin: 16px 0; font-family: var(--font-heading); }
.pricing-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-features { text-align: left; margin: 24px 0; }
.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #F0F0F0;
}
.pricing-features svg { color: var(--primary-dark); flex-shrink: 0; }

/* Testimonials */
.testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slides { display: flex; transition: transform 0.5s ease; }
.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}
.testimonial-slide p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.8;
}
.testimonial-author { font-weight: 600; color: var(--secondary); }
.testimonial-role { font-size: 0.875rem; color: var(--text-muted); }
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.testimonial-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #CBD5E0;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.testimonial-dot.active { background: var(--primary); }

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--secondary) 0%, #2a3548 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,184,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.75); }

/* Partners */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.6;
}
.partner-item {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #2a3548 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--accent); }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
}
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); color: var(--primary-dark); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #F0F0F0;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.contact-form-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.legal-content h2 { font-size: 1.5rem; margin: 36px 0 16px; padding-top: 20px; border-top: 1px solid #E2E8F0; }
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1.15rem; margin: 24px 0 12px; }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: 14px; font-size: 0.95rem; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content ol { list-style: decimal; padding-left: 24px; margin-bottom: 16px; }
.legal-updated { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 30px; }

/* Subscribe Pages */
.form-page-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.form-page-card h2 { margin-bottom: 12px; }
.form-page-card > p { color: var(--text-muted); margin-bottom: 28px; }
.form-page-card .form-fields { text-align: left; }

/* Footer */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-about p { font-size: 0.9rem; line-height: 1.8; margin-top: 16px; }
.footer-about .logo img { height: 40px; filter: brightness(0) invert(1); }
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--primary);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 6px; }
.footer-email { color: var(--primary); font-weight: 500; }
.footer-email:hover { color: var(--accent); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--primary); color: var(--secondary); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.875rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }

/* Content blocks */
.content-block { margin-bottom: 40px; }
.content-block h3 { margin-bottom: 12px; }
.content-block p { color: var(--text-muted); margin-bottom: 12px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.value-card h4 { margin: 16px 0 10px; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

.service-detail { margin-bottom: 60px; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail img { border-radius: var(--radius-lg); width: 100%; height: 320px; object-fit: cover; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .pricing-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1001;
  }
  .main-nav.open { right: 0; }
  .menu-toggle { display: block; z-index: 1002; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }
  .stats-row, .services-grid, .pricing-grid, .steps-grid, .features-grid, .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-content { padding: 30px 20px; }
  .form-page-card { padding: 32px 24px; }
  .hero { padding: 50px 0 70px; }
  .hero-image img { height: 280px; }
  .progress-bars { grid-template-columns: 1fr; }
}
