/* ===========================
   CLIFFORD DEFENSE - MAIN CSS
   Enhanced Design v2.0
   =========================== */

:root {
  --navy: #0a1628;
  --dark-navy: #060e1a;
  --navy-mid: #0d1d38;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a8893a;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #f2f4f9;
  --mid-gray: #dde2ee;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-gray: #6b7280;
  --accent-red: #dc2626;
  --green: #16a34a;
  --shadow-sm: 0 1px 6px rgba(0,0,0,0.07);
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
  --shadow-gold: 0 6px 30px rgba(201,168,76,0.30);
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
  --gutter: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.72;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =====================
   URGENCY BANNER
   ===================== */
.urgency-banner {
  background: linear-gradient(90deg, var(--accent-red) 0%, #b91c1c 100%);
  color: #fff;
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1000;
}
.urgency-banner a { color: #fcd34d; text-decoration: underline; }
.urgency-banner a:hover { color: #fff; }

/* =====================
   TOP BAR
   ===================== */
.top-bar {
  background: var(--dark-navy);
  color: #c4cee6;
  font-size: 13px;
  font-family: 'Inter', Arial, sans-serif;
  padding: 8px 0;
  border-bottom: 2px solid var(--gold);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--gold); font-weight: 600; }
.top-bar a:hover { color: var(--white); }
.top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar-phone {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700 !important;
  font-size: 13px;
}

/* =====================
   HEADER / NAV
   ===================== */
header {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-text h1 {
  color: var(--white);
  font-size: 22px;
  letter-spacing: 0.3px;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
}
.logo-text span {
  display: block;
  color: var(--gold);
  font-size: 10.5px;
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}
.logo-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.35);
}
.logo-badge img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
nav ul li a {
  color: #c4cee6;
  font-size: 14px;
  font-family: 'Inter', Arial, sans-serif;
  padding: 8px 13px;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: all var(--transition);
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.10);
}
.nav-cta a {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  border-radius: 7px !important;
  font-size: 13.5px !important;
}
.nav-cta a:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

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

/* =====================
   HERO
   ===================== */
.hero {
  background: linear-gradient(135deg, #050d1c 0%, #0a1628 40%, #0d1f40 75%, #0a2552 100%);
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 40%),
    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='%23c9a84c' 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");
}
.hero-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold);
  font-size: 11.5px;
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
  font-weight: 600;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.12;
  margin-bottom: 22px;
  font-weight: 900;
  font-family: 'Playfair Display', Georgia, serif;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px;
  color: #9daac4;
  margin-bottom: 36px;
  line-height: 1.7;
  font-family: 'Inter', Arial, sans-serif;
}
.hero-subtitle strong { color: #e0e6f4; }
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #7a8db0;
  font-family: 'Inter', Arial, sans-serif;
}
.trust-badge-item span:first-child { font-size: 14px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8933e);
  color: var(--navy);
  font-weight: 700;
  font-family: 'Inter', Arial, sans-serif;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.hero-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-xl);
  padding: 38px 30px;
  backdrop-filter: blur(12px);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(201,168,76,0.2), transparent 60%);
  z-index: -1;
}
.hero-card h3 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 24px;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.stat-item {
  text-align: center;
  padding: 18px 12px;
  background: rgba(201,168,76,0.08);
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
}
.stat-item:hover {
  background: rgba(201,168,76,0.14);
  transform: translateY(-2px);
}
.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Playfair Display', Georgia, serif;
}
.stat-label {
  font-size: 11px;
  color: #7a8db0;
  font-family: 'Inter', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.hero-trust-list { list-style: none; }
.hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0bed8;
  font-size: 13.5px;
  font-family: 'Inter', Arial, sans-serif;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-trust-list li:last-child { border-bottom: none; }
.hero-trust-list li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--mid-gray);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.trust-bar-item .tbi-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

/* =====================
   SECTION STYLES
   ===================== */
section { padding: 76px 0; }
.section-badge {
  display: inline-block;
  background: rgba(201,168,76,0.10);
  color: var(--gold-dark);
  font-size: 11px;
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-weight: 700;
  border: 1px solid rgba(201,168,76,0.28);
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.18;
  font-family: 'Playfair Display', Georgia, serif;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 16.5px;
  color: var(--text-gray);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.7;
  max-width: 600px;
}
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* =====================
   PRACTICE AREAS
   ===================== */
