/* ============================================
   MEDI-IN — Global Stylesheet v2
   Phone: +91 89996 02537
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --blue-dark:   #063d7a;
  --blue-mid:    #0a4f8f;
  --blue-light:  #1a85d3;
  --blue-pale:   #e8f4fd;
  --green-wa:    #25D366;
  --green-logo:  #4caf1e;
  --red-accent:  #e63946;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.13);
  --transition:  0.2s ease;
}

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(22px, 4vw, 36px); }
h3 { font-size: clamp(17px, 2.5vw, 22px); }
h4 { font-size: 16px; }
p  { color: var(--text-mid); }

/* ── Containers ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ── Section Labels ── */
.label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-mid); background: var(--blue-pale);
  padding: 5px 14px; border-radius: 40px; margin-bottom: 14px;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-head p { max-width: 520px; margin: 12px auto 0; color: var(--text-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--blue-mid); color: var(--white); box-shadow: 0 4px 16px rgba(10,79,143,0.35); }
.btn-primary:hover { box-shadow: 0 6px 24px rgba(10,79,143,0.45); }
.btn-whatsapp { background: var(--green-wa); color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.btn-whatsapp:hover { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-call { background: var(--white); color: var(--blue-mid); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}

/* ── Logo with image ── */
.logo-wrap {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-img {
  width: 40px; height: 40px;
  object-fit: contain;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--blue-dark); letter-spacing: 0.5px;
  line-height: 1;
}
.logo-text span { color: var(--green-logo); }
.logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 2px;
}

/* fallback plain text logo (footer) */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--blue-dark); letter-spacing: 0.5px;
}
.logo span { color: var(--green-logo); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--blue-mid);
  transform: scaleX(0); transition: transform var(--transition); border-radius: 2px;
}
.nav-links a:hover { color: var(--blue-mid); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue-mid); }

.nav-cta {
  background: var(--green-wa); color: var(--white) !important;
  padding: 9px 18px; border-radius: 40px; font-size: 13px !important;
  display: flex; align-items: center; gap: 6px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: all 0.3s;
}
.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); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 16px 24px 20px; gap: 4px;
}
.mobile-menu a {
  padding: 12px 0; font-size: 15px; font-weight: 500;
  color: var(--text-mid); border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: var(--blue-mid); }
.mobile-menu.open { display: flex; }

/* ── Hero ── */
.hero {
  background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue-mid) 55%, var(--blue-light) 100%);
  color: var(--white); padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.04); border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.03); border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 16px; border-radius: 40px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 em { color: #90e0ff; font-style: normal; }
.hero p { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 440px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg); padding: 32px 28px;
}
.hero-card h3 {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 32px;
  font-weight: 700; color: var(--white); line-height: 1;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden;
}
.trust-list {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.trust-list::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  white-space: nowrap;
}
.trust-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-logo); flex-shrink: 0;
}

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-card h3 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Why Cards ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.why-icon { font-size: 28px; margin-bottom: 12px; }
.why-card h4 { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--text-muted); }

