/* ==========================================================================
   APEX REPAIRS — MAIN STYLESHEET
   Design tokens: Navy #16243D | Slate #3D5A73 | Accent Orange #E8622C
   Off-white #F7F5F1 | Charcoal Text #1E2228 | Success Green #2E7D5B
   Fonts: Oswald (display) / Inter (body)
   ========================================================================== */

:root {
  --navy: #16243D;
  --navy-light: #1F3454;
  --slate: #3D5A73;
  --accent: #E8622C;
  --accent-dark: #C94F1E;
  --bg: #F7F5F1;
  --white: #FFFFFF;
  --text: #1E2228;
  --text-light: #5B6472;
  --success: #2E7D5B;
  --border: #E4E0D8;

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(22, 36, 61, 0.08);
  --shadow-md: 0 8px 24px rgba(22, 36, 61, 0.12);
  --shadow-lg: 0 20px 50px rgba(22, 36, 61, 0.18);
  --radius: 14px;
  --transition: all 0.3s ease;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; border: none; cursor: pointer; background: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.section-head p { color: var(--text-light); font-size: 17px; }

/* ===== GLASS EFFECT (signature element) ===== */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ===== BUTTONS (skeuomorphic-modern hybrid) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 0 var(--accent-dark), var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--accent-dark), var(--shadow-lg);
}
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--accent-dark); }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ===== PRELOADER ===== */
.page-loader {
  position: fixed; inset: 0; background: var(--navy);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-bar { width: 60px; height: 4px; background: var(--accent); border-radius: 4px; animation: loaderPulse 1s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100% { transform: scaleX(1); } 50% { transform: scaleX(1.8); } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(22, 36, 61, 0.0);
  transition: var(--transition);
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(22, 36, 61, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.logo-text { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--white); letter-spacing: 0.5px; }
.logo-text span { color: var(--accent); }

.nav-links { display: flex; gap: 36px; }
.nav-links a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 15px; position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }

.navbar-cta { display: flex; align-items: center; gap: 24px; }
.navbar-phone { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 600; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; z-index: 1001; }
.hamburger span { width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 120px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,36,61,0.85) 0%, rgba(22,36,61,0.75) 50%, rgba(22,36,61,0.95) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px; border-radius: 30px; color: var(--white); font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(46,125,91,0.3); }

.hero-title { font-family: var(--font-display); font-size: 62px; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 22px; }
.text-accent { color: var(--accent); }
.hero-subtitle { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 60px; }

.hero-ticket {
  display: inline-block; padding: 28px 36px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.ticket-row { display: flex; align-items: center; gap: 28px; }
.ticket-stat { display: flex; flex-direction: column; align-items: flex-start; }
.stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.ticket-divider { width: 1px; height: 40px; background: var(--border); }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px;
}
.scroll-indicator span {
  display: block; width: 4px; height: 8px; background: var(--accent); border-radius: 2px;
  margin: 8px auto; animation: scrollDown 1.6s infinite;
}
@keyframes scrollDown { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(14px); } }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--navy); padding: 36px 0; }
.trust-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 500; font-size: 14px; }
.trust-item svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,98,44,0.12), rgba(232,98,44,0.04));
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--accent); }
.service-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 15px; margin-bottom: 16px; }
.service-link { color: var(--accent); font-weight: 600; font-size: 14px; }

/* ===== WHY US ===== */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-media { position: relative; }
.why-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.why-badge {
  position: absolute; bottom: -24px; right: -24px; padding: 20px 26px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); text-align: center;
}
.why-badge strong { display: block; font-family: var(--font-display); font-size: 28px; color: var(--accent); }
.why-badge span { font-size: 12px; color: var(--text-light); }
.why-content h2 { font-family: var(--font-display); font-size: 36px; color: var(--navy); margin-bottom: 16px; }
.why-content p { color: var(--text-light); margin-bottom: 24px; }
.why-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-weight: 500; }
.why-check {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(46,125,91,0.12); color: var(--success);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0;
}

