/* home.css — Homepage-specific styles */

.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: var(--white); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #243058 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-desc { font-size: 1.08rem; color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 36px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; color: rgba(255,255,255,0.65); }
.hero-trust-item svg { color: var(--gold); }
.hero-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 32px 28px; min-width: 220px; text-align: center; }
.hero-card-icon { width: 56px; height: 56px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.hero-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.hero-card .big-phone { font-size: 1.25rem; font-weight: 800; color: var(--gold-light); text-decoration: none; display: block; margin: 10px 0 6px; }
.hero-card .big-phone:hover { color: var(--white); }
.hero-card-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 14px 0; }
.hero-card-link { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.7); text-decoration: none; padding: 8px 0; }
.hero-card-link:hover { color: var(--gold-light); }

/* TRUST BAR */
.trust-bar { background: var(--gold); padding: 18px 0; }
.trust-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 0.92rem; font-weight: 600; }
.trust-item svg { flex-shrink: 0; opacity: 0.9; }
.trust-item-label { font-size: 0.76rem; font-weight: 500; opacity: 0.85; }

/* SERVICES */
.services { padding: 80px 0; background: var(--white); }
.services-header { text-align: center; margin-bottom: 52px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--offwhite); border: 1px solid var(--border); border-radius: 10px; padding: 30px 26px; transition: all 0.2s; }
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon svg { color: var(--gold); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* WHY CHOOSE */
.why { padding: 80px 0; background: var(--navy); position: relative; overflow: hidden; }
.why::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(200,146,42,0.15) 0%, transparent 70%); pointer-events: none; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-content .section-title { color: var(--white); }
.why-content .section-subtitle { color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check { width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check svg { color: var(--white); }
.why-item-text h4 { font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-item-text p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.55; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; padding: 28px 22px; text-align: center; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* HOW IT WORKS */
.how { padding: 80px 0; background: var(--offwhite); }
.how-header { text-align: center; margin-bottom: 52px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.how-steps::before { content: ''; position: absolute; top: 36px; left: calc(16.66% + 20px); right: calc(16.66% + 20px); height: 2px; background: var(--border); z-index: 0; }
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-num { width: 72px; height: 72px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 1.5rem; font-weight: 800; color: var(--gold); border: 3px solid var(--white); box-shadow: var(--shadow); }
.how-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.how-step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* AREAS */
.areas { padding: 80px 0; background: var(--white); }
.areas-header { margin-bottom: 48px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-bottom: 32px; }
.area-card { background: var(--offwhite); border: 1px solid var(--border); border-radius: 8px; padding: 16px 18px; text-decoration: none; transition: all 0.18s; display: block; }
.area-card:hover { border-color: var(--gold); background: #fff8ef; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(200,146,42,0.15); }
.area-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.area-card span { font-size: 0.78rem; color: var(--mid-grey); }
.areas-note { font-size: 0.9rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }

/* FAQ */
.faq { padding: 80px 0; background: var(--offwhite); }
.faq-header { text-align: center; margin-bottom: 44px; }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 16px 20px; font-size: 0.92rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: 'Figtree', sans-serif; transition: background 0.15s; }
.faq-question:hover { background: var(--offwhite); }
.faq-question svg { flex-shrink: 0; transition: transform 0.2s; color: var(--gold); }
.faq-question.open svg { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 16px; font-size: 0.88rem; color: var(--text-light); line-height: 1.65; border-top: 1px solid var(--border); }
.faq-answer.open { display: block; }
.faq-cta-box { background: var(--navy); border-radius: 16px; padding: 52px 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 48px; position: relative; overflow: hidden; }
.faq-cta-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(200,146,42,0.18) 0%, transparent 70%); pointer-events: none; }
.faq-cta-content { position: relative; z-index: 1; }
.faq-cta-content h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.faq-cta-content p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 500px; line-height: 1.6; }
.faq-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; position: relative; z-index: 1; }
.faq-cta-phone { font-size: 1.55rem; font-weight: 800; color: var(--gold-light); text-decoration: none; white-space: nowrap; }
.faq-cta-phone:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-stats { margin-top: 32px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .faq-cols { grid-template-columns: 1fr; }
  .faq-cta-box { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
  .faq-cta-actions { align-items: flex-start; width: 100%; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { justify-content: center; }
}