/* ── Review Cards ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 10px; }
.review-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--blue-mid); flex-shrink: 0;
}
.reviewer-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.reviewer-area { font-size: 12px; color: var(--text-muted); }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: var(--white); padding: 64px 0; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer { background: #0b1e3d; color: rgba(255,255,255,0.82); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: var(--white); }
.footer-brand .logo span { color: #90e0ff; }
.footer-brand p { font-size: 13px; margin-top: 10px; line-height: 1.7; max-width: 260px; }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.82); margin-bottom: 8px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.82); margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px; font-size: 12px;
}

/* ── Sticky bar (mobile) ── */
.sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800; background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 10px 16px; gap: 10px;
}
.sticky-bar a {
  flex: 1; padding: 12px 8px; border-radius: 40px;
  font-weight: 600; font-size: 14px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.sticky-wa  { background: var(--green-wa); color: var(--white); }
.sticky-call { background: var(--blue-mid); color: var(--white); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: var(--white); padding: 60px 0 52px; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 16px; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* ── About page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap {
  background: var(--blue-pale); border-radius: var(--radius-lg);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  font-size: 80px; overflow: hidden;
}
.about-text .label { display: block; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { margin-bottom: 14px; font-size: 15px; }
.about-text ul { margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.about-text ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); }
.check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 1px;
}

/* ── Team cards ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px; text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 14px;
}
.team-card h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--text-muted); }

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info-card {
  background: var(--blue-dark); color: var(--white);
  border-radius: var(--radius-lg); padding: 40px 32px;
}
.contact-info-card h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-icon-wrap {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item h5 { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.contact-item p { font-size: 14px; color: rgba(255,255,255,0.85); }
.contact-item a { color: rgba(255,255,255,0.85); }
.contact-item a:hover { color: var(--white); text-decoration: underline; }
.contact-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-size: 22px; margin-bottom: 6px; }
.contact-form-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark);
  background: var(--white); transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-mid); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Gallery grid ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  background: var(--blue-pale); border-radius: var(--radius-md);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  font-size: 40px; overflow: hidden; position: relative;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-placeholder { text-align: center; }
.gallery-placeholder p { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* ── Rating bars (gallery page) ── */
.gallery-note {
  background: var(--blue-pale); border: 1px solid #b8d8f5;
  border-radius: var(--radius-md); padding: 16px 20px;
  font-size: 14px; color: var(--blue-mid); margin-bottom: 32px;
  display: flex; align-items: center; gap: 10px;
}
.rating-summary {
  display: flex; align-items: center; gap: 32px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 36px; margin-bottom: 36px;
}
.rating-big { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 700; color: var(--blue-dark); line-height: 1; }
.rating-stars { color: #f59e0b; font-size: 24px; margin-bottom: 4px; }
.rating-count { font-size: 14px; color: var(--text-muted); }
.rating-bars { flex: 1; }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.bar-label { font-size: 12px; color: var(--text-muted); width: 30px; text-align: right; }
.bar-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: #f59e0b; border-radius: 4px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; gap: 20px; }
  .rating-bars { width: 100%; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 70px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════
   MOBILE-FIRST ENHANCEMENTS v3
   ══════════════════════════════════════════════════ */

/* Better touch targets */
.btn { min-height: 48px; }
.nav-links a { padding: 8px 4px; }

/* Floating WhatsApp + Call widgets — MOBILE */
.float-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  padding: 10px 16px 12px;
  gap: 10px;
}
.float-bar a {
  flex: 1; padding: 13px 8px; border-radius: 12px;
  font-weight: 700; font-size: 15px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; transition: transform 0.15s, box-shadow 0.15s;
}
.float-bar a:active { transform: scale(0.97); }
.float-bar .fb-wa { background: var(--green-wa); color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
.float-bar .fb-call { background: var(--blue-mid); color: #fff; box-shadow: 0 4px 14px rgba(10,79,143,0.4); }

/* Floating widgets — DESKTOP (right side) */
.float-desktop {
  position: fixed; right: 20px; bottom: 120px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}
.float-desktop a {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.float-desktop a:hover { transform: scale(1.1); }
.float-desktop .fd-wa { background: var(--green-wa); }
.float-desktop .fd-call { background: var(--blue-mid); }
.float-desktop a .fd-tooltip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: rgba(17,24,39,0.9); color: #fff;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  padding: 5px 12px; border-radius: 6px; pointer-events: none;
  opacity: 0; transition: opacity 0.2s;
}
.float-desktop a:hover .fd-tooltip { opacity: 1; }

/* Pulse animation on WhatsApp */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.float-desktop .fd-wa,
.float-bar .fb-wa { animation: waPulse 2.5s infinite; }

/* Mobile hero improvements */
@media (max-width: 640px) {
  .hero { padding: 56px 0 52px; }
  .hero-content h1 { font-size: 28px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px 24px; }
  .float-bar { display: flex; }
  body { padding-bottom: 80px; }
  /* Hide old sticky-bar — replaced by float-bar */
  .sticky-bar { display: none !important; }

  /* Better mobile section padding */
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }
  h2 { font-size: 24px; }

  /* Bigger service cards on mobile */
  .service-card { padding: 20px; }
  .service-icon { font-size: 32px; margin-bottom: 10px; }

  /* Mobile reviews */
  .review-card { padding: 20px; }

  /* Mobile CTA band */
  .cta-band { padding: 48px 0; }
  .cta-band h2 { font-size: 22px; }
}

/* Tablet improvements */
@media (min-width: 641px) and (max-width: 1024px) {
  .hero { padding: 64px 0 60px; }
  .float-bar { display: flex; }
  body { padding-bottom: 80px; }
  .sticky-bar { display: none !important; }
}

/* Desktop: hide float-bar, show float-desktop */
@media (min-width: 1025px) {
  .float-bar { display: none !important; }
  .float-desktop { display: flex; }
}
@media (max-width: 1024px) {
  .float-desktop { display: none !important; }
}

/* Better page-hero on mobile */
@media (max-width: 640px) {
  .page-hero { padding: 44px 0 36px; }
  .page-hero h1 { font-size: 24px; }
  .contact-form-card { padding: 24px 20px; }
  .contact-info-card { padding: 28px 20px; }
}

/* Improved card hover for mobile (no hover — use shadow instead) */
@media (hover: none) {
  .service-card:hover, .why-card:hover, .review-card:hover { transform: none; }
  .service-card, .why-card { box-shadow: var(--shadow-sm); }
}
