@media (max-width: 480px) {
  .hero-form {
    width: 90% !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 16px 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .hero-text{
    margin: 8px;
  }
  .hero-form form {
    width: 80% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    padding: 0 !important;
  }
  .form-group {
    width: 100% !important;
    margin-bottom: 1rem !important;
    box-sizing: border-box !important;
  }
  .form-group input, .form-group select {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 12px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }
  .btn-primary {
    width: 100% !important;
    font-size: 1.1rem !important;
    padding: 14px 0 !important;
    /*border-radius: 0 0 24px 24px !important;*/
    margin-top: 8px !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #fff !important;
    text-align: center !important;
    display: block !important;
  }
  .form-header h2, .form-header p {
    text-align: center !important;
    width: 100% !important;
  }
}
/* Loading spinner overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading-overlay.active {
  display: flex;
}
.loading-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top-color: #2aa1f0;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Partner Brands Section */
.partner-brands {
  padding: 60px 0;
  background: #f9fafb;
  overflow: hidden;
}
.brands-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #1f2937;
}
.brands-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.brands-track {
  display: flex;
  gap: 3rem;
  animation: scroll-brands 30s linear infinite;
  width: fit-content;
}
.brands-track:hover {
  animation-play-state: paused;
}
.brand-logo {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.brand-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
.brand-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .partner-brands {
    padding: 40px 0;
  }
  .brands-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .brand-logo {
    width: 140px;
    height: 60px;
  }
  .brands-track {
    gap: 2rem;
    animation-duration: 20s;
  }
}