.bg-light { background: var(--light-gray); }
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.bg-dark { background: var(--dark-navy); }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.practice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  border-top: 4px solid var(--gold);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.practice-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.4);
}
.practice-card:hover::after { transform: scaleX(1); }
.practice-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  border: 1px solid rgba(201,168,76,0.2);
}
.practice-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--navy);
}
.practice-card p {
  font-size: 14px;
  color: var(--text-gray);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.65;
  margin-bottom: 18px;
}
.card-link {
  font-size: 13.5px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { color: var(--navy); gap: 8px; }

/* =====================
   WHY CHOOSE US
   ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
}
.why-feature:hover {
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.3);
  transform: translateX(4px);
}
.why-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.why-feature h4 { font-size: 17px; margin-bottom: 6px; color: var(--navy); }
.why-feature p { font-size: 14px; color: var(--text-gray); font-family: 'Inter', Arial, sans-serif; line-height: 1.65; }
.why-image-block {
  background: linear-gradient(150deg, var(--navy) 0%, #0c1f42 60%, #0a2552 100%);
  border-radius: var(--radius-xl);
  padding: 48px 38px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.why-image-block::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.why-image-block h3 { color: var(--gold); font-size: 24px; margin-bottom: 12px; position: relative; z-index: 1; }
.why-image-block p { color: #8899bb; font-family: 'Inter', Arial, sans-serif; font-size: 15px; line-height: 1.7; margin-bottom: 28px; position: relative; z-index: 1; }
.attorney-name { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px; font-family: 'Playfair Display', Georgia, serif; }
.attorney-title { font-size: 12px; color: var(--gold); font-family: 'Inter', Arial, sans-serif; text-transform: uppercase; letter-spacing: 2px; }
.credentials-list { list-style: none; margin-top: 24px; text-align: left; }
.credentials-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
  color: #b0bed8;
  font-family: 'Inter', Arial, sans-serif;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.credentials-list li::before { content: '⚖'; font-size: 13px; flex-shrink: 0; margin-top: 1px; }

/* =====================
   HOW IT WORKS
   ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0.3;
}
.step-item {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy), #0d2050);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.1);
}
.step-item h4 { font-size: 17px; margin-bottom: 10px; color: var(--navy); }
.step-item p { font-size: 14px; color: var(--text-gray); font-family: 'Inter', Arial, sans-serif; line-height: 1.65; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 64px;
  font-family: 'Playfair Display', Georgia, serif;
  color: rgba(201,168,76,0.1);
  line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.stars { color: #f59e0b; font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
  font-family: 'Inter', Arial, sans-serif;
}
.testimonial-author {
  font-size: 13px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.testimonial-location { font-size: 12px; color: var(--text-gray); font-family: 'Inter', Arial, sans-serif; margin-top: 2px; }

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  background: linear-gradient(135deg, #050d1c 0%, var(--navy) 50%, #0a2552 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 46px);
  margin-bottom: 14px;
  font-family: 'Playfair Display', Georgia, serif;
  position: relative;
  z-index: 1;
}
.cta-section h2 span { color: var(--gold); }
.cta-section p {
  color: #8899bb;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 17px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-phone-number {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  display: block;
}
.cta-phone-number a { color: var(--gold); }
.cta-phone-number a:hover { color: var(--gold-light); }
.cta-available {
  font-size: 14px;
  color: #6a7a99;
  font-family: 'Inter', Arial, sans-serif;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

/* =====================
   SERVICE AREAS SECTION
   ===================== */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.area-pill {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
  display: block;
}
.area-pill:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.25);
}

/* =====================
   CONTACT / FORM
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 { font-size: 28px; margin-bottom: 16px; }
.contact-info p { font-family: 'Inter', Arial, sans-serif; color: var(--text-gray); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--mid-gray);
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.2);
}
.contact-detail-label {
  font-size: 11px;
  font-family: 'Inter', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  font-weight: 700;
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  font-family: 'Inter', Arial, sans-serif;
}
.contact-detail-value a { color: var(--navy); }
.contact-detail-value a:hover { color: var(--gold); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mid-gray);
}
.form-title {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'Playfair Display', Georgia, serif;
}
.form-subtitle {
  font-size: 13.5px;
  color: var(--text-gray);
  font-family: 'Inter', Arial, sans-serif;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
label {
  display: block;
  font-size: 12px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
textarea { height: 120px; resize: vertical; }
.form-note {
  font-size: 12px;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text-gray);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #040b18;
  color: #8899bb;
  font-family: 'Inter', Arial, sans-serif;
}
.footer-top-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  height: 3px;
}
.footer-main {
  padding: 64px 0 44px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  margin: 16px 0 20px;
  color: #5a6a88;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 2px; }
.footer-logo-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.footer-logo-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
}
.footer-logo-sub {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
  font-family: 'Inter', Arial, sans-serif;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
  font-family: 'Inter', Arial, sans-serif;
  transition: all var(--transition);
}
.footer-phone:hover { background: var(--gold-light); color: var(--navy); }
.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: #5a6a88;
  font-size: 13.5px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: #3a4a62;
}
.footer-bottom a { color: var(--gold); }
.disclaimer {
  background: #02060f;
  padding: 20px 0;
  text-align: center;
  font-size: 11.5px;
  color: #2a3a52;
  border-top: 1px solid rgba(255,255,255,0.03);
  line-height: 1.7;
}

/* =====================
   LOCATION PAGE HERO
   ===================== */
