/* ============================================================
   HOME PAGE — Specific Styles
   ============================================================ */

/* ── Hero ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #162348 50%, #1a2d5a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 62px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: 0.06; }
.shape-1 { width: 480px; height: 480px; background: radial-gradient(circle, var(--yellow) 0%, transparent 70%); top: -160px; right: -80px; animation: float1 8s ease-in-out infinite; }
.shape-2 { width: 280px; height: 280px; background: radial-gradient(circle, #4a9eff 0%, transparent 70%); bottom: -80px; left: -60px; animation: float2 10s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(16px); } }

/* Hero inner — compact so stats visible on first load */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 28px 24px 32px;
  position: relative;
  z-index: 2;
}

/* Hero Content */
.hero-content { animation: slideInLeft 0.8s ease both; }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: translateX(0); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(245,197,24,0.12); border: 1px solid rgba(245,197,24,0.3);
  color: var(--yellow); font-family: var(--font-display); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 12px;
}
.hero-badge::before { content: '⭐'; font-size: 0.85rem; }

.hero-heading {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.hero-heading .highlight { color: var(--yellow); position: relative; display: inline-block; }
.hero-heading .highlight::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: var(--yellow); opacity: 0.28; border-radius: 2px; }

.hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 18px;
}

.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500;
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; animation: slideInRight 0.8s ease 0.12s both; }
@keyframes slideInRight { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }

.hero-card-stack { position: relative; width: 280px; height: 260px; }

.hero-price-card { position: absolute; background: var(--white); border-radius: var(--radius-md); padding: 22px 20px; box-shadow: var(--shadow-lg); }
.main-card { width: 230px; top: 10px; left: 10px; z-index: 3; background: linear-gradient(145deg, #ffffff, #f8faff); animation: cardFloat 5s ease-in-out infinite; }
@keyframes cardFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(-1deg); } }

.card-label { display: block; font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.card-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1; display: flex; align-items: flex-end; gap: 6px; margin-bottom: 4px; }
.card-only { font-size: 0.8rem; color: var(--gray); font-weight: 500; margin-bottom: 4px; }
.card-sub { display: block; font-size: 0.78rem; color: var(--gray); margin-bottom: 12px; }
.card-tag { display: inline-block; background: linear-gradient(90deg, var(--yellow), var(--yellow-hot)); color: var(--navy); font-family: var(--font-display); font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: 100px; }

.mini-card { display: flex; flex-direction: column; gap: 3px; padding: 13px 15px; background: var(--navy); color: var(--white); z-index: 2; }
.mini-1 { width: 120px; bottom: 36px; right: 0; border-radius: var(--radius-sm); animation: cardFloat2 6s ease-in-out infinite 1s; }
.mini-2 { width: 120px; bottom: 0; right: 16px; border-radius: var(--radius-sm); animation: cardFloat2 7s ease-in-out infinite 0.5s; }
@keyframes cardFloat2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.mini-icon { font-size: 1.1rem; }
.mini-label { font-size: 0.68rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.mini-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--yellow); }

.hero-rating-bubble { position: absolute; top: 0; right: 0; background: var(--yellow); border-radius: var(--radius-sm); padding: 8px 12px; display: flex; flex-direction: column; gap: 2px; z-index: 4; animation: cardFloat2 4s ease-in-out infinite 2s; box-shadow: var(--shadow-yellow); }
.rating-stars { color: var(--navy); font-size: 0.82rem; letter-spacing: 2px; }
.rating-text { font-family: var(--font-display); font-size: 0.66rem; font-weight: 800; color: var(--navy); white-space: nowrap; }

/* No wave — clean cut */
.hero-wave { display: none; }

