@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
  --green: #6BBF3A;
  --green-dark: #3D8B1F;
  --bg-dark: #0D0D0D;
  --surface-dark: #161616;
  --surface-light: #F7F9F4;
  --text-light: #FFFFFF;
  --text-dark: #1A1A1A;
  --muted: #6B7280;
  --accent: #6BBF3A;
  --usp-bg: #1A3A0A;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --nav-height: 64px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--text-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--green);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--green);
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--text-light);
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(10px);
}
.nav.scrolled {
  background: var(--bg-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo svg {
  height: 40px;
  width: 260px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--green);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-phone {
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--green);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-cta:hover {
  background: var(--green-dark);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  min-width: 380px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu a {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: rgba(107,191,58,0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}
.mobile-menu a:hover {
  color: var(--green);
}

@media (max-width: 1024px) {
  .nav-links, .nav-right .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-right .nav-phone {
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: 80px;
    padding-bottom: 3rem;
  }
}
@media (max-width: 480px) {
  .nav-logo svg {
    width: 180px;
  }
  .nav-logo svg text {
    font-size: 11px;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-light);
}
.hero video,
.hero-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--text-light);
  opacity: 0.7;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ─── SERVICE HERO (sub-pages) ─── */
.service-hero {
  position: relative;
  height: 55vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-light);
  background-size: cover;
  background-position: center;
}
.service-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.70) 100%);
  z-index: 1;
}
.service-hero .container, .page-hero .container {
  position: relative;
  z-index: 2;
}
.service-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.service-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}
.service-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.service-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--green);
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ─── SECTIONS ─── */
.section {
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
}
.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
.section-light {
  background: var(--surface-light);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: scale(1.03);
  border-bottom-color: var(--green);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover img {
  transform: scale(1.05);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%);
  z-index: 1;
}
.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
  color: var(--text-light);
}
.service-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.service-card-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}
.service-card-content .card-link {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}

/* ─── USP STRIP ─── */
.usp-strip {
  background: var(--usp-bg);
  color: var(--text-light);
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.usp-item .usp-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.usp-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.usp-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 768px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}
.about-quote {
  background: var(--usp-bg);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--text-light);
}
.about-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.about-quote cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--green);
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ─── FACEBOOK ─── */
.facebook-section {
  text-align: center;
}
.fb-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0 1rem;
}
.fb-fallback {
  font-size: 0.9rem;
  color: var(--muted);
}
.fb-fallback a {
  color: var(--green);
  font-weight: 600;
}

/* ─── MAP ─── */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  margin-top: 2rem;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition);
  background: #fff;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.contact-form button {
  width: 100%;
  justify-content: center;
  text-align: center;
}
form .btn-primary, form button[type="submit"] {
  width: 100%;
  justify-content: center;
}
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.contact-info {
  background: var(--surface-dark);
  color: var(--text-light);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.contact-info-item .icon {
  font-size: 1.5rem;
}
.contact-info-item a {
  color: var(--green);
  font-weight: 600;
}
.contact-info-item.phone a {
  font-size: 1.5rem;
  font-family: var(--font-heading);
}
.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-phone {
  margin-bottom: 1.5rem;
}
.contact-phone a {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}
.contact-detail {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.contact-detail a {
  color: var(--green);
  font-weight: 600;
}
.contact-tagline {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-style: italic;
}
.contact-info-tagline {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-style: italic;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success h3 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 1.5rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo svg {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-tagline {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
}
.footer h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--green);
}
.footer-links a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--green);
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-bottom a {
  color: var(--green);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── SERVICE PAGE CONTENT ─── */
.service-content-grid {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.service-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.service-content ul {
  list-style: none;
  margin-bottom: 2.5rem;
}
.service-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  color: #374151;
}
.service-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.process-step {
  background: var(--surface-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
}
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* Sidebar */
.service-sidebar .sidebar-cta {
  background: var(--green);
  border-radius: 16px;
  padding: 2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1.5rem;
}
.sidebar-cta h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.sidebar-cta .sidebar-phone {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}
.sidebar-cta .sidebar-email {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.sidebar-back {
  display: block;
  text-align: center;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
}
.sidebar-back:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .service-content-grid { grid-template-columns: 1fr; }
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--usp-bg);
  color: var(--text-light);
  text-align: center;
  padding: 3rem 1.5rem;
}
.cta-banner h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.cta-banner a {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

/* ─── RELATED SERVICES ─── */
.related-services {
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ─── */
/* ─── SELECT DROPDOWN ─── */
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath d=%27M2 4l4 4 4-4%27 fill=%27none%27 stroke=%27%236B7280%27 stroke-width=%271.5%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ─── ANIMATIONS ─── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Map + Phone section ─────────────────────────────────── */
.map-fb-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.map-col {
  height: 580px;
}

.map-col iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Phone mockup */
.phone-col {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-frame {
  width: 300px;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 14px 10px 20px;
  box-shadow:
    0 0 0 2px #333,
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 0 0 1px #444;
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 26px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.phone-notch::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #2a2a2a;
  border-radius: 50%;
  border: 2px solid #333;
}

.phone-screen {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  height: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.phone-screen .fb-page,
.phone-screen iframe {
  width: 100% !important;
  height: 100% !important;
}

.phone-home-bar {
  width: 100px;
  height: 4px;
  background: #444;
  border-radius: 2px;
  margin: 12px auto 0;
}

.fb-phone-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

/* Hide old fallback text if FB loads */
.fb-page ~ .fb-phone-fallback { display: none; }

@media (max-width: 900px) {
  .map-fb-grid {
    grid-template-columns: 1fr;
  }
  .map-col {
    height: 350px;
  }
  .phone-frame {
    width: 260px;
  }
}
