@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
  --primary: #f97316; /* orange-500 */
  --secondary: #fb923c; /* orange-400 */
  --accent: #fb923c;
  /* rgb fallbacks for rgba usages */
  --primary-rgb: 249, 115, 22; /* rgb(249,115,22) */
  --secondary-rgb: 251, 146, 60; /* rgb(251,146,60) */
  --dark: #0f172a;
  --light: #ffffff;
  --muted: #64748b;
  --text-dark: #1e293b;
  --text-light: #f1f5f9;
  --border: #e2e8f0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.6);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--text-dark);
  transition: 0.3s ease;
  overflow-x: hidden;
}

body.dark {
  background: #000000;
  color: var(--text-light);
}

/* dark mode uses black background with orange accents */
body.dark {
  --primary: #f97316; /* orange-500 */
  --secondary: #fb923c; /* orange-400 */
  --primary-rgb: 249, 115, 22;
  --secondary-rgb: 251, 146, 60;
  --dark: #000000;
}

body.dark header {
  background: #000000;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

body.dark .logo {
  background: linear-gradient(90deg, #ffffff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

body.dark nav a {
  color: var(--text-light);
}

body.dark nav a:hover {
  color: var(--primary);
}

body.dark .hero {
  background: linear-gradient(to bottom, #000000 0%, #0b0b0b 100%);
}

body.dark .hero h1 {
  color: var(--text-light);
}

body.dark .hero p {
  color: #94a3b8;
}

/* central wrapper similar to Twicsy layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6%;
  background: var(--light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.logo {
  font-family: 'Idiqlat', Inter, system-ui, sans-serif;
  font-weight: 300;
  font-size: 22px;
  text-transform: none;
  flex-shrink: 0;
  white-space: nowrap;
  background: linear-gradient(90deg, #c2410c, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: none !important;
  cursor: pointer;
}
a.logo, a.logo:hover, a.logo:visited, a.logo:focus {
  text-decoration: none !important;
  outline: none;
  -webkit-text-decoration: none !important;
}
a.logo::after, a.logo::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}

header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
  padding: 6px 12px;
  white-space: nowrap;
  display: inline-block;
}

body.dark nav a {
  color: var(--text-light);
}

nav a:not([onclick])::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav a:not([onclick]):hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--primary);
}

nav a[onclick] {
  font-size: 18px;
  cursor: pointer;
  padding: 6px 8px;
  animation: float 3s ease-in-out infinite;
}

.hero {
  position: relative;
  padding: 36px 6%;
  text-align: center;
  overflow: hidden;
  background: #f8fafc;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(var(--primary-rgb), 0.15),
    transparent
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite 1s;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--text-dark);
  animation: fadeInUp 1s ease;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.hero p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 18px;
  animation: fadeInUp 1.2s ease;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.btn-primary {
  padding: 12px 32px;
  background: var(--primary);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

.section {
  padding: 40px 8%;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-weight: 800;
  position: relative;
  padding-bottom: 12px;
  line-height: 1.2;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.features,
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 18px;
}

/* stats section used on home page */
.stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.stat-card {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.8s ease;
}

.stat-card h3 {
  font-size: 48px;
  color: var(--primary);
}

.stat-card p {
  margin-top: 10px;
  color: var(--muted);
}

/* service list on products page */
.service-list {
  text-align: left;
  max-width: 800px;
  margin: 40px auto 0 auto;
  font-size: 18px;
}

.service-list li {
  margin: 10px 0;
}

/* contact info list on contact page */
.contact-info {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.contact-info li {
  margin: 8px 0;
}

.feature-card,
.price-card {
  padding: 24px 20px;
  border-radius: 12px;
  background: var(--light);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.feature-card::before,
.price-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover,
.price-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.2);
}

.feature-card:hover::before,
.price-card:hover::before {
  opacity: 1;
}

body.dark .feature-card,
body.dark .price-card {
  background: #1e293b;
  border-color: rgba(var(--primary-rgb), 0.25);
}

body.dark .feature-card:hover,
body.dark .price-card:hover {
  background: #334155;
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.25);
}

body.dark .feature-card h3,
body.dark .price-card h3 {
  color: var(--primary);
}

body.dark .feature-card p,
body.dark .price-card p {
  color: #cbd5e1;
}

body.dark .price {
  color: var(--primary);
}

.feature-card h3,
.price-card h3 {
  font-size: 24px;
  margin: 15px 0;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--muted);
  font-size: 16px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
  display: block;
}

.price {
  font-size: 52px;
  margin: 25px 0;
  color: var(--primary);
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.price::before {
  content: '₹';
  font-size: 28px;
  vertical-align: super;
}

.price-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.1),
    rgba(6, 182, 212, 0.05)
  );
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.1) translateY(-15px);
  box-shadow: 0 30px 60px rgba(var(--primary-rgb), 0.4);
}