.page-hero {
  background: linear-gradient(135deg, #050d1c 0%, var(--navy) 60%, #0d2050 100%);
  padding: 70px 0 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
    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='%23c9a84c' 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/svg%3E");
}
.page-hero-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light)); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 13px;
  color: #5a6a88;
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'Inter', Arial, sans-serif;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: #3a4a62; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 50px);
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: #9daac4; font-size: 16.5px; font-family: 'Inter', Arial, sans-serif; max-width: 660px; line-height: 1.7; }
.page-hero-meta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.page-hero-meta span {
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
}

/* =====================
   SIDEBAR
   ===================== */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  align-items: start;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--mid-gray);
  margin-bottom: 22px;
  position: sticky;
  top: 90px;
}
.sidebar-card h3 { font-size: 19px; margin-bottom: 16px; color: var(--navy); }
.sidebar-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  margin-bottom: 12px;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}
.sidebar-phone-btn:hover { color: var(--navy); box-shadow: 0 8px 28px rgba(201,168,76,0.45); transform: translateY(-2px); }
.sidebar-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  font-family: 'Inter', Arial, sans-serif;
  transition: all var(--transition);
}
.sidebar-book-btn:hover { background: var(--navy); color: var(--white); }
.sidebar-features { list-style: none; margin-top: 18px; }
.sidebar-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 13.5px;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-features li:last-child { border-bottom: none; }
.sidebar-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* =====================
   FAQ SECTION
   ===================== */
.faq-item {
  border-bottom: 1px solid var(--mid-gray);
  padding: 0;
}
.faq-question {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-family: 'Playfair Display', Georgia, serif;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-family: 'Inter', Arial, sans-serif;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 22px; }

/* =====================
   FLOATING CALL BUTTON
   ===================== */
.float-call-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--accent-red), #b91c1c);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(220,38,38,0.45);
  transition: all var(--transition);
  animation: float-pulse 2.5s infinite;
}
.float-call-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(220,38,38,0.55);
}
.float-call-btn .fcb-icon { font-size: 18px; animation: ring 2s infinite; }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(220,38,38,0.45); }
  50% { box-shadow: 0 8px 32px rgba(220,38,38,0.65), 0 0 0 8px rgba(220,38,38,0.1); }
}
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

/* =====================
   MOBILE RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .steps-grid::before { display: none; }
}

@media (max-width: 700px) {
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    padding: 16px;
    border-top: 2px solid var(--gold);
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .hamburger { display: flex; }
  header { position: relative; }
  .header-inner { position: relative; }
  .hero { padding: 60px 0 52px; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  section { padding: 56px 0; }
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 4px; }
  .trust-bar-inner { gap: 18px; justify-content: flex-start; }
  .float-call-btn { bottom: 16px; right: 16px; font-size: 13px; padding: 12px 18px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================
   UTILITIES
   ===================== */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media(max-width:700px) { .two-col { grid-template-columns:1fr; } }

.content-block { max-width: 820px; }
.content-block h2 { font-size: 27px; margin: 36px 0 12px; font-family: 'Playfair Display', Georgia, serif; }
.content-block h3 { font-size: 21px; margin: 26px 0 10px; font-family: 'Playfair Display', Georgia, serif; }
.content-block p { font-family: 'Inter', Arial, sans-serif; font-size: 15.5px; color: var(--text-gray); line-height: 1.8; margin-bottom: 16px; }
.content-block ul { padding-left: 22px; margin-bottom: 16px; }
.content-block ul li { font-family: 'Inter', Arial, sans-serif; font-size: 15px; color: var(--text-gray); margin-bottom: 7px; line-height: 1.65; }
.content-block ul li::marker { color: var(--gold); }
.content-block strong { color: var(--text-mid); }

/* =====================
   HIGHLIGHT BOX
   ===================== */
.highlight-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 24px 0;
}
.highlight-box p { font-family: 'Inter', Arial, sans-serif; font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* =====================
   REVIEW STARS SECTION
   ===================== */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.reviews-score {
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
}
.reviews-stars { font-size: 24px; color: #f59e0b; letter-spacing: 3px; }
.reviews-count { font-size: 14px; color: var(--text-gray); font-family: 'Inter', Arial, sans-serif; }

/* Hide from sighted but keep for SEO */
.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