/* ===== ABOUT BRIEF ===== */
.about-brief { background: var(--navy); text-align: center; }
.about-brief-inner { max-width: 700px; margin: 0 auto; }
.about-brief-inner h2 { font-family: var(--font-display); font-size: 36px; color: var(--white); margin-bottom: 18px; }
.about-brief-inner p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.about-brief .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.5); }
.about-brief .btn-outline:hover { background: var(--white); color: var(--navy); }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step { text-align: center; padding: 20px; }
.process-num {
  font-family: var(--font-display); font-size: 44px; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.5px var(--accent); margin-bottom: 12px;
}
.process-step h3 { font-family: var(--font-display); font-size: 19px; color: var(--navy); margin-bottom: 8px; }
.process-step p { color: var(--text-light); font-size: 14px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: linear-gradient(180deg, var(--bg), #EFEAE0); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stars { color: var(--accent); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--text); margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 13px; flex-shrink: 0;
}
.testimonial-author div strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-author div span { font-size: 12px; color: var(--text-light); }

/* ===== BEFORE / AFTER ===== */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ba-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.ba-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-images img { height: 180px; object-fit: cover; }
.ba-tag { display: block; padding: 14px 18px; background: var(--white); font-weight: 600; color: var(--navy); font-size: 14px; }
.ba-cta { text-align: center; margin-top: 44px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; font-family: var(--font-display); font-size: 17px; color: var(--navy); text-align: left;
}
.faq-icon { font-size: 22px; color: var(--accent); transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 4px 22px; color: var(--text-light); font-size: 15px; }
.faq-item.active .faq-answer { max-height: 200px; }

/* ===== CONTACT CTA ===== */
.contact-cta { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.contact-cta-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.contact-cta-text h2 { font-family: var(--font-display); font-size: 32px; color: var(--white); margin-bottom: 8px; }
.contact-cta-text p { color: rgba(255,255,255,0.75); }

/* ===== FOOTER ===== */
.footer { background: #101B2E; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { margin-bottom: 16px; }
.footer-col p, .footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 12px; display: block; }
.footer-col a:hover { color: var(--accent); }
.footer-col h4 { font-family: var(--font-display); color: var(--white); font-size: 16px; margin-bottom: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ===== SCROLL TOP BUTTON ===== */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: var(--white); font-size: 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; z-index: 900;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-dark); }

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== INNER PAGE HERO (used on services/about/projects/contact) ===== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 70px;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 1; max-width: 640px; }
.page-hero-content h1 {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  color: var(--white); margin-bottom: 14px; line-height: 1.15;
}
.page-hero-content p { color: rgba(255,255,255,0.85); font-size: 17px; }

/* ===== SERVICES DETAIL GRID ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-detail-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin: 4px 0 10px; }
.service-detail-card p { color: var(--text-light); font-size: 14px; margin-bottom: 16px; }
.detail-list li {
  font-size: 13px; color: var(--text); padding-left: 16px; position: relative; margin-bottom: 8px;
}
.detail-list li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}

/* ===== COMPANY STORY ===== */
.company-story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.story-content h2 { font-family: var(--font-display); font-size: 34px; color: var(--navy); margin-bottom: 18px; }
.story-content p { color: var(--text-light); margin-bottom: 16px; }

/* ===== VALUES GRID ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.value-card .service-icon { margin: 0 auto 18px; }
.value-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.value-card p { color: var(--text-light); font-size: 14px; }

/* ===== TEAM GRID ===== */
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); margin-bottom: 16px; transition: var(--transition);
}
.team-card:hover img { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card h3 { font-family: var(--font-display); font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--accent); font-weight: 500; }

/* ===== SECTION-TIGHT (smaller padding, used for filter bar) ===== */
.section-tight { padding: 40px 0 0; }

/* ===== PROJECT FILTER TABS ===== */
.filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.filter-btn {
  padding: 10px 22px; border-radius: 30px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--text-light); font-weight: 600; font-size: 14px;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ===== PROJECTS GRID ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.project-card img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover img { transform: scale(1.08); }
.project-card:hover { box-shadow: var(--shadow-lg); }

.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22,36,61,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.project-tag {
  align-self: flex-start; background: var(--accent); color: var(--white); font-size: 11px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px;
  border-radius: 20px; margin-bottom: 10px;
}
.project-overlay h3 { font-family: var(--font-display); font-size: 19px; color: var(--white); margin-bottom: 4px; }
.project-location { font-size: 13px; color: rgba(255,255,255,0.75); }

.project-card.hidden { display: none; }

/* ===== CONTACT INFO CARDS ===== */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-info-card {
  padding: 30px 26px; border-radius: var(--radius); box-shadow: var(--shadow-sm); text-align: center;
}
.contact-info-card .service-icon { margin: 0 auto 16px; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.contact-info-card p { font-weight: 600; color: var(--text); font-size: 15px; }
.contact-info-card span { font-size: 13px; color: var(--text-light); }

/* ===== CONTACT FORMS ===== */
.forms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.form-card h2 { font-family: var(--font-display); font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.form-card > p { color: var(--text-light); font-size: 14px; 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: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--bg);
  transition: var(--transition); resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent); background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,98,44,0.12);
}
.form-submit { width: 100%; margin-top: 6px; }

.form-success {
  display: none; text-align: center; margin-top: 14px; padding: 12px; border-radius: 8px;
  background: rgba(46,125,91,0.1); color: var(--success); font-weight: 600; font-size: 14px;
}
.form-success.show { display: block; }

/* ===== MAP PLACEHOLDER ===== */
.map-section { padding-bottom: 100px; }
.map-placeholder {
  height: 380px; border-radius: var(--radius); background: linear-gradient(135deg, #E4E0D8, #EFEAE0);
  border: 1.5px dashed var(--slate); display: flex; align-items: center; justify-content: center;
}
.map-placeholder-content { text-align: center; color: var(--slate); }
.map-placeholder-content svg { margin: 0 auto 10px; }
.map-placeholder-content p { font-weight: 600; font-size: 16px; }
.map-placeholder-content span { font-size: 13px; color: var(--text-light); }