/* =========================================================
   AC SERVICE POINT — MAIN STYLESHEET
   Converted from the original React/Tailwind build.
   Colors, fonts, spacing and layout match the original design.
   ========================================================= */

@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700|Source+Sans+Pro:300,400,600');

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Theme variables ---------- */
:root {
  --primary: #1a73e8;
  --primary-50: #e8f0fe;
  --primary-100: #d2e3fc;
  --primary-200: #a8c7fa;
  --primary-600: #1557b0;
  --primary-700: #11438a;
  --primary-800: #0d3368;
  --primary-900: #08204a;

  --accent: #ff6b35;
  --accent-600: #e85420;

  --darkgray: #2b2b2b;
  --dark: #1a1a1a;

  --text-body: #555;
  --text-heading: #333;
  --text-muted: #6b7280;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans Pro', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.3;
}

/* ---------- Layout helpers ---------- */
.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container-custom { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-custom { padding: 0 2rem; } }

.section-padding { padding: 4rem 0; }

.text-shadow { text-shadow: 0 2px 8px rgba(0,0,0,0.3); }

/* ---------- Buttons ---------- */
.btn-primary,
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.875rem;
}
.btn-primary { background: var(--primary); }
.btn-primary:hover { background: var(--primary-600); box-shadow: 0 10px 20px rgba(26,115,232,0.25); }
.btn-accent { background: var(--accent); }
.btn-accent:hover { background: var(--accent-600); box-shadow: 0 10px 20px rgba(255,107,53,0.25); }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header { width: 100%; }