.whatsapp-btn {
  display: inline-block;
  background: #128c4a;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(18, 140, 74, 0.35);
}

.whatsapp-btn:hover {
  background: #0e6e3a;
  transform: translateY(-2px);
}

/* Hero Content Styling */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 18px !important;
  line-height: 1.6;
  color: var(--muted) !important;
  margin-bottom: 18px !important;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.btn-secondary {
  padding: 12px 26px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 6px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  background: var(--primary);
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-small:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 48px;
  font-size: 18px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}

.stat-badge {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
}

/* Process Grid */
.how-it-works {
  background: #f9fafb;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.process-card {
  padding: 28px 22px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.process-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin: 15px 0;
  font-weight: 700;
}

.process-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.process-icon {
  font-size: 48px;
  margin-top: 20px;
}

/* Benefits Grid */
.why-us {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.benefit-card {
  padding: 20px 18px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.12);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

.benefit-card h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin: 10px 0 6px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Services Grid */
.services-highlight {
  background: #f9fafb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
  align-items: stretch;
}

.service-box {
  padding: 24px 20px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.12);
}

.service-box h3 {
  font-size: 18px;
  color: var(--primary);
  margin: 0 0 16px 0;
  font-weight: 700;
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  text-align: left;
  flex-grow: 1;
}

.service-box li {
  padding: 8px 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
}

.service-box li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.service-box li:last-child {
  border-bottom: none;
}

.service-box .btn-small {
  align-self: center;
  margin-top: auto;
  margin-bottom: 0;
  padding: 8px 18px;
  width: auto;
  min-width: 120px;
}

/* Testimonials Grid */
.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.testimonial-card {
  padding: 18px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 80px;
  color: rgba(var(--primary-rgb), 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.12);
  border-color: var(--primary);
}

.stars {
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
}

.testimonial-text {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  margin: 0;
}

.verified {
  font-size: 12px;
  color: #10b981;
  font-style: normal;
  margin-left: 8px;
}

body.dark .how-it-works,
body.dark .services-highlight {
  background: linear-gradient(to bottom, #1e293b 0%, #0f172a 100%);
}

body.dark .why-us {
  background: #1e293b;
}

body.dark .testimonials {
  background: linear-gradient(to bottom, #1e293b 0%, #0f172a 100%);
}

body.dark .process-card,
body.dark .benefit-card,
body.dark .service-box {
  background: #1e293b;
  border-color: rgba(var(--primary-rgb), 0.25);
}

body.dark .process-card:hover,
body.dark .benefit-card:hover,
body.dark .service-box:hover {
  background: #334155;
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.25);
}

body.dark .process-card h3,
body.dark .benefit-card h3,
body.dark .service-box h3 {
  color: var(--primary);
}

body.dark .process-card p,
body.dark .benefit-card p,
body.dark .service-box p {
  color: #cbd5e1;
}

body.dark .service-box li {
  color: #cbd5e1;
  border-bottom-color: rgba(var(--primary-rgb), 0.15);
}

body.dark .service-box li::before {
  color: #10b981;
}

body.dark .testimonial-card {
  background: #1e293b;
  border-color: rgba(var(--primary-rgb), 0.25);
}

body.dark .testimonial-card:hover {
  background: #334155;
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.25);
}

body.dark .testimonial-text {
  color: #cbd5e1;
}

body.dark .testimonial-author {
  color: var(--primary);
}

body.dark .section {
  color: var(--text-light);
}

body.dark .section h2 {
  color: var(--text-light);
}

body.dark .section-subtitle {
  color: #94a3b8;
}

body.dark .btn-small {
  background: var(--primary);
  color: white;
}

