/* ============================================================
   OLYMPIA — PREMIUM GLOBAL UPGRADES
   Improves: spacing, typography, buttons, section titles,
   section backgrounds, consistency, subtle gradients
   ============================================================ */

/* ── 1. ENHANCED CSS VARIABLES ─────────────────────────────── */
:root {
  --shadow-card-premium: 0 8px 36px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-gold-soft: 0 0 40px rgba(201,168,76,0.10);
  --border-gold-subtle: 1px solid rgba(201,168,76,0.10);
  --border-gold-mid: 1px solid rgba(201,168,76,0.22);
  --radius-card: 10px;
}

/* ── 2. SECTION HEADERS — PREMIUM LIFT ─────────────────────── */
.section-header {
  margin-bottom: 60px;
}
.section-header h2 {
  margin-top: 4px;
  letter-spacing: 0.015em;
}
.section-header p {
  margin-top: 14px;
  font-size: 1rem;
  color: #999;
  line-height: 1.75;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

/* ── 3. GOLD LINE — slightly longer, richer ─────────────────── */
.gold-line {
  width: 52px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  margin-bottom: 1.1rem;
  opacity: 0.9;
}
.gold-line.centered {
  margin: 0 auto 1.1rem;
}

/* ── 4. BUTTONS — more polished ─────────────────────────────── */
.btn {
  border-radius: 3px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  padding: 13px 30px;
}
.btn-gold {
  background: linear-gradient(135deg, #b8922e 0%, #c9a84c 40%, #e0bc6a 70%, #c9a84c 100%);
  box-shadow: 0 4px 18px rgba(201,168,76,0.32), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(201,168,76,0.50), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-outline-gold {
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  border-width: 1px;
  padding: 13px 30px;
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, #c9a84c, #e0bc6a);
  color: #090909;
  transform: translateY(-2px);
}

/* ── 5. TRUST CARDS — polished ───────────────────────────────── */
.trust-card {
  background: #141414;
  border: 1px solid rgba(201,168,76,0.10);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}
.trust-card:hover {
  border-color: rgba(201,168,76,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px rgba(201,168,76,0.07);
  transform: translateY(-3px);
}
.trust-card .icon-wrap {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.trust-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #f0ece4;
}
.trust-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #888;
}

/* ── 6. REVIEW CARDS — more distinguished ───────────────────── */
.review-card {
  background: #141414;
  border: 1px solid rgba(201,168,76,0.10);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  position: relative;
}
.review-card:hover {
  border-color: rgba(201,168,76,0.24);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
}
.review-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 6px;
}
.review-stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #aaa;
  margin-bottom: 20px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.12));
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e0e0e0;
}
.review-loc {
  font-size: 0.75rem;
  color: #666;
  margin-top: 2px;
}

/* ── 7. WHY SECTION — enhanced points ───────────────────────── */
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.06);
  transition: border-color 0.3s ease;
}
.why-point:last-child {
  border-bottom: none;
}
.why-point:hover {
  border-color: rgba(201,168,76,0.15);
}
.why-point-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-point-text h4 {
  font-size: 0.92rem;
  margin-bottom: 3px;
  color: #e8e8e8;
}
.why-point-text p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
}

/* ── 8. FEATURED GRID IMAGES ─────────────────────────────────── */
.featured-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transition: box-shadow 0.35s ease;
}
.featured-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.7);
}
.featured-img {
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
  filter: brightness(0.85);
}
.featured-item:hover .featured-img {
  filter: brightness(0.95);
  transform: scale(1.04);
}
.featured-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── 9. STATS BAR — cleaner ──────────────────────────────────── */
.stat-item-inner {
  padding: 8px 0;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.2));
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #888;
  margin-top: 4px;
}

/* ── 10. SECTION DIVIDERS — subtle improvement ───────────────── */
section {
  padding: 96px 0;
}
@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }
}

/* ── 11. HERO BUTTONS — premium ─────────────────────────────── */
.btn-hero-primary {
  background: linear-gradient(135deg, #b8922e 0%, #c9a84c 40%, #e0bc6a 70%, #c9a84c 100%);
  box-shadow: 0 4px 24px rgba(201,168,76,0.38), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.btn-hero-primary:hover {
  box-shadow: 0 6px 32px rgba(201,168,76,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* ── 12. QUALITY PROMISE + EXPERT MINI CARDS ─────────────────── */
.expert-mini-card {
  border-radius: 8px !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}
.expert-mini-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
}

/* ── 13. AREA TAGS ────────────────────────────────────────────── */
.area-tag {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 7px 14px;
}
.area-tag:hover {
  background: rgba(201,168,76,0.10);
  border-color: rgba(201,168,76,0.25);
}

/* ── 14. MOBILE: GENERAL CARD/BORDER POLISH ─────────────────── */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 44px;
  }
  .section-header h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
  .trust-card {
    padding: 28px 20px;
  }
  .review-card {
    padding: 24px 20px;
  }
  /* Scope items */
  .scope-item {
    padding: 16px 18px !important;
  }
}

/* ── 15. CTA SECTION — premium feel ─────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(201,168,76,0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 16px;
}

/* ── 16. FOOTER — cleaner links ─────────────────────────────── */
.footer-col a {
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
}
