/* ============================================
   MEGA REALTY — Global Styles
   ============================================ */

:root {
  --burgundy: #6f1e1c;
  --burgundy-dark: #4a1412;
  --burgundy-light: #8a2725;
  --green: #8ac711;
  --green-dark: #6ea00e;
  --yellow: #ffff00;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-100: #f0efec;
  --gray-200: #e0ddd8;
  --gray-400: #a09d96;
  --gray-600: #6b6860;
  --gray-800: #2d2b28;
  --black: #1a1917;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.99);
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
  height: 50px;
}

/* Nav links with dropdowns */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links > li > a:hover {
  color: var(--burgundy);
  background: rgba(111, 30, 28, 0.05);
}

/* Dropdown arrow */
.nav-links > li > a .arrow {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.nav-links > li:hover > a .arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  margin-top: 8px;
}

.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--gray-800);
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 400;
}

.nav-dropdown a:hover {
  background: var(--off-white);
  color: var(--burgundy);
}

/* Nav CTA */
.nav-cta {
  background: var(--burgundy) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  background: var(--burgundy-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(111, 30, 28, 0.25);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 199, 17, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-burgundy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-burgundy:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(111, 30, 28, 0.3);
}

/* ============================================
   SECTION HELPERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(111, 30, 28, 0.8) 0%, rgba(26, 25, 23, 0.65) 50%, rgba(26, 25, 23, 0.8) 100%);
  z-index: 1;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 32px;
  animation: fadeUp 1s ease-out 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138, 199, 17, 0.12);
  border: 1px solid rgba(138, 199, 17, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--burgundy-dark), var(--burgundy), var(--burgundy-dark));
}

.stats-grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.05); }

.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span { color: var(--green); }

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 48px;
  background: var(--off-white);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   AREAS
   ============================================ */
.areas {
  padding: 120px 48px;
  background: var(--white);
}

.areas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-card {
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.area-card:hover img { transform: scale(1.08); }

.area-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(111, 30, 28, 0.9) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: background 0.4s ease;
}

.area-card:hover .area-overlay {
  background: linear-gradient(to top, rgba(111, 30, 28, 0.95) 0%, rgba(111, 30, 28, 0.2) 70%);
}

.area-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.area-count {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ============================================
   WHY MEGA / AGENT CTA
   ============================================ */
.why-mega {
  padding: 120px 48px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-mega::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111, 30, 28, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.why-mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-mega-content .section-label { color: var(--green); }
.why-mega-content .section-title { color: var(--white); }
.why-mega-content .section-desc { color: rgba(255,255,255,0.6); }

.why-mega-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(138, 199, 17, 0.2);
  transform: translateX(4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(138, 199, 17, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green);
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.agent-cta-card {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.agent-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(138, 199, 17, 0.15) 0%, transparent 70%);
}

.agent-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
}

.commission-highlight {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin: 16px 0;
  position: relative;
}

.commission-highlight::after {
  content: 'Commission';
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.agent-cta-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
  position: relative;
}

.agent-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

.agent-detail .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(138, 199, 17, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.btn-agent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.btn-agent:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 199, 17, 0.4);
}

/* ============================================
   PROPERTY MANAGEMENT
   ============================================ */
.prop-mgmt {
  padding: 120px 48px;
  background: var(--off-white);
}

.prop-mgmt-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.prop-mgmt-image {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.prop-mgmt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mgmt-pricing {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
}

.price-item-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
}

.price-item-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--burgundy);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 48px;
  background: var(--white);
}

.testimonial-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--burgundy);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 16px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-800);
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray-400);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 48px;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(138, 199, 17, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--white);
  padding: 72px 48px 36px;
  color: var(--gray-500);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-500);
  max-width: 300px;
  margin-top: 16px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  padding: 5px 0;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-400);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-mega-inner { grid-template-columns: 1fr; gap: 48px; }
  .prop-mgmt-inner { grid-template-columns: 1fr; gap: 48px; }
  .prop-mgmt-image { height: 360px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    flex-direction: column;
    padding: 16px 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.03);
    margin: 4px 0;
    display: none;
  }
  .nav-links > li.dropdown-open .nav-dropdown { display: block; }
  .nav-dropdown a { color: var(--gray-600); }
  .nav-dropdown a:hover { background: rgba(111,30,28,0.05); color: var(--burgundy); }
  .mobile-toggle { display: flex; }
  .hero { min-height: 90vh; }
  .services, .areas, .why-mega, .prop-mgmt, .testimonials { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .agent-cta-card { padding: 36px 28px; }
  .commission-highlight { font-size: 56px; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