/* Enhanced mobile responsiveness for testimonial cards */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 32px;
  margin: 24px auto;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 18px 10px;
    max-width: 98vw;
    margin: 12px auto;
    border-radius: 12px;
  }
  .stars {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .testimonial-text {
    font-size: 0.98rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .testimonial-author strong {
    font-size: 1.05rem;
  }
  .testimonial-author span {
    font-size: 0.92rem;
    color: #6b7280;
  }
}
/* Responsive testimonial card improvements */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 32px;
  margin: 24px auto;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 20px;
    max-width: 95vw;
    margin: 16px auto;
    border-radius: 14px;
  }
  .stars {
    font-size: 1.2rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .testimonial-author {
    font-size: 1rem;
  }
  .testimonial-role {
    font-size: 0.9rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1f2937;
  --primary-dark: #111827;
  --secondary-color: #0ea5e9;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --spacing-unit: 8px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(22, 25, 23, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: white;
  color: #333;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* Hero section styles moved to inline styles in index.html for better control */

.hero-header {
  background: linear-gradient(135deg, #bbf7d0 0%, #22c55e 50%, #166534 100%);
  text-align: center;
  padding: 5px 12px;
  font-style: italic;
  color: rgb(0, 0, 0);
  font-size: 12px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
  margin-left: 8px;
  margin-right: 8px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.12), 0 8px 32px 0 rgba(187, 247, 208, 0.45);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.12), 0 12px 40px 0 rgba(187, 247, 208, 0.55);
}

.why-choose .cta-center .btn-primary {
  background: linear-gradient(135deg, #bbf7d0 0%, #22c55e 100%);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.12), 0 8px 32px 0 rgba(187, 247, 208, 0.45);
}

.why-choose .cta-center .btn-primary:hover {
  background: linear-gradient(135deg, #22c55e 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.12), 0 12px 40px 0 rgba(187, 247, 208, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.12), 0 8px 32px 0 rgba(187, 247, 208, 0.45);
  border-style: outset;
    border-color: black;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.12), 0 12px 40px 0 rgba(187, 247, 208, 0.55);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.125rem;
}

.cta-center {
  text-align: center;
  margin-top: 64px;
}

.hero {
  background:
    url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><rect width="100%25" height="100%25" fill="none"/><circle cx="40" cy="40" r="2" fill="%23bbf7d0" opacity="0.3"/><circle cx="80" cy="80" r="2" fill="%2322c55e" opacity="0.2"/><circle cx="120" cy="120" r="2" fill="%23166534" opacity="0.2"/></svg>') repeat,
    linear-gradient(135deg, #bbf7d0 0%, #22c55e 50%, #166534 100%);
  padding: 180px 0 100px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.benefit-item span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.hero-form {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

.hero-form .btn-primary {
  width: 100%;
  margin-top: 8px;
}

/* Flash Sale Banner */
.flash-sale-banner {
  position: relative;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  padding: 20px;
  border-radius: 12px 12px 0 0;
  margin: -40px -40px 24px -40px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
}

.flash-sale-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 65, 108, 0.4);
}

.flash-sale-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.flash-sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.flash-icon {
  font-size: 16px;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
}

.flash-text {
  color: white;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
}

.flash-sale-content {
  position: relative;
  z-index: 1;
}

.flash-sale-title {
  color: white;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px 0;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.offer-highlight {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 6px;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
  50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
}

.plus-symbol {
  font-weight: 700;
  font-size: 18px;
}

.bonus-text {
  color: #fff;
  font-size: 16px;
}

.flash-sale-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.urgency-icon {
  animation: fire 1s ease-in-out infinite;
}

@keyframes fire {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.flash-sale-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100% 0 0 0;
  transform: translate(40px, 40px);
}

.services {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.service-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  padding: 16px;
  background: linear-gradient(135deg, #bbf7d0 0%, #22c55e 100%);
  border-radius: 16px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.service-features li {
  padding: 12px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 28px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.25rem;
}

/* WhatsApp checkbox / toggle in forms */
.form-checkbox {
  display: flex;
  align-items: center;
}
.form-checkbox .checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background: white;
  /* modern browsers: use accent-color to tint native checkbox */
  accent-color: #25D366; /* WhatsApp green */
}
.form-checkbox input[type="checkbox"]:focus {
  outline: 2px solid rgba(37,211,102,0.16);
  outline-offset: 2px;
}
.form-checkbox .checkbox-label {
  font-size: 0.95rem;
  color: var(--text-dark);
}

@media (max-width: 600px) {
  .form-checkbox .checkbox-label {
    font-size: 0.95rem;
  }
}

.why-choose {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1558449028-b53a39d100fc?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=2748');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.why-choose .section-header h2,
.why-choose .section-header p {
  color: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}

.why-item {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  padding: 12px;
  background: linear-gradient(135deg, #bbf7d0 0%, #22c55e 100%);
  border-radius: 12px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary-color);
}

.why-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.why-item p {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.6;
}

.benefits {
  padding: 100px 0;
  background: white;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: linear-gradient(135deg, #bbf7d0 0%, #22c55e 100%);
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 16px;
  line-height: 1;
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.testimonials {
  padding: 100px 0;
  background: var(--bg-light);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
  display: none; /* Hidden by default, shown on mobile */
}

.carousel-arrow:hover {
  background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.carousel-arrow-left {
  left: 16px;
}

.carousel-arrow-right {
  right: 16px;
}

.carousel-container {
  display: flex;
  transition: transform 0.3s ease;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-width: 100%;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-card.active {
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background: var(--secondary-color);
}

.stars {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 1.125rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.our-work {
  padding: 100px 0;
  background: white;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.instagram-embed {
  min-height: 400px;
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
}

.instagram-media {
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.subsidy {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://plus.unsplash.com/premium_photo-1682148026899-d21f17c04e80?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=3270');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.subsidy .section-header h2,
.subsidy .section-header p {
  color: white;
}

.subsidy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.subsidy-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.subsidy-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.subsidy-list {
  list-style: none;
}

.subsidy-list li {
  padding: 12px 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.subsidy-list li::before {
  content: "₹";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.subsidy-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

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

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-button {
  background: white;
  color: #667eea;
  border: none;
  padding: 18px 40px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background: #f0f0f0;
}

.cta-button:active {
  transform: translateY(-1px);
}

.faq {
  padding: 100px 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.footer {
  background: var(--primary-dark);
  color: white;
  padding: 60px 0 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.footer-disclaimer-links,
.footer-social-icons-new {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-logo-container {
  text-align: center;
}

.footer-logo-container .logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-container .logo-img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.footer-logo-container .logo-img:hover {
  transform: scale(1.05);
}

.footer-copyright {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-disclaimer-links {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  text-align: center;
  flex: 1;
}

.footer-brand-info {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-align: center;
}

.footer-social-icons-new {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  flex: 1;
}

.footer-social-icons-new a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer-social-icons-new a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-social-icons-new svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
  .footer-container {
    gap: 32px;
  }

  .footer-disclaimer-links,
  .footer-social-icons-new {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-social-icons-new {
    flex-direction: row !important;
    justify-content: center;
  }

  .footer-social-icons-new {
    justify-content: center;
  }

  .footer {
    padding: 40px 0 30px;
    margin-top: 60px;
  }
}

/* Copyright section */
.footer + .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer + .container p {
  margin: 0;
}

@media (max-width: 480px) {
  .footer-social-icons-new {
    gap: 16px;
  }

  .footer-social-icons-new a {
    width: 40px;
    height: 40px;
  }

  .footer-social-icons-new svg {
    width: 18px;
    height: 18px;
  }

  .flash-sale-banner {
    margin: -32px -24px 20px -24px;
    padding: 16px;
  }

  .flash-sale-title {
    font-size: 16px;
    gap: 6px;
  }

  .offer-highlight {
    font-size: 15px;
    padding: 3px 10px;
  }

  .bonus-text {
    font-size: 14px;
  }

  .flash-sale-subtitle {
    font-size: 12px;
  }
}

.global-cta {
  padding: 40px 0 32px 0;
  background: white;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  color: white;
}

.global-cta .cta-center {
  text-align: center;
  margin-top: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(34, 197, 94, 0.08);
  z-index: 1000;
  padding: 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
   transition: box-shadow 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.12);
}

.navbar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #22c55e;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  z-index: 1100;
  position: relative;
}

.navbar-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.navbar-toggle .bar:nth-child(1) {
  transform: translateY(-7px);
}
.navbar-toggle .bar:nth-child(2) {
  transform: translateY(0);
}
.navbar-toggle .bar:nth-child(3) {
  transform: translateY(7px);
}

.navbar-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
}
.navbar-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .subsidy-grid {
    grid-template-columns: 1fr;
    margin: 0 8px;
  }

  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials carousel for mobile */
  .testimonials-carousel .carousel-container {
    transform: translateX(0);
  }

  .testimonials-carousel .testimonial-card {
    display: block; /* Show all cards for sliding */
    min-width: 100%;
    flex-shrink: 0;
  }

  .carousel-arrow {
    display: flex;
  }
}

/* Desktop: Show testimonials as grid */
@media (min-width: 769px) {
  .testimonials-carousel .carousel-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    transform: none;
  }

  .testimonials-carousel .testimonial-card {
    display: block;
    min-width: auto;
  }

  .carousel-dots {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .hero {
    padding: 120px 0 60px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-form {
    padding: 32px 24px;
  }

  .services,
  .why-choose,
  .benefits,
  .testimonials,
  .our-work,
  .subsidy,
  .faq {
    padding: 60px 0;
  }

  .cta-section {
    padding: 50px 0;
    margin: 40px 0;
  }

  .cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .navbar-content {
    flex-wrap: wrap;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-links {
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.08);
    display: none;
    padding: 24px 0;
    z-index: 1001;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links li {
    margin: 0;
    padding: 12px 0;
    text-align: center;
  }

  .navbar-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg);
  top: 50%;
  translate: 0 -50%;
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -2px);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0px;
    margin: 0 8px;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .benefits-grid {
    gap: 12px;
    padding: 12px;
  }

  .benefit-item {
    padding: 12px;
    gap: 10px;
  }

  .benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .benefit-item span {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    padding: 12px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}
