/*
Theme Name: Kervin Law
Theme URI: https://kervinlaw.com
Author: Kervin Law LLC
Author URI: https://kervinlaw.com
Description: Modern, mobile-friendly law office theme for Kervin Law LLC - Personal Injury Attorneys
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kervinlaw
Tags: law, legal, personal-injury, responsive, modern
*/

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --navy:       #0B1F3A;
  --navy-dark:  #071429;
  --navy-mid:   #132d52;
  --gold:       #C9A84C;
  --gold-light: #E2C06A;
  --gold-pale:  #f5e9c8;
  --white:      #FFFFFF;
  --off-white:  #F8F6F1;
  --gray-light: #EEF0F4;
  --gray:       #8A93A2;
  --text:       #1A2535;
  --text-light: #4A5568;
  --shadow-sm:  0 2px 8px rgba(11,31,58,0.10);
  --shadow-md:  0 6px 24px rgba(11,31,58,0.14);
  --shadow-lg:  0 16px 48px rgba(11,31,58,0.18);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.25s ease;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Source Sans 3', 'Source Sans Pro', sans-serif;
  --max-w:      1160px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::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);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

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

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =========================================
   SECTION LABELS / EYEBROWS
   ========================================= */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}

.divider-gold {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 32px;
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--navy-dark);
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar a {
  color: rgba(255,255,255,0.75);
  font-size: 0.83rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar a:hover { color: var(--gold-light); }

.top-bar-cta {
  color: var(--gold) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
}

.top-bar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* =========================================
   SITE HEADER / NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.current-menu-item {
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}

.nav-cta {
  margin-left: 12px;
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-radius: var(--radius) !important;
  padding: 9px 20px !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy-dark) !important;
}

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

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover { color: var(--gold-light); background: rgba(201,168,76,0.07); }
.mobile-nav .nav-cta-mobile {
  display: block;
  margin: 16px 24px 20px;
  padding: 14px 24px !important;
  background: var(--gold);
  color: var(--navy-dark) !important;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 700;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding: 96px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-dark) 0%, #0d2444 100%);
}

.hero-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  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='%23C9A84C' 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/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.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.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero-badge svg { width: 13px; height: 13px; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* =========================================
   WHY US / FEATURES
   ========================================= */
.features {
  background: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,31,58,0.07);
  transition: all var(--transition);
  position: relative;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* =========================================
   PRACTICE AREAS
   ========================================= */
.practice-areas {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.practice-areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.practice-areas .eyebrow { color: var(--gold-light); }
.practice-areas .section-title { color: var(--white); }
.practice-areas .section-sub { color: rgba(255,255,255,0.65); }
.practice-areas .divider-gold { background: var(--gold); }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.practice-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
}
.practice-card:hover {
  background: rgba(201,168,76,0.09);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-3px);
}

.practice-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.practice-card h3 {
  color: var(--white);
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.practice-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* =========================================
   ABOUT / ATTORNEY
   ========================================= */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  font-style: italic;
}
.about-image-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.3;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  line-height: 1;
}
.about-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-text .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }

.attorney-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.attorney-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 32px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
}
.credential svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* =========================================
   PROCESS
   ========================================= */
.process-section { background: var(--gray-light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 0 24px 32px;
  position: relative;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   FREE CONSULTATION BANNER
   ========================================= */
.cta-banner {
  background: var(--gold);
  padding: 56px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--navy-dark);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 8px;
}
.cta-banner p {
  color: rgba(11,31,58,0.7);
  font-size: 1rem;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}
.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 500;
}
.contact-detail-text a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11,31,58,0.07);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-form-wrap .form-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde1e8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 14px;
  line-height: 1.5;
}

/* =========================================
   BLOG / POSTS
   ========================================= */
.blog-hero {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}
.blog-hero h1 { color: var(--white); }
.blog-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

.blog-section { background: var(--off-white); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,31,58,0.07);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-thumb-placeholder {
  color: rgba(255,255,255,0.2);
  font-size: 3rem;
}

.post-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 12px;
}
.post-meta .category { color: var(--gold); }
.post-body h2, .post-body h3 {
  font-size: 1.12rem;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--navy);
}
.post-body h2 a, .post-body h3 a {
  color: var(--navy);
}
.post-body h2 a:hover, .post-body h3 a:hover { color: var(--gold); }
.post-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 20px;
  transition: gap var(--transition);
}
.read-more:hover { gap: 10px; color: var(--gold-light); }
.read-more svg { width: 14px; height: 14px; }

/* Single post */
.single-post { background: var(--white); }
.post-header {
  background: var(--navy);
  padding: 64px 0 48px;
}
.post-header h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  max-width: 800px;
  margin-bottom: 16px;
}
.post-header .post-meta-full {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}

.post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px;
}
.post-content h2 { font-size: 1.6rem; margin: 32px 0 16px; }
.post-content h3 { font-size: 1.25rem; margin: 24px 0 12px; }
.post-content p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.2rem; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 1.2rem; }
.post-content li { margin-bottom: 8px; font-size: 1rem; color: var(--text-light); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid #dde1e8;
  color: var(--text);
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name { font-size: 1.3rem; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom a {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 20px; }

.disclaimer {
  background: #050e1c;
  padding: 16px 0;
}
.disclaimer p {
  color: rgba(255,255,255,0.25);
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}

/* =========================================
   GENERIC PAGE
   ========================================= */
.page-hero {
  background: var(--navy);
  padding: 56px 0;
}
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }

.page-content {
  padding: 64px 0;
  background: var(--white);
}
.page-content-inner {
  max-width: 820px;
}

/* =========================================
   UTILITIES
   ========================================= */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.mt-4 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }

/* No results */
.no-posts {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-light);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --max-w: 100%; }
  .section-pad { padding: 56px 0; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  .process-steps::before { display: none; }
  .cta-banner-inner { text-align: center; justify-content: center; }
  .top-bar-left { gap: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .hero-trust { gap: 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .about-badge { bottom: -12px; right: -8px; }
}