/* ── Stats Bar ──────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  padding: 32px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  position: relative;
  z-index: 10;
  margin-top: 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 14px; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: var(--gray-light); }
.stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; display: block; margin-bottom: 4px; }
.stat-value span { color: var(--yellow-hot); }
.stat-label { font-size: 0.76rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Services Section ───────────────────────────────── */
.section-header { margin-bottom: 32px; }
.service-tabs { display: flex; gap: 10px; margin-bottom: 28px; border-bottom: 2px solid var(--gray-light); }
.tab-btn { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--gray); padding: 10px 20px; border-radius: var(--radius-sm) var(--radius-sm) 0 0; transition: var(--transition); position: relative; bottom: -2px; border-bottom: 3px solid transparent; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; }
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--yellow); background: rgba(245,197,24,0.05); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px; }
.services-cta { text-align: center; }

/* ── Why Section ────────────────────────────────────── */
.why-section { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 26px 20px; transition: var(--transition); }
.why-card:hover { background: rgba(245,197,24,0.07); border-color: rgba(245,197,24,0.25); transform: translateY(-4px); }
.why-icon { font-size: 1.9rem; margin-bottom: 12px; display: block; }
.why-card h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.52); font-size: 0.84rem; line-height: 1.55; }

/* ── Brands Section ─────────────────────────────────── */
.brands-section { background: var(--off-white); }
.brands-ticker-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%); padding: 6px 0; }
.brands-ticker { display: flex; gap: 14px; animation: ticker 24s linear infinite; width: max-content; align-items: center; }
.brands-ticker:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Reviews ────────────────────────────────────────── */
.reviews-section { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }

.review-form-wrap { background: var(--off-white); border: 1.5px solid var(--gray-light); border-radius: var(--radius-lg); padding: 36px; max-width: 760px; margin: 0 auto; }
.review-form-header { margin-bottom: 24px; }
.review-form-header h3 { margin-bottom: 4px; }
.review-form-header p { color: var(--gray); font-size: 0.88rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; margin-bottom: 16px; }
.form-group label { font-family: var(--font-display); font-size: 0.76rem; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input, .form-group textarea { padding: 12px 16px; border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; color: var(--navy); background: var(--white); outline: none; transition: border-color var(--transition); resize: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,197,24,0.10); }
.star-picker { display: flex; gap: 5px; padding: 8px 0; }
.star-pick { font-size: 1.6rem; color: var(--gray-light); cursor: pointer; transition: color 0.15s, transform 0.15s; line-height: 1; }
.star-pick:hover, .star-pick.active { color: var(--yellow); transform: scale(1.15); }
.review-success { margin-top: 12px; padding: 12px 16px; background: rgba(46,204,113,0.10); border: 1px solid rgba(46,204,113,0.3); border-radius: var(--radius-sm); color: #1a9150; font-weight: 600; font-size: 0.86rem; }

/* ── Coverage Areas ─────────────────────────────────── */
.areas-section { background: var(--navy-mid); }
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); padding: 8px 16px; border-radius: 100px; font-size: 0.84rem; font-weight: 500; transition: var(--transition); cursor: default; }
.area-chip:hover { background: rgba(245,197,24,0.12); border-color: rgba(245,197,24,0.35); color: var(--yellow); }

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-hot) 100%); padding: 56px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-inner h2 { color: var(--navy); margin-bottom: 6px; }
.cta-inner p { color: rgba(13,27,62,0.68); font-size: 0.93rem; }
.cta-inner .btn-whatsapp { background: var(--navy); color: var(--white); box-shadow: 0 10px 36px rgba(13,27,62,0.28); flex-shrink: 0; }
.cta-inner .btn-whatsapp:hover { background: #0a1530; transform: translateY(-2px); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-light); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 22px 16px 26px; gap: 24px; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin: 0 auto 18px; }
  .hero-visual { display: none; }

  .stats-bar { padding: 24px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-light); }
  .stat-value { font-size: 1.7rem; }

  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .review-form-wrap { padding: 22px 16px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .service-tabs { overflow-x: auto; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 18px 12px 22px; }
  .hero-badge { font-size: 0.66rem; padding: 5px 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .tab-btn { font-size: 0.82rem; padding: 8px 14px; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