body.dark .btn-small:hover {
  background: var(--secondary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white !important;
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content h2::after {
  background: rgba(255, 255, 255, 0.8);
}

.cta-content p {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.cta-content .btn-primary {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

.cta-content .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

body.dark .cta-section {
  background: linear-gradient(135deg, #c2410c 0%, var(--primary) 100%);
}

body.dark .cta-content .btn-primary {
  background: white;
  color: var(--primary);
}

body.dark .cta-content .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  animation: fadeInUp 1s ease;
  padding: 40px 8%;
}

body.dark footer {
  background: #000000;
  border-top-color: rgba(var(--primary-rgb), 0.15);
}

body.dark .footer-section p,
body.dark .footer-section a {
  color: #94a3b8;
}

body.dark .footer-section a:hover {
  color: var(--primary);
}

body.dark .footer-bottom {
  color: #64748b;
  border-top-color: rgba(var(--primary-rgb), 0.08);
}

body.dark .social-links a {
  background: rgba(var(--primary-rgb), 0.12);
  border-color: rgba(var(--primary-rgb), 0.2);
  color: #cbd5e1;
}

body.dark .social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--text-dark);
  font-size: 16px;
  margin: 0 0 15px 0;
  font-weight: 700;
}

body.dark .footer-section h4 {
  color: var(--text-light);
}

.footer-section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
  margin: 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin: 8px 0;
}

.footer-section a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-section a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-block;
  padding: 8px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

body.dark .social-links a {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

@keyframes ripple-effect {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.btn-primary,
.btn-secondary,
.btn-small {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

body.dark .hamburger span {
  background: var(--text-light);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light);
    flex-direction: column;
    padding: 16px 6%;
    gap: 4px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 999;
  }

  body.dark nav {
    background: #000000;
    border-top-color: rgba(var(--primary-rgb), 0.1);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
  }

  body.dark nav a {
    border-bottom-color: rgba(var(--primary-rgb), 0.1);
  }

  nav a:last-child {
    border-bottom: none;
  }

  .hero {
    padding: 28px 4%;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 15px !important;
    margin-bottom: 30px !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 24px !important;
  }

  .stat-label {
    font-size: 12px;
  }

  .section {
    padding: 28px 4%;
  }

  .section h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .process-grid,
  .benefits-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-card,
  .benefit-card,
  .service-box,
  .testimonial-card {
    padding: 14px 12px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }

  .process-icon,
  .benefit-icon {
    font-size: 36px;
  }

  .service-box h3,
  .benefit-card h3,
  .process-card h3 {
    font-size: 18px;
  }

  .service-box li {
    font-size: 14px;
    padding: 8px 0;
  }

  .cta-content h2 {
    font-size: 28px !important;
    margin-bottom: 15px;
  }

  .cta-content p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    padding: 6px 10px;
    font-size: 12px;
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* Force 4 columns on wide screens so four service boxes align horizontally */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  .service-box {
    height: 100%;
  }
}

/* ── FAQ Section ── */
.faq-section {
  background: #fff7ed;
}

.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(249,115,22,0.10);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 0.92rem;
    padding: 16px 18px;
  }
  .faq-answer {
    padding: 0 18px;
  }
  .faq-answer.open {
    padding: 0 18px 16px;
  }
}

/* =========================================
   BLOG STYLES
   ========================================= */

/* Blog Hero */
.blog-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  color: var(--light);
  text-align: center;
  padding: 80px 5% 60px;
}
.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--light);
}
.blog-hero h1 span {
  color: var(--primary);
}
.blog-hero p {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}
.blog-hero--small {
  padding: 60px 5% 40px;
}
.blog-hero--small h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

/* Blog Section */
.blog-section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

/* Blog Card */
.blog-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.15);
}
body.dark .blog-card {
  background: #1e293b;
  border-color: #334155;
}

.blog-card-thumb {
  font-size: 3rem;
  text-align: center;
  padding: 32px 20px 24px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  line-height: 1;
}
body.dark .blog-card-thumb {
  background: #0f172a;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-tag {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-tag a {
  color: var(--primary);
  text-decoration: none;
}
.blog-tag a:hover {
  text-decoration: underline;
}
body.dark .blog-tag {
  background: #431407;
  border-color: #7c2d12;
}

.blog-date {
  font-size: 0.82rem;
  color: var(--muted);
}

.blog-card-body h2 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text-dark);
}
body.dark .blog-card-body h2 {
  color: var(--text-light);
}
.blog-card-body h2 a {
  color: inherit;
  text-decoration: none;
}
.blog-card-body h2 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}
.blog-read-more:hover {
  gap: 10px;
}

/* Pagination */
.pagination {
  text-align: center;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.pagination a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.pagination a:hover {
  background: var(--primary);
  color: #fff;
}

/* Blog CTA Section */
.blog-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
  padding: 60px 5%;
  margin-top: 20px;
}
.blog-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.blog-cta p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.92;
}
.blog-cta .btn-primary {
  background: #fff;
  color: var(--primary);
  border: none;
}
.blog-cta .btn-primary:hover {
  background: #fff7ed;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero {
    padding: 60px 5% 40px;
  }
  .blog-section {
    padding: 40px 5%;
  }
}
