/* ===== SIPVERTISE — icons.css ===== */
/* Floating Buttons */
.wa-float {
  position: fixed; bottom: 88px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); animation: none; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); } }

.call-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,58,140,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.call-float:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 8px 28px rgba(0,58,140,0.5); }

.sticky-quote {
  position: fixed; bottom: 156px; right: 24px; z-index: 999;
  background: var(--accent); color: #fff;
  padding: 10px 18px; border-radius: 50px;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.5px; text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(88,181,49,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  writing-mode: horizontal-tb;
}
.sticky-quote:hover { transform: scale(1.07) translateY(-2px); box-shadow: 0 8px 24px rgba(88,181,49,0.55); }

/* Floating buttons: hidden until user scrolls, then revealed (toggled by js/script.js) */
.wa-float, .call-float, .sticky-quote {
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
}
.wa-float.visible, .call-float.visible, .sticky-quote.visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}

/* Icon wrappers */
.step-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: transform 0.25s ease;
}
.step-icon-wrap.icon-primary { background: rgba(0,58,140,0.09); color: var(--primary); }
.card:hover .step-icon-wrap { transform: scale(1.1) rotate(-4deg); }

.why-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0,58,140,0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.why-card:hover .why-icon-wrap { background: var(--primary); color: #fff; transform: scale(1.08) rotate(-3deg); }

.service-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(0,58,140,0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: transform 0.25s ease, background 0.25s ease;
}
.service-card:hover .service-icon-wrap { background: var(--primary); color: #fff; transform: scale(1.1) rotate(-4deg); }

.trust-icon { display: flex; align-items: center; color: var(--accent); }
.icon-sm svg { width: 18px; height: 18px; }

/* Social buttons */
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}
.social-btn:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* Cities grid */
.cities-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 12px;
}
.city-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,58,140,0.06); color: var(--primary);
  border: 1px solid rgba(0,58,140,0.15);
  padding: 8px 18px; border-radius: 50px;
  font-family: var(--font-heading); font-size: 0.88rem; font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.city-pill:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,58,140,0.2); }
.city-pill svg { flex-shrink: 0; }

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card h3 { color: var(--primary); margin-bottom: 10px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; transition: gap 0.2s ease; }
.service-link:hover { gap: 8px; }

/* Story grid */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Leadership / team grid — horizontal cards, no avatar */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 760px; margin: 0 auto; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 36px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: auto 1fr; gap: 0 28px; align-items: start;
  position: relative; overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.team-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 0 2px 2px 0;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-card-index {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900;
  color: var(--border); line-height: 1; user-select: none; min-width: 44px;
  padding-top: 2px;
}
.team-card-body { display: flex; flex-direction: column; gap: 4px; }
.team-card h3 { color: var(--primary); margin: 0; font-size: 1.15rem; }
.team-role { color: var(--accent); font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.team-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); transition: box-shadow 0.2s ease, transform 0.2s ease; }
.contact-detail:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,58,140,0.08); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s ease, color 0.2s ease; }
.contact-detail:hover .contact-icon { background: var(--primary); color: #fff; }
.contact-detail-text h3 { font-size: 0.95rem; color: var(--primary); margin-bottom: 4px; }
.contact-detail-text a { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; }
.contact-detail-text a:hover { color: var(--primary); }
.contact-detail-text p { margin: 0; font-size: 0.85rem; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }

/* FAQ accordions (details/summary): consolidated in css/style.css as details.faq-item (higher specificity, matches markup) */

/* Guarantee section icons */
.guarantee-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.g-stat { text-align: center; color: #fff; }
.g-stat-num { font-size: 1.5rem; font-weight: 800; font-family: var(--font-heading); }
.g-stat-label { font-size: 0.82rem; opacity: 0.8; }

/* Preloader styling consolidated in css/style.css (richer animated version, matches js/preloader.js DOM) */

/* Guarantee card */
.guarantee-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg); padding: 52px; text-align: center; border: none;
  box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .why-grid, .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { padding: 24px 20px 24px 24px; gap: 0 18px; }
  .wa-float { bottom: 80px; right: 16px; }
  .call-float { bottom: 16px; right: 16px; }
  .sticky-quote { bottom: 144px; right: 16px; }
}
