/*
Theme Name: Global Debt Recovery Experts
Theme URI: https://globaldebtrecoveryexperts.com
Author: Global Debt Recovery Experts Ltd
Author URI: https://globaldebtrecoveryexperts.com
Description: Professional debt collection and recovery services across the GCC and worldwide. No Win, No Fee. Serving UAE, Saudi Arabia, Qatar, Oman, Kuwait, Bahrain, Europe, Asia, Americas and beyond.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: All Rights Reserved
License URI: https://globaldebtrecoveryexperts.com
Text Domain: gdre
Tags: business, professional, debt-recovery, GCC
*/

/* ─── CSS CUSTOM PROPERTIES ─────────────────────── */
:root {
  --navy: #081523;
  --navy-mid: #0D2240;
  --navy-light: #122d54;
  --gold: #C49A3C;
  --gold-light: #E2B85A;
  --gold-pale: #F5E8C8;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --grey: #8A95A3;
  --grey-light: #E8ECF0;
  --text-dark: #0D1B2A;
  --text-body: #3D4F61;
  --success: #2A9D5C;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-gold: 0 4px 24px rgba(196,154,60,0.18);
  --shadow-card: 0 8px 40px rgba(8,21,35,0.10);
  --shadow-deep: 0 20px 60px rgba(8,21,35,0.18);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 500; }
p { font-size: 1rem; line-height: 1.75; }

.gold-text { color: var(--gold); }
.serif { font-family: var(--font-display); }

/* ─── PAGE MANAGEMENT ─────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ─── STICKY HEADER ──────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,21,35,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,154,60,0.15);
  transition: var(--transition);
}

.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--navy);
}
.logo-text { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--white); letter-spacing: -0.01em; }
.logo-text span { color: var(--gold); }

nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  background: none; border: none; cursor: pointer;
  padding: 0.5rem 1rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8); transition: var(--transition);
  letter-spacing: 0.03em;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }

.header-cta {
  display: flex; gap: 0.75rem; align-items: center;
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.5rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  letter-spacing: 0.04em; text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,154,60,0.35);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(196,154,60,0.5);
  color: var(--gold-light);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(196,154,60,0.08);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 2.8rem; font-size: 1.05rem; border-radius: 6px; }

/* Mobile nav toggle */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}

/* ─── SECTIONS ───────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--gold);
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header p { font-size: 1.05rem; color: var(--text-body); margin-top: 1rem; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 72px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(18,45,84,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(196,154,60,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-image-overlay {
  position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  background: linear-gradient(135deg, #0e2845 0%, #162f55 50%, #0a1f3a 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero-image-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background:
    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='%23c49a3c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") center/60px;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-left { max-width: 580px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(196,154,60,0.12); border: 1px solid rgba(196,154,60,0.3);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: var(--gold-light);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .accent {
  color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; background-clip: text;
  display: block;
}

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem; line-height: 1.7; max-width: 480px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-trust {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-avatars {
  display: flex;
}
.trust-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--navy);
  background: linear-gradient(135deg, #1e4080, #2a5aa0);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--white);
  margin-left: -10px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.trust-text strong { color: var(--gold-light); display: block; font-size: 0.9rem; }

/* Hero Stats */
.hero-stats {
  display: grid; grid-template-rows: repeat(3, auto); gap: 1.5rem;
  padding: 2.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,154,60,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; margin-top: 0.25rem; }
.stat-divider { height: 1px; background: rgba(196,154,60,0.12); }

/* ─── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-light);
  padding: 1.5rem 2rem;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}
.trust-bar-label { font-size: 0.8rem; font-weight: 600; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.logo-strip { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.client-logo {
  height: 32px; display: flex; align-items: center; justify-content: center;
  background: var(--grey-light); border-radius: 4px; padding: 0.4rem 1.2rem;
  font-size: 0.8rem; font-weight: 700; color: var(--grey);
  letter-spacing: 0.05em; min-width: 90px;
}

/* ─── STATS SECTION ──────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 2rem; position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,60,0.06) 0%, transparent 70%);
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.stat-card {
  text-align: center; padding: 2rem;
  border: 1px solid rgba(196,154,60,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.stat-card:hover {
  border-color: rgba(196,154,60,0.3);
  background: rgba(196,154,60,0.04);
  transform: translateY(-4px);
}
.stat-card .number {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.stat-card .label { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 0.5rem; letter-spacing: 0.05em; }

/* ─── SERVICES ───────────────────────────────── */
.services-section { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(196,154,60,0.25);
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(196,154,60,0.12), rgba(196,154,60,0.06));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.5rem;
  border: 1px solid rgba(196,154,60,0.15);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--text-dark); }
