/* ============================================
   Stay in Columbus GA — WhiteDoorProperties, LLC
   ============================================ */

:root {
  --navy: #04294b;
  --navy-dark: #021c34;
  --navy-light: #0d3d66;
  --gold: #c9a24b;
  --gold-light: #e2c887;
  --cream: #f7f4ee;
  --white: #ffffff;
  --gray: #5b6b7a;
  --gray-light: #eef1f4;
  --radius: 10px;
  --shadow: 0 8px 30px rgba(4, 41, 75, 0.12);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(4, 41, 75, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.logo-text span { color: var(--gold); }
.logo-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--font-body);
}

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

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.main-nav a:hover, .main-nav a.active { border-bottom-color: var(--gold); }

.nav-cta { margin-left: 8px; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: " ▾";
  font-size: 11px;
  color: var(--gold);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  background: var(--white);
  min-width: 250px;
  box-shadow: 0 12px 34px rgba(4, 41, 75, 0.18);
  border-radius: 8px;
  padding: 10px 0;
  display: none;
  z-index: 300;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 11px 22px;
  font-size: 12.5px;
  border-bottom: none;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--cream); border-bottom: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(2, 28, 52, 0.55), rgba(2, 28, 52, 0.65)), var(--hero-img, linear-gradient(135deg, #0d3d66, #04294b));
  background-size: cover;
  background-position: center;
}

.hero-content { max-width: 900px; padding: 80px 24px; }

.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.92);
}

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

/* ---------- Section basics ---------- */
section { padding: 90px 0; }

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 42px);
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto 56px;
  font-size: 17px;
}

/* ---------- Features ---------- */
.features { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 34px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 32px; height: 32px; }

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 12px;
}
.feature-card p { color: var(--gray); font-size: 15px; }

/* ---------- Property cards ---------- */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(4,41,75,0.18); }

.prop-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--gray-light);
}
.prop-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.prop-card:hover .prop-photo img { transform: scale(1.05); }

.prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}

.prop-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }

.prop-body h3 {
  font-family: var(--font-head);
  font-size: 21px;
  margin-bottom: 8px;
}

.prop-specs {
  display: flex;
  gap: 18px;
  color: var(--gray);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.prop-desc { color: var(--gray); font-size: 15px; margin-bottom: 20px; flex: 1; }

.prop-body .btn { align-self: flex-start; padding: 12px 26px; font-size: 12.5px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy); color: var(--white); }
.testimonials .section-title, .testimonials .section-eyebrow { color: var(--white); }
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-sub { color: rgba(255,255,255,0.75); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px 30px;
}

.stars { color: var(--gold-light); font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }

.testi-card blockquote {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-meta { font-size: 14px; }
.testi-meta strong { display: block; color: var(--gold-light); font-style: normal; }
.testi-meta span { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ---------- Split section (Book & Save) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--gray-light);
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; }

.split-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 18px;
}
.split-text .section-eyebrow { text-align: left; }
.split-text p { color: var(--gray); margin-bottom: 16px; }
.split-text .btn { margin-top: 12px; }

.checklist { list-style: none; margin: 20px 0; }
.checklist li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(rgba(2, 28, 52, 0.75), rgba(2, 28, 52, 0.8)), var(--cta-img, linear-gradient(135deg, #0d3d66, #021c34));
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
}
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.cta-banner p { max-width: 600px; margin: 0 auto 32px; color: rgba(255,255,255,0.9); font-size: 18px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(rgba(2, 28, 52, 0.6), rgba(2, 28, 52, 0.7)), var(--page-img, linear-gradient(135deg, #0d3d66, #04294b));
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 110px 24px;
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(34px, 5vw, 52px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 18px; max-width: 640px; margin: 0 auto; }

/* ---------- Guide cards ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.guide-photo { aspect-ratio: 16/10; background: var(--gray-light); overflow: hidden; }
.guide-photo img { width: 100%; height: 100%; object-fit: cover; }
.guide-body { padding: 26px; }
.guide-body h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 10px; }
.guide-body p { color: var(--gray); font-size: 15px; }
.guide-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.faq-item summary {
  padding: 20px 26px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 26px 22px; color: var(--gray); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info h2 { font-family: var(--font-head); font-size: 30px; margin-bottom: 16px; }
.contact-info p { color: var(--gray); margin-bottom: 24px; }

.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-weight: 500;
}
.contact-line .ico {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line .ico svg { width: 20px; height: 20px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

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

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d5dce3;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--navy);
  background: var(--white);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}

.contact-form .btn { width: 100%; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}

.footer-brand .logo-text { color: var(--white); font-size: 20px; }
.footer-brand p { margin-top: 14px; color: rgba(255,255,255,0.65); }

.site-footer h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); transition: color 0.2s; }
.site-footer a:hover { color: var(--gold-light); }

.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row a:hover { border-color: var(--gold-light); }
.social-row svg { width: 17px; height: 17px; fill: currentColor; }

.newsletter { display: flex; gap: 0; margin-top: 6px; }
.newsletter input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}
.newsletter button {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 12px 18px;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
}
.newsletter button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin: 0 8px; }
.footer-bottom strong { color: rgba(255,255,255,0.85); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .features-grid, .props-grid, .testi-grid, .guide-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: 0 12px 20px rgba(4,41,75,0.12);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .dropdown {
    position: static;
    display: block;
    box-shadow: none;
    padding: 4px 0 0 16px;
    min-width: 0;
  }
  .has-dropdown > a::after { content: ""; }
  .features-grid, .props-grid, .testi-grid, .guide-grid, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  section { padding: 64px 0; }
}
