/* =================================================
   RESET / SAFETY
================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
}

/* =================================================
   BRAND VARIABLES
================================================= */
:root {
  --brand-yellow: #FFD700;
  --brand-black: #000;
  --text-dark: #333;
}

/* =================================================
   BASE TYPOGRAPHY
================================================= */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  padding-bottom: 90px; /* space for mobile sticky bar */
}

h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
  color: var(--brand-black);
}

h2 {
  font-size: 1.8rem;
  margin: 0 0 14px;
  color: var(--brand-black);
}

p {
  max-width: 68ch;
  margin: 0 0 16px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

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

/* Mobile type scaling */
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  p  { font-size: 0.95rem; }
}

/* =================================================
   LAYOUT
================================================= */
.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* =================================================
   HEADER / NAV
================================================= */
.site-header {
  background: var(--brand-yellow);
  border-bottom: 4px solid var(--brand-black);
  position: relative;
}

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

.logo img {
  height: 60px;
}

/* Nav links */
.main-nav {
  display: flex;
  gap: 18px;
}

.main-nav a {
  font-weight: 600;
  color: var(--brand-black);
}

.main-nav a.cta {
  background: var(--brand-black);
  color: var(--brand-yellow);
  padding: 8px 14px;
  border-radius: 6px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-black);
}

/* Mobile nav */
@media (max-width: 900px) {
  .logo img {
    height: 48px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-yellow);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-bottom: 4px solid var(--brand-black);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
  }
}

/* =================================================
   BUTTONS
================================================= */
.button {
  display: inline-block;
  background: var(--brand-black);
  color: var(--brand-yellow);
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
}

/* =================================================
   QUOTE FORM
================================================= */
.form-wrapper {
  display: flex;
  justify-content: center;
}

.quote-form {
  max-width: 860px;
  width: 100%;
  padding: 40px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 64px;
}

.quote-form label {
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.quote-form textarea {
  min-height: 120px;
}

.full-width {
  grid-column: 1 / -1;
}

.quote-form button {
  grid-column: 1 / -1;
  background: var(--brand-black);
  color: var(--brand-yellow);
  padding: 12px 22px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* Mobile form */
@media (max-width: 700px) {
  .quote-form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .quote-form button {
    width: 100%;
  }
}

/* =================================================
   GALLERY
================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* =================================================
   MAP
================================================= */
.map-section {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.map-section iframe {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  border: 0;
}

/* =================================================
   FOOTER (DESKTOP + MOBILE)
================================================= */
footer {
  background: var(--brand-yellow);
  color: var(--brand-black);
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer p {
  margin-top: 20px;
  font-weight: 600;
}

/* =================================================
   MOBILE STICKY CALL / TEXT
================================================= */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--brand-yellow);
    display: flex;
    justify-content: space-around;
    padding: 14px;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  }

  .mobile-cta-bar a {
    font-weight: 700;
    color: var(--brand-black);
  }
}

/* =================================================
   DESKTOP STICKY BAR
================================================= */
@media (min-width: 769px) {
  .sticky-bar {
    background: var(--brand-yellow);
    border-top: 4px solid var(--brand-black);
  }

  .sticky-bar a {
    color: var(--brand-black);
    font-weight: 700;
  }
}
/* =========================
   STICKY BAR LAYOUT FIX
========================= */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
}

/* Each button = 50% */
.call-btn,
.text-dropup {
  flex: 1;
  text-align: center;
}

/* Call button */
.call-btn {
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-weight: 700;
  padding: 16px 0;
}

/* Text button */
.text-btn {
  width: 100%;
  background: var(--brand-yellow);
  color: var(--brand-black);
  border: none;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 0;
  cursor: pointer;
}

/* =========================
   DROP-UP MENU (CONTAINED)
========================= */
.text-dropup {
  position: relative;
}

.dropup-menu {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  min-width: 200px;
  overflow: hidden;
  margin-bottom: 10px;
  z-index: 1000;
}

.dropup-menu a {
  padding: 14px 16px;
  font-weight: 600;
  color: var(--brand-black);
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.dropup-menu a:last-child {
  border-bottom: none;
}

.dropup-menu a:hover {
  background: var(--brand-yellow);
}

/* Show menu */
.text-dropup.open .dropup-menu {
  display: flex;
}


/* =================================================
   PAGE SPACING FIX (PREVENT OVERLAP)
================================================= */

body {
  padding-bottom: 80px; /* ensures content never hides behind sticky bar */
}

/* =================================================
   DESKTOP POLISH (KEEP SAME BAR)
================================================= */
@media (min-width: 769px) {
  .sticky-bar {
    max-width: 1100px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px 12px 0 0;
  }
}