.service-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem; font-size: 0.85rem; font-weight: 600;
  color: var(--gold); cursor: pointer; background: none; border: none;
  transition: var(--transition);
}
.service-link:hover { gap: 0.7rem; }

/* ─── HOW IT WORKS ───────────────────────────── */
.how-section { background: var(--navy); padding: 6rem 2rem; }
.how-section h2 { color: var(--white); }
.how-section .section-header p { color: rgba(255,255,255,0.6); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 1100px; margin: 0 auto;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 40px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  z-index: 0;
}
.step-item {
  text-align: center; padding: 0 2rem 2rem;
  position: relative; z-index: 1;
}
.step-number {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px rgba(196,154,60,0.1);
}
.step-item h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.75rem; }
.step-item p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── WHY SECTION ────────────────────────────── */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.why-feature:hover { border-color: rgba(196,154,60,0.25); box-shadow: var(--shadow-card); }
.why-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(196,154,60,0.12), rgba(196,154,60,0.06));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.why-text h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.25rem; color: var(--text-dark); }
.why-text p { font-size: 0.875rem; color: var(--text-body); }

.why-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg); padding: 2.5rem;
  border: 1px solid rgba(196,154,60,0.15);
}
.why-visual-title {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--white);
  margin-bottom: 1.5rem;
}
.why-visual-title span { color: var(--gold-light); }
.visual-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.visual-list li {
  padding: 0.75rem 1rem; background: rgba(255,255,255,0.04);
  border-radius: 8px; border: 1px solid rgba(196,154,60,0.08);
  color: rgba(255,255,255,0.8); font-size: 0.9rem;
}

.no-win-badge {
  margin-top: 2rem; padding: 1.25rem; text-align: center;
  background: linear-gradient(135deg, rgba(196,154,60,0.12), rgba(196,154,60,0.06));
  border: 1px solid rgba(196,154,60,0.3); border-radius: 10px;
}
.badge-text { color: var(--gold-light); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.badge-sub { color: rgba(255,255,255,0.55); font-size: 0.8rem; }

/* ─── TESTIMONIALS ───────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
  padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
  background: var(--white); transition: var(--transition);
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-card); border-color: rgba(196,154,60,0.2);
  transform: translateY(-4px);
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.925rem; color: var(--text-body); line-height: 1.7; flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--gold-light); flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.author-company { font-size: 0.8rem; color: var(--grey); margin-top: 0.1rem; }

/* ─── CTA SECTION ────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 6rem 2rem; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,60,0.06) 0%, transparent 70%);
}
.cta-section p { color: rgba(255,255,255,0.65); }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.cta-left { position: relative; z-index: 1; }
.cta-points { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cta-points li {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.75); font-size: 0.95rem;
}
.cta-points li::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(42,157,92,0.2); border: 1px solid rgba(42,157,92,0.4);
  color: #4ade80; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

/* Form */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-deep);
  position: relative; z-index: 1;
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-card > p { font-size: 0.875rem; color: var(--grey); margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.7rem 1rem; border: 1.5px solid var(--grey-light);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-dark); background: var(--white);
  transition: border-color 0.2s;
  outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ─── BLOG ───────────────────────────────────── */
.blog-section { background: var(--off-white); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--grey-light);
  transition: var(--transition); cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-card); transform: translateY(-6px); border-color: rgba(196,154,60,0.2); }
.blog-image {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; position: relative;
}
.blog-cat {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(0,0,0,0.4); color: var(--white); font-size: 0.7rem;
  font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 100px;
  letter-spacing: 0.05em;
}
.blog-body { padding: 1.5rem; }
.blog-date { font-size: 0.78rem; color: var(--grey); margin-bottom: 0.5rem; letter-spacing: 0.03em; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--text-dark); line-height: 1.4; }
.blog-body p { font-size: 0.875rem; color: var(--text-body); line-height: 1.6; }
.blog-read { display: inline-block; margin-top: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--gold); }

/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 0.75rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; font-weight: 700;
  text-decoration: none; transition: var(--transition);
}
.social-link:hover { background: rgba(196,154,60,0.15); border-color: rgba(196,154,60,0.3); color: var(--gold-light); }

