/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #9B1B30;
  --primary-dark: #7A1525;
  --primary-light: #B93048;
  --dark: #141416;
  --dark-gray: #1E1E22;
  --medium-gray: #6B7280;
  --light-gray: #F3F4F6;
  --lighter-gray: #F9FAFB;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-top {
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 6px 0;
}

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

.header-top a {
  color: var(--gold-light);
  transition: color var(--transition);
}

.header-top a:hover {
  color: var(--white);
}

.header-main {
  padding: 14px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: -2px;
}

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

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(164, 30, 53, 0.06);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #141416 0%, #1C1018 40%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
}

.hero-text {
  flex: 1;
}

.hero-photo {
  flex: 0 0 300px;
}

.hero-photo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 4px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(164, 30, 53, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: #B8963E;
  transform: translateY(-1px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E5E7EB;
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid #E5E7EB;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(164, 30, 53, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--medium-gray);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #141416 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta-banner h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #141416 0%, #1C1018 40%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT PROFILE ===== */
.about-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.profile-sidebar {
  background: var(--lighter-gray);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #E5E7EB;
  position: sticky;
  top: 100px;
}

.profile-avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
}

.profile-sidebar h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-sidebar .title {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.profile-sidebar .brokerage {
  color: var(--medium-gray);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.profile-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.profile-contact-item a {
  color: var(--primary);
}

.profile-contact-item a:hover {
  text-decoration: underline;
}

.icon-sm {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.bio-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  margin-top: 32px;
}

.bio-content h2:first-child {
  margin-top: 0;
}

.bio-content p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 16px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.highlight-item {
  background: var(--lighter-gray);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid #E5E7EB;
}

.highlight-item .number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.highlight-item .label {
  font-size: 0.8rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--medium-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: rgba(164, 30, 53, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail .text strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-detail .text a,
.contact-detail .text span {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.contact-detail .text a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--lighter-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #E5E7EB;
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D1D5DB;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 27, 48, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* ===== AREAS SERVED ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.area-tag {
  background: var(--lighter-gray);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.area-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(155, 27, 48, 0.04);
}

/* ===== TESTIMONIAL STYLE ===== */
.testimonial-section {
  background: var(--lighter-gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
  border: 1px solid #E5E7EB;
  text-align: center;
}

.testimonial-section blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 16px;
}

.testimonial-section .author {
  font-weight: 600;
  color: var(--primary);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: #9CA3AF;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #2D2D32;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #6B7280;
  margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid #E5E7EB;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-split {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-photo {
    flex: none;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-profile {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-top .container {
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-photo img {
    width: 220px;
    height: 220px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== NAV DROPDOWN ===== */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  z-index: 1001;
  padding: 8px 0;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.88rem;
  border-radius: 0;
}

.nav-links .dropdown-menu a:hover {
  background: rgba(164, 30, 53, 0.06);
}

/* ===== IDX WIDGET CONTAINER ===== */
.idx-container {
  min-height: 500px;
  background: var(--lighter-gray);
  border: 2px dashed #D1D5DB;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.idx-container .placeholder-text {
  color: var(--medium-gray);
  font-size: 1rem;
}

.idx-container .placeholder-text h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.idx-container .placeholder-text code {
  background: #E5E7EB;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* ===== LEAD FORM SECTIONS ===== */
.lead-section {
  padding: 60px 0;
}

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

.lead-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.lead-info p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.lead-form {
  background: var(--lighter-gray);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid #E5E7EB;
}

.lead-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

/* ===== STEP LIST ===== */
.steps-list {
  counter-reset: step;
  padding: 0;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== RESOURCE CARDS ===== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.resource-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.resource-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.resource-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ===== MORTGAGE CALCULATOR ===== */
.calculator-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

.calculator-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.calc-result {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}

.calc-result .label {
  font-size: 0.85rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-result .amount {
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 4px;
}

/* ===== TOOLS GRID ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tool-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.tool-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tool-card .icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.tool-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card-body {
  padding: 24px;
}

.blog-card .date {
  font-size: 0.8rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--dark);
  transition: color var(--transition);
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-card .read-more:hover {
  text-decoration: underline;
}

/* ===== CITY SEARCH CARDS ===== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  transition: transform var(--transition);
}

.city-card:hover {
  transform: translateY(-4px);
}

.city-card .city-overlay {
  position: relative;
  z-index: 1;
  padding: 20px;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.city-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.city-card span {
  color: var(--gold-light);
  font-size: 0.85rem;
}

/* ===== WHY CHOOSE ME ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  text-align: center;
  padding: 24px 16px;
}

.why-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--medium-gray);
  line-height: 1.5;
}

/* ===== ADDITIONAL RESPONSIVE ===== */
@media (max-width: 900px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .city-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
  }

  .nav-links .dropdown-menu {
    display: block;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
