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

:root {
  --navy: #1a1040;
  --navy-mid: #221552;
  --navy-light: #2e1e6e;
  --green: #6fc935;
  --green-dark: #4fa31f;
  --green-light: #8de050;
  --white: #ffffff;
  --off-white: #f5f7f2;
  --text: #2c2c2c;
  --text-light: #666;
  --border: #e0e0e0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,16,64,.10);
  --shadow-hover: 0 12px 40px rgba(26,16,64,.18);
  --transition: .25s ease;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--green); }

/* ===== PAGE SYSTEM ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--green);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-name { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: .04em; }
.logo-sub { display: block; font-size: .58rem; color: var(--green); letter-spacing: .12em; font-weight: 600; margin-top: -2px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-body); font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,.8); text-decoration: none; padding: 8px 12px;
  border-radius: 6px; transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green); background: rgba(111,201,53,.1); }
.btn-nav {
  margin-left: 8px; padding: 9px 20px; background: var(--green); color: var(--navy);
  border: none; border-radius: 6px; font-weight: 700; font-size: .85rem;
  cursor: pointer; transition: all var(--transition); font-family: var(--font-body);
}
.btn-nav:hover { background: var(--green-light); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 20px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(111,201,53,.12) 0%, transparent 70%),
    linear-gradient(135deg, #0d0828 0%, #1a1040 40%, #221552 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(111,201,53,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(111,201,53,.06) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236fc935' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2; padding: 80px 0;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .2em;
  color: var(--green); text-transform: uppercase; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800; line-height: .95; color: var(--white);
  margin-bottom: 24px; letter-spacing: -.01em;
}
.hero-desc {
  font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,.75);
  margin-bottom: 36px; max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.btn-primary {
  padding: 14px 32px; background: var(--green); color: var(--navy);
  border: none; border-radius: 8px; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: all var(--transition); font-family: var(--font-body);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(111,201,53,.4); }
.btn-outline {
  padding: 14px 32px; background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4); border-radius: 8px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: all var(--transition); font-family: var(--font-body);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-light {
  padding: 14px 32px; background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6); border-radius: 8px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: all var(--transition); font-family: var(--font-body);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-sm {
  padding: 9px 18px; background: var(--green); color: var(--navy);
  border: none; border-radius: 6px; font-weight: 700; font-size: .82rem;
  cursor: pointer; transition: all var(--transition); font-family: var(--font-body);
  white-space: nowrap;
}
.btn-sm:hover { background: var(--green-light); }
.btn-block { width: 100%; }

.hero-stats {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: var(--green); line-height: 1;
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .05em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.15); }

.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 50px; border: 2px solid rgba(255,255,255,.2);
  border-radius: 15px; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(20px); opacity: 0; }
}

/* ===== SECTIONS ===== */
section.section-what, section.section-featured, section.section-why,
section.section-testi, section.section-cta-banner { padding: 80px 0; }