.footer-col h4 { font-family: var(--font-display); font-size: 1rem; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li button, .footer-links li a {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.875rem;
  color: rgba(255,255,255,0.45); transition: color 0.2s;
  text-decoration: none; text-align: left; padding: 0;
}
.footer-links li button:hover, .footer-links li a:hover { color: var(--gold-light); }

.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-text { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-light); }

/* ─── ABOUT PAGE ──────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 8rem 2rem 5rem; text-align: center;
}
.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 1rem auto 0; }

.about-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.about-values {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem;
}
.value-card {
  padding: 1.5rem; background: var(--off-white);
  border-radius: var(--radius-lg); border: 1px solid var(--grey-light);
  text-align: center; transition: var(--transition);
}
.value-card:hover { border-color: rgba(196,154,60,0.25); }
.value-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.value-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--text-dark); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.825rem; color: var(--text-body); line-height: 1.5; }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center; padding: 2rem;
  border: 1px solid var(--grey-light); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold-light);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.825rem; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.team-card p { font-size: 0.825rem; color: var(--text-body); }

/* ─── CONTACT PAGE ────────────────────────────── */
.contact-body {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-block {
  padding: 1.5rem; background: var(--off-white);
  border-radius: var(--radius-lg); border: 1px solid var(--grey-light);
  display: flex; gap: 1rem; align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(196,154,60,0.12), rgba(196,154,60,0.06));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.info-block h4 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 0.25rem; }
.info-block p { font-size: 0.875rem; color: var(--text-body); line-height: 1.5; }

.map-placeholder {
  height: 220px; background: var(--grey-light);
  border-radius: 10px; margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 0.9rem; border: 1px solid var(--grey-light);
}

/* ─── CLAIM PAGE ──────────────────────────────── */
.claim-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 8rem 2rem 5rem; text-align: center;
}
.claim-hero h1 { color: var(--white); }
.claim-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 1rem auto 0; }
.claim-form-section { padding: 5rem 2rem; background: var(--off-white); }
.claim-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 3rem; box-shadow: var(--shadow-card);
  max-width: 800px; margin: 0 auto;
  border: 1px solid var(--grey-light);
}
.form-section-title {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--navy);
  margin-bottom: 1.5rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-pale);
}
.form-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

/* ─── BLOG PAGE ──────────────────────────────── */
.blog-page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 8rem 2rem 5rem; text-align: center;
}
.blog-page-hero h1 { color: var(--white); }
.blog-page-hero p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 1rem auto 0; }
.blog-page-body { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.blog-cats { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.cat-pill {
  padding: 0.4rem 1.2rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--grey-light); background: var(--white);
  color: var(--text-body); transition: var(--transition); font-family: var(--font-body);
}
.cat-pill.active, .cat-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,154,60,0.05); }

/* ─── TOAST ──────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--navy); color: var(--white);
  padding: 1rem 1.5rem; border-radius: 10px;
  border-left: 4px solid var(--success);
  box-shadow: var(--shadow-deep);
  font-size: 0.9rem; display: flex; align-items: center; gap: 0.75rem;
  transform: translateX(150%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 360px;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ─── STICKY CLAIM BUTTON ────────────────────── */
.sticky-claim {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 500;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-family: var(--font-body); font-weight: 700;
  font-size: 0.875rem; padding: 0.85rem 2rem; border-radius: 100px;
  border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(196,154,60,0.4);
  display: none; align-items: center; gap: 0.5rem;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.sticky-claim:hover { transform: translateX(-50%) translateY(-3px); box-shadow: 0 12px 40px rgba(196,154,60,0.5); }

/* ─── FADE-IN ANIMATION ──────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── DIVIDER ────────────────────────────────── */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 1rem 0;
}
.gold-divider.center { margin: 1rem auto; }

/* ─── UTILITIES ──────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .cta-grid, .about-content, .contact-body { grid-template-columns: 1fr; gap: 3rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .stat-divider { display: none; }
  .hero-image-overlay { display: none; }
}

@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); padding: 1.5rem; border-bottom: 1px solid rgba(196,154,60,0.1); gap: 0.25rem; z-index: 999; }
  .hamburger { display: flex; }
  .header-cta .btn-outline { display: none; }
  .services-grid, .stats-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .sticky-claim { display: flex; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 1.25rem; }
  .hero-content { padding: 3rem 1.25rem; }
  .hero-ctas { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; text-align: center; }
  .logo-strip { justify-content: center; }
  .claim-form-card, .form-card { padding: 1.5rem; }
}