.top-bar {
  background: var(--darkgray);
  color: #fff;
  padding: 0.75rem 0;
}
.top-bar .container-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-logo {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.brand-name { font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 1.125rem; line-height: 1; display: block; }
.brand-tag { font-size: 0.75rem; color: #9ca3af; }
.top-bar .phones { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.top-bar .phones a { color: #fff; transition: color 0.2s; }
.top-bar .phones a:hover { color: var(--primary); }
.top-bar .phones .sep { color: #6b7280; }
.icon-inline { width: 16px; height: 16px; vertical-align: -3px; margin-right: 2px; }

.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar.is-sticky { position: sticky; top: 0; z-index: 500; }
.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-heading);
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links > li { position: relative; }
.nav-links a, .nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #374151;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links > li > button:hover { color: var(--primary); }
.nav-links a.active, .nav-links > li.active > button { color: var(--primary); }
.chevron { width: 14px; height: 14px; transition: transform 0.2s; }
.dropdown.open .chevron { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-radius: 0 0 6px 6px;
  min-width: 260px;
  padding: 0.5rem 0;
  z-index: 50;
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  text-transform: none;
  font-weight: 400;
  color: #374151;
}
.dropdown-menu li a:hover { background: #f9fafb; color: var(--primary); }
.dropdown-menu li a.active { color: var(--primary); background: var(--primary-50); }

.menu-toggle {
  display: flex;
  padding: 0.5rem;
  color: #374151;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-menu { display: none; background: #fff; border-top: 1px solid #e5e7eb; }
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu > ul { padding: 0.5rem 0; }
.mobile-menu > ul > li > a,
.mobile-menu .mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #374151;
}
.mobile-menu .mobile-dropdown-toggle .chevron { width: 16px; height: 16px; }
.mobile-submenu { display: none; background: #f9fafb; padding-left: 1rem; }
.mobile-submenu.open { display: block; }
.mobile-submenu li a { display: block; padding: 0.65rem 1rem; font-size: 0.875rem; color: #4b5563; }
.mobile-menu a.active { color: var(--primary); }

/* ==========================================================
   HERO SLIDER (Home page)
   ========================================================== */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero-slider { height: 600px; } }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.9), rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.5));
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-content .container-custom { width: 100%; }
.hero-text { max-width: 42rem; }
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(26,115,232,0.9);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
.hero-title .accent-text { color: var(--primary); }
.hero-desc { font-size: 1.125rem; color: #e5e7eb; margin-bottom: 2rem; max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.875rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-outline-white:hover { background: #fff; color: var(--dark); }
.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.slider-dots button {
  height: 8px; width: 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.slider-dots button.active { width: 32px; background: var(--primary); }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--primary); padding: 2.5rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-grid .stat-value { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .stats-grid .stat-value { font-size: 2.25rem; } }
.stats-grid .stat-label { font-size: 0.875rem; color: var(--primary-100); text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- Section headers ---------- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-kicker {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-title .accent-text { color: var(--primary); }
.section-sub { color: var(--text-muted); max-width: 42rem; margin: 0 auto; }

.bg-light { background: #f9fafb; }

/* ---------- Service cards (home grid) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.service-card .thumb { position: relative; height: 13rem; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .thumb img { transform: scale(1.1); }
.service-card .thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.6), transparent 60%);
}
.service-card .thumb-icon {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.service-card .card-body { padding: 1.25rem; }
.service-card .card-body h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; transition: color 0.2s; }
.service-card:hover .card-body h3 { color: var(--primary); }
.service-card .card-body p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }
.read-more {
  display: inline-flex; align-items: center; gap: 0.25rem;
  color: var(--primary); font-weight: 600; font-size: 0.875rem;
  transition: gap 0.2s;
}
.read-more:hover { gap: 0.5rem; }
.read-more svg { width: 16px; height: 16px; }

/* ---------- Feature cards (Why Choose Us) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}
.feature-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: var(--primary-200); }
.feature-icon {
  width: 64px; height: 64px;
  background: var(--primary-50);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.feature-icon svg { width: 32px; height: 32px; }
.feature-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ---------- About preview / two-column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .two-col { grid-template-columns: repeat(2, 1fr); } }
.two-col img { border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); width: 100%; height: auto; object-fit: cover; }
.two-col p { color: var(--text-muted); margin-bottom: 1rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--darkgray); padding: 3rem 0; }
.cta-band .container-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .cta-band .container-custom { flex-direction: row; text-align: left; } }
.cta-band h2 { color: #fff; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .cta-band h2 { font-size: 1.875rem; } }
.cta-band p { color: #9ca3af; font-size: 0.875rem; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: var(--dark); color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid h4 { color: #fff; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 1rem; }
.footer-about p { color: #9ca3af; font-size: 0.875rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: #9ca3af; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-services li { color: #9ca3af; font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.875rem; color: #9ca3af; }
.footer-contact svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: #9ca3af; transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid #374151; padding: 1rem 0; }
.footer-bottom p { text-align: center; font-size: 0.875rem; color: #9ca3af; }

/* ==========================================================
   PAGE HEADER (About / Contact / Services / Service detail)
   ========================================================== */
.page-header { text-align: center; }
.page-header-bg {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
}
.page-header-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: none;
}
.page-header-bg .container-custom { position: relative; z-index: 1; }
.page-header-bg h1 { font-size: 2.25rem; font-weight: 700; color: #fff; }
@media (min-width: 768px) { .page-header-bg h1 { font-size: 3rem; } }
.breadcrumb-bar { background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.breadcrumb-bar .container-custom { padding: 0.75rem 1rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { width: 12px; height: 12px; color: #9ca3af; }
.breadcrumb .current { color: var(--primary); font-weight: 600; }

/* ==========================================================
   ABOUT PAGE
   ========================================================== */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .why-choose-grid { grid-template-columns: repeat(3, 1fr); } }
.why-choose-card {
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
  text-align: center;
  transition: all 0.3s ease;
}
.why-choose-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: var(--primary-200); }
.why-choose-card .feature-icon { width: 56px; height: 56px; }
.why-choose-card .feature-icon svg { width: 28px; height: 28px; }

.stats-card { margin-top: 3rem; background: var(--primary); border-radius: 8px; padding: 2rem; }
.stats-card .stats-grid .stat-label { color: var(--primary-100); }

.need-repair { margin-top: 3rem; text-align: center; }
.need-repair p { max-width: 48rem; margin: 0 auto 1.5rem; color: var(--text-muted); }

/* ==========================================================
   SERVICE DETAIL PAGES
   ========================================================== */
.service-intro { max-width: 56rem; margin: 0 auto; }
.service-intro h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .service-intro h2 { font-size: 2.25rem; } }
.service-intro > p { color: var(--text-muted); margin-bottom: 1rem; }

.problems-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}
@media (min-width: 768px) { .problems-block { grid-template-columns: repeat(2, 1fr); } }
.problems-block strong { display: block; font-weight: 600; color: #374151; margin-bottom: 1rem; }
.problem-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.problem-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }
.problems-image { border-radius: 8px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.problems-image img { width: 100%; height: 100%; object-fit: cover; }

.inline-cta {
  margin-top: 2rem;
  background: var(--primary-50);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.inline-cta p { font-weight: 600; color: #374151; margin-bottom: 1rem; }

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px)  { .extra-services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .extra-services-grid { grid-template-columns: repeat(4, 1fr); } }
.mini-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.mini-card .thumb { height: 12rem; overflow: hidden; }
.mini-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mini-card:hover .thumb img { transform: scale(1.1); }
.mini-card .card-body { padding: 1rem; text-align: center; }
.mini-card .card-body h3 { font-size: 0.875rem; font-weight: 600; transition: color 0.2s; }
.mini-card:hover .card-body h3 { color: var(--primary); }

/* ==========================================================
   SERVICES OVERVIEW PAGE
   ========================================================== */
.services-overview-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .services-overview-list { grid-template-columns: repeat(2, 1fr); } }
.overview-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.overview-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.overview-card .thumb { height: 14rem; overflow: hidden; }
.overview-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.overview-card:hover .thumb img { transform: scale(1.08); }
.overview-card .card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.overview-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.overview-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; flex: 1; }

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-info h2, .contact-form h2 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.contact-info ul li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info .icon-circle {
  width: 48px; height: 48px;
  background: var(--primary-50);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info .icon-circle svg { width: 24px; height: 24px; color: var(--primary); }
.contact-info strong { display: block; font-family: var(--font-heading); color: #374151; margin-bottom: 0.25rem; }
.contact-info p, .contact-info a { font-size: 0.875rem; color: var(--text-muted); }
.contact-info a:hover { color: var(--primary); }

.form-field { margin-bottom: 1rem; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 2px;
  font-size: 0.875rem;
  font-family: var(--font-body);
}
.form-field textarea { resize: none; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); }
.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  display: none;
}
.form-success.show { display: block; }
.form-success p { color: #16a34a; font-weight: 600; font-size: 1.125rem; }

/* ==========================================================
   FLOATING BUTTONS
   ========================================================== */
.float-whatsapp {
  position: fixed;
  width: 55px; height: 55px;
  bottom: 30px; right: 30px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  transition: all 0.3s ease;
}
.float-whatsapp svg { width: 28px; height: 28px; }
.float-whatsapp:hover { background: #128c7e; transform: scale(1.1); }

.back-to-top {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 45px; height: 45px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  transition: all 0.3s ease;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--primary-600); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================
   ENQUIRY MODAL
   ========================================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.modal-header h4 { font-size: 1.125rem; font-weight: 600; }
.modal-close { color: #6b7280; }
.modal-close svg { width: 20px; height: 20px; }
.modal-body { padding: 1rem 1.5rem; }
.modal-body select {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 2px;
  font-size: 0.875rem;
  color: #4b5563;
  font-family: var(--font-body);
}
.modal-body select:focus, .modal-body input:focus { outline: none; border-color: var(--primary); }
.modal-submit {
  width: 100%;
  padding: 0.65rem 0;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.875rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.modal-submit:hover { background: var(--accent-600); }
.modal-footer { padding: 0.75rem 1.5rem; border-top: 1px solid #e5e7eb; }
.modal-cancel {
  width: 100%;
  padding: 0.5rem 0;
  border: 1px solid #d1d5db;
  border-radius: 2px;
  color: #4b5563;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.modal-cancel:hover { background: #f9fafb; }
.modal-success { padding: 3rem 1.5rem; text-align: center; display: none; }
.modal-success.show { display: block; }
.modal-success p { color: #16a34a; font-weight: 600; font-size: 1.125rem; }

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-fade-in { animation: fadeIn 0.8s ease-out forwards; }
.animate-slide-in-left { animation: slideInLeft 0.6s ease-out forwards; }
.animate-slide-in-right { animation: slideInRight 0.6s ease-out forwards; }

/* ========================= GIRL CALL BUTTON ON LEFT SIDE ========================= */
.support-call-btn {
  position: fixed;
  bottom: 25px; /* स्क्रीन के नीचे बाईं ओर */
  left: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: bounce-call 2s infinite;
}

.support-call-btn:hover {
  transform: scale(1.1);
}

.support-img-wrapper {
  width: 52px;  
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid #28a745; /* हरा बॉर्डर */
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
  background-color: #ffffff;
}

.support-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Call Now वाला छोटा बैज */
.call-now-badge {
  margin-top: -10px;
  background-color: #28a745;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  letter-spacing: 0.5px;
}

@keyframes bounce-call {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* मोबाइल के लिए */
@media (max-width: 768px) {
  .support-call-btn {
    bottom: 20px;
    left: 15px;
  }
  .support-img-wrapper {
    width: 48px;
    height: 48px;
  }
  .call-now-badge {
    font-size: 9px;
    padding: 2px 6px;
  }
}