.section-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  color: var(--green); text-transform: uppercase; margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 32px;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ===== PILLAR CARDS ===== */
.section-what { background: var(--off-white); }
.section-what .section-title { text-align: center; }
.section-what .section-eyebrow { text-align: center; display: block; }
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px;
}
.pillar-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow);
  transition: all var(--transition); cursor: pointer;
  border: 1px solid transparent;
}
.pillar-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-hover);
  border-color: var(--green);
}
.pillar-icon { width: 64px; height: 64px; margin-bottom: 20px; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.pillar-card p { font-size: .9rem; line-height: 1.65; color: var(--text-light); margin-bottom: 20px; }
.pillar-link { font-size: .85rem; font-weight: 700; color: var(--green); }

/* ===== PROPERTY CARDS ===== */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prop-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition);
  border: 1px solid var(--border);
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.prop-img {
  height: 200px; position: relative; overflow: hidden;
}
.prop-img--farm { background: linear-gradient(135deg, #2d5a1b 0%, #4a8c2a 50%, #6fc935 100%); }
.prop-img--house { background: linear-gradient(135deg, #1a1040 0%, #3a2870 50%, #6b3fa0 100%); }
.prop-img--plot { background: linear-gradient(135deg, #8B6914 0%, #c49a1f 50%, #e8c334 100%); }
.prop-img-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100' height='100' fill='none'/%3E%3Cpath d='M0 80 Q25 60 50 75 Q75 90 100 70 L100 100 L0 100Z' fill='rgba(0,0,0,.2)'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.prop-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--green); color: var(--navy);
  font-size: .72rem; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; letter-spacing: .05em; text-transform: uppercase; z-index: 2;
}
.prop-body { padding: 20px; }
.prop-body h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.prop-loc { font-size: .82rem; color: var(--text-light); margin-bottom: 10px; }
.prop-desc { font-size: .85rem; line-height: 1.6; color: var(--text-light); margin-bottom: 16px; }
.prop-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.prop-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--navy); }

/* ===== WHY SECTION ===== */
.section-why { background: var(--navy); }
.section-why .section-title { color: var(--white); }
.section-why .section-eyebrow { color: var(--green); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-body { color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 24px; font-size: .95rem; }
.why-list { list-style: none; margin-bottom: 36px; }
.why-list li { color: rgba(255,255,255,.8); padding: 8px 0; font-size: .9rem; display: flex; align-items: center; gap: 10px; }
.check { color: var(--green); font-weight: 700; font-size: 1rem; }

.why-card-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(111,201,53,.2);
  border-radius: var(--radius); padding: 20px 18px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: all var(--transition);
}
.why-card:hover { background: rgba(111,201,53,.1); border-color: var(--green); transform: translateY(-2px); }
.wc-icon { font-size: 1.6rem; flex-shrink: 0; }
.why-card strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: 4px; }
.why-card p { color: rgba(255,255,255,.55); font-size: .78rem; line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.section-testi { background: var(--off-white); }
.section-testi .section-title, .section-testi .section-eyebrow { text-align: center; display: block; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.testi-stars { color: #f5a623; font-size: 1rem; margin-bottom: 14px; }
.testi-card p { font-size: .88rem; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testi-author span { font-size: .78rem; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.section-cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner-inner h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--navy); margin-bottom: 8px;
}
.cta-banner-inner p { color: rgba(26,16,64,.75); font-size: .95rem; }
.cta-banner-btns { display: flex; gap: 16px; flex-shrink: 0; }
.cta-banner-btns .btn-primary { background: var(--navy); color: var(--white); }
.cta-banner-btns .btn-primary:hover { background: var(--navy-mid); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; padding: 120px 0 64px;
  background: var(--navy); overflow: hidden;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(111,201,53,.12) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--green), transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800; color: var(--white); line-height: 1;
}

/* ===== ABOUT ===== */
.section-about-intro { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text p { font-size: .95rem; line-height: 1.75; color: var(--text-light); margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 24px; }
.value-card {
  padding: 24px; border-left: 3px solid var(--green);
  background: var(--off-white); border-radius: 0 var(--radius) var(--radius) 0;
}
.value-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--green); opacity: .4; line-height: 1; margin-bottom: 6px; }
.value-card h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: .85rem; line-height: 1.6; color: var(--text-light); }

.section-team { padding: 80px 0; background: var(--off-white); }
.section-team .section-title, .section-team .section-eyebrow { text-align: center; display: block; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--navy);
}
.ta1 { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.ta2 { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.ta3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ta4 { background: linear-gradient(135deg, #06b6d4, #0284c7); }
.team-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: .78rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.team-card p { font-size: .83rem; line-height: 1.6; color: var(--text-light); }

.section-mission { padding: 80px 0; background: var(--navy); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mission-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(111,201,53,.2);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
}
.mission-icon { font-size: 2.5rem; margin-bottom: 16px; }
.mission-card h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--green); margin-bottom: 16px; }
.mission-card p { color: rgba(255,255,255,.7); line-height: 1.75; }

/* ===== SERVICES ===== */
.section-services { padding: 80px 0; }
.services-intro { max-width: 600px; margin: 0 auto 48px; text-align: center; }
.services-intro p { color: var(--text-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--green); }
.service-icon-wrap { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card > p { font-size: .88rem; line-height: 1.65; color: var(--text-light); margin-bottom: 16px; }
.service-list { list-style: none; }
.service-list li {
  font-size: .82rem; color: var(--text-light); padding: 5px 0;
  padding-left: 16px; position: relative;
}
.service-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--green); font-size: .75rem;
}

/* ===== PROPERTIES FULL ===== */
.section-props-full { padding: 60px 0 80px; }
.prop-filter-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px; background: var(--off-white); color: var(--text);
  border: 1px solid var(--border); border-radius: 30px;
  font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green); color: var(--navy); border-color: var(--green);
}
.props-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pf-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--transition);
}
.pf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pf-card.hidden { display: none; }
.pf-img {
  height: 200px; position: relative;
  display: flex; align-items: flex-end; padding: 16px;
}
.pf-img--f1 { background: linear-gradient(160deg, #1a3a0d 0%, #2d6e14 50%, #4fa31f 100%); }
.pf-img--f2 { background: linear-gradient(160deg, #0d3a1a 0%, #14672d 50%, #1fa360 100%); }
.pf-img--f3 { background: linear-gradient(160deg, #0a2a0a 0%, #1a5a10 50%, #3a9020 100%); }
.pf-img--h1 { background: linear-gradient(160deg, #100820 0%, #2a1060 50%, #4a20a0 100%); }
.pf-img--h2 { background: linear-gradient(160deg, #0d0828 0%, #221552 50%, #3a2870 100%); }
.pf-img--p1 { background: linear-gradient(160deg, #3a2800 0%, #7a5500 50%, #c49a1f 100%); }
.pf-img--p2 { background: linear-gradient(160deg, #3a1400 0%, #7a3a00 50%, #c46a1f 100%); }
.pf-img--c1 { background: linear-gradient(160deg, #0d1428 0%, #1a2855 50%, #2a3d80 100%); }
.pf-body { padding: 20px; }
.pf-body h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pf-details {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 10px 0 12px;
}
.pf-details span {
  font-size: .75rem; background: var(--off-white); color: var(--text);
  padding: 3px 10px; border-radius: 20px; font-weight: 500;
}
.pf-body > p { font-size: .84rem; line-height: 1.6; color: var(--text-light); margin-bottom: 14px; }

/* ===== VEHICLES ===== */
.section-vehicles { padding: 60px 0 80px; }
.vehicles-intro { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.vehicles-intro p { color: var(--text-light); }
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vehicle-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: all var(--transition);
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.vehicle-img {
  height: 180px; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.vi--pickup { background: linear-gradient(135deg, #1a2540, #2d3f6e); }
.vi--pickup::after { content: '🛻'; position: absolute; font-size: 4rem; }
.vi--tractor { background: linear-gradient(135deg, #1a3a0d, #2d6e14); }
.vi--tractor::after { content: '🚜'; position: absolute; font-size: 4rem; }
.vi--minibus { background: linear-gradient(135deg, #2a1a10, #5c3010); }
.vi--minibus::after { content: '🚌'; position: absolute; font-size: 4rem; }
.vi--truck { background: linear-gradient(135deg, #0d1a28, #1a3a55); }
.vi--truck::after { content: '🚛'; position: absolute; font-size: 4rem; }
.vi--combine { background: linear-gradient(135deg, #2a1a00, #6a4500); }
.vi--combine::after { content: '🌾'; position: absolute; font-size: 4rem; }
.vi--suv { background: linear-gradient(135deg, #1a0d28, #3a1a55); }
.vi--suv::after { content: '🚙'; position: absolute; font-size: 4rem; }
.vehicle-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--green); color: var(--navy);
  font-size: .7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; z-index: 2;
}
.vehicle-body { padding: 20px; }
.vehicle-body h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.vehicle-specs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.vehicle-specs span {
  font-size: .75rem; background: var(--off-white);
  padding: 3px 10px; border-radius: 20px; color: var(--text); font-weight: 500;
}
.vehicle-body > p { font-size: .84rem; line-height: 1.6; color: var(--text-light); margin-bottom: 16px; }
.vehicle-rate { margin-bottom: 16px; }
.rate-label { font-size: .75rem; color: var(--text-light); display: block; margin-bottom: 2px; }
.rate-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.rate-price small { font-size: .85rem; font-weight: 500; color: var(--text-light); }

.vehicle-terms {
  margin-top: 56px; background: var(--navy); border-radius: var(--radius);
  padding: 36px; color: var(--white);
}
.vehicle-terms h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--green); margin-bottom: 24px;
}
.terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.term-item { font-size: .88rem; color: rgba(255,255,255,.75); display: flex; gap: 8px; align-items: flex-start; }
.term-item strong { color: var(--white); }

/* ===== GALLERY ===== */
.section-gallery { padding: 60px 0 80px; }
.gallery-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 10px;
  cursor: pointer; background: var(--navy);
}
.gallery-item.gi--large { grid-column: span 2; }
.gallery-item.hidden { display: none; }
.gallery-img { position: absolute; inset: 0; transition: transform .4s ease; }
.gg1 { background: linear-gradient(135deg, #1a3a0d 0%, #4a8c2a 60%, #6fc935 100%); }
.gg2 { background: linear-gradient(135deg, #1a1040 0%, #4a2090 100%); }
.gg3 { background: linear-gradient(135deg, #0d1a28 0%, #1a3a55 100%); }
.gg4 { background: linear-gradient(135deg, #0a2a0a 0%, #3a9020 100%); }
.gg5 { background: linear-gradient(135deg, #3a2800 0%, #c49a1f 100%); }
.gg6 { background: linear-gradient(135deg, #1a0d28 0%, #5a2080 100%); }
.gg7 { background: linear-gradient(135deg, #0d3a1a 0%, #1fa360 100%); }
.gg8 { background: linear-gradient(135deg, #2a1a00 0%, #6a4500 100%); }
.gg9 { background: linear-gradient(135deg, #0d1428 0%, #2a3d80 100%); }
.gg10 { background: linear-gradient(135deg, #1a1040 0%, #3a2870 100%); }
.gg11 { background: linear-gradient(135deg, #0a1a2a 0%, #0a5a80 100%); }
.gg12 { background: linear-gradient(135deg, #0d1428 0%, #1a3a6e 100%); }

/* Add visual pattern to gallery items */
.gallery-img::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(255,255,255,.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(111,201,53,.1) 0%, transparent 60%);
}
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(26,16,64,.7);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity .3s; border-radius: 10px;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: .85rem; font-weight: 600; }

/* ===== CONTACT ===== */
.section-contact { padding: 60px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; margin-bottom: 48px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); line-height: 1.75; margin-bottom: 32px; font-size: .95rem; }
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  font-size: 1.4rem; width: 44px; height: 44px;
  background: var(--off-white); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: .88rem; color: var(--text-light); margin: 0; line-height: 1.6; }

.social-links { display: flex; gap: 12px; }
.social-btn {
  padding: 8px 18px; background: var(--navy); color: var(--white);
  border-radius: 6px; font-size: .82rem; font-weight: 600;
  text-decoration: none; transition: all var(--transition);
}
.social-btn:hover { background: var(--green); color: var(--navy); }

.contact-form-wrap {
  background: var(--off-white); border-radius: var(--radius); padding: 36px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .88rem; background: var(--white);
  color: var(--text); font-family: var(--font-body); transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(111,201,53,.15);
}
.form-group textarea { resize: vertical; }
.checkbox-label { display: flex !important; align-items: flex-start; gap: 10px; cursor: pointer; font-weight: 400 !important; color: var(--text-light); }
.checkbox-label input { width: auto !important; margin-top: 2px; flex-shrink: 0; }

.map-section { margin-top: 0; }
.map-placeholder {
  background: var(--navy); border-radius: var(--radius); height: 280px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(111,201,53,.2);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236fc935' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.map-inner { text-align: center; color: var(--white); }
.map-pin { font-size: 3rem; display: block; margin-bottom: 12px; }
.map-inner strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.map-inner p { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-wrap { cursor: default; margin-bottom: 16px; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); text-decoration: none; font-size: .85rem; font-weight: 600;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--navy); }
.footer-col h5 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .85rem; color: rgba(255,255,255,.55); text-decoration: none;
  transition: color var(--transition); cursor: pointer;
}
.footer-col ul li a:hover { color: var(--green); }
.footer-contact-list li { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  z-index: 2000; display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; width: 100%; max-width: 500px; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-box h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.modal-prop-name { font-size: .85rem; color: var(--green); font-weight: 600; margin-bottom: 24px; display: block; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--off-white); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--border); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 3000;
  background: var(--green); color: var(--navy); padding: 14px 24px;
  border-radius: 8px; font-weight: 700; font-size: .9rem;
  transform: translateY(100px); opacity: 0;
  transition: all .35s ease; pointer-events: none;
  box-shadow: 0 8px 30px rgba(111,201,53,.5);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .terms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed; inset: 72px 0 0; background: var(--navy);
    flex-direction: column; align-items: stretch; padding: 24px;
    gap: 8px; transform: translateX(100%); transition: transform .3s ease;
    z-index: 900; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 12px 16px; }
  .btn-nav { margin-left: 0; padding: 14px 20px; text-align: center; font-size: 1rem; }

  .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .pillar-grid, .prop-grid, .testi-grid, .services-grid { grid-template-columns: 1fr; }
  .props-full-grid { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi--large { grid-column: span 1; }

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

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns { flex-direction: column; width: 100%; }

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

  section.section-what, section.section-featured, section.section-why,
  section.section-testi, section.section-cta-banner { padding: 56px 0; }

  .why-card-stack { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
}
