:root {
  --color-navy: #101828;
  --color-midnight: #1f2937;
  --color-teal: #f05a28;
  --color-sand: #f7b28a;
  --color-sky: #fff7f1;
  --color-slate: #667085;
  --color-white: #ffffff;
  --color-gray: #f9fafb;
  --color-stone: #f2f4f7;
  --color-cream: #fff2ea;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
  --max-width: 1200px;
  font-size: 16px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  margin: 0;
  color: var(--color-midnight);
  background: #fdfdfd;
  line-height: 1.6;
}

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

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(6, 24, 43, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-midnight);
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-sand));
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.8rem;
  display: grid;
  place-items: center;
}

/* Hamburger Menu Button - Hidden by default, shown on mobile/tablet */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  margin-left: auto;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--color-midnight);
  text-decoration: none;
  font-weight: 500;
}

/* Show hamburger on tablets and mobile, hide desktop nav */
@media (max-width: 968px) {
  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav-links:not(.active) {
    display: none !important;
    visibility: hidden !important;
  }
  
  .nav-links.active {
    display: flex !important;
    visibility: visible !important;
  }
}

/* Show desktop nav on larger screens, hide hamburger */
@media (min-width: 969px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .nav-links {
    display: flex !important;
  }
  
  .nav-links.active {
    display: flex !important;
  }
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-midnight);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
  pointer-events: none;
}

/* Ensure hamburger is visible on all backgrounds */
.mobile-menu-toggle {
  background: transparent;
}

.mobile-menu-toggle:hover {
  opacity: 0.8;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  background: linear-gradient(180deg, var(--color-white), var(--color-sky));
  color: var(--color-midnight);
  padding: 4.5rem 0 5.5rem;
  border-bottom: 1px solid var(--color-stone);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 90, 40, 0.15), transparent 70%);
  top: -180px;
  right: -120px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.hero-shell {
  background: var(--color-white);
  border-radius: 34px;
  padding: 2.5rem;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-teal);
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.lead {
  font-size: 1.1rem;
  color: var(--color-slate);
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.5rem;
}

.hero-benefits li::before {
  content: "-";
  color: var(--color-teal);
  margin-right: 0.6rem;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--color-teal), var(--color-sand));
  color: var(--color-white);
  box-shadow: 0 12px 30px rgba(240, 90, 40, 0.35);
}

.btn-outline {
  border: 1px solid var(--color-teal);
  color: var(--color-teal);
  padding: 0.75rem 1.6rem;
  background: var(--color-white);
}

.btn-link {
  color: var(--color-teal);
  background: transparent;
  padding: 0;
  text-decoration: underline;
  font-weight: 600;
}

.hero-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem 0.25rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-stone);
  color: var(--color-midnight);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  display: grid;
  gap: 0.4rem;
}

input,
select,
textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--color-white);
  color: var(--color-midnight);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  background: var(--color-gray);
  border-color: rgba(15, 23, 42, 0.15);
}

.hero-form ::placeholder {
  color: var(--color-slate);
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--color-slate);
  margin: 0;
}

.trust-bar {
  background: var(--color-white);
  padding: 2rem 0;
  box-shadow: inset 0 1px 0 rgba(6, 24, 43, 0.08);
}

.section-shell {
  background: var(--color-white);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
  padding: 1.8rem 2rem;
  border: 1px solid var(--color-stone);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
}

.trust-grid > div {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.2rem 0 0;
}

.two-col {
  padding: 4rem 0;
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

p {
  margin-top: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.feature-list li::before {
  content: "-";
  color: var(--color-teal);
  margin-right: 0.6rem;
  font-weight: 700;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--color-stone);
}

.highlight {
  background: linear-gradient(145deg, var(--color-sky), var(--color-white));
  border: 1px solid var(--color-stone);
}

.why-now {
  background: var(--color-gray);
  color: var(--color-midnight);
  padding: 4rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.cards-grid .card {
  background: var(--color-white);
  color: var(--color-midnight);
  border: 1px solid var(--color-stone);
}

.process,
.investment,
.download,
.testimonials,
.faq {
  padding: 4rem 0;
}

.section-head {
  text-align: left;
  max-width: 720px;
  margin-bottom: 2rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-teal);
  color: var(--color-white);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(240, 90, 40, 0.25);
}

.investment {
  background: var(--color-white);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.stat-card {
  text-align: center;
  border: 1px solid rgba(6, 24, 43, 0.08);
}

.note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-slate);
}

.download {
  background: var(--color-sky);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.download-form input {
  border: 1px solid rgba(6, 24, 43, 0.1);
  background: var(--color-white);
  color: var(--color-midnight);
}

.download-form ::placeholder {
  color: var(--color-slate);
}

.download-form .btn-primary {
  width: 100%;
}

.testimonials .quote {
  background: var(--color-white);
  border-left: 4px solid var(--color-teal);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.site-footer {
  background: var(--color-midnight);
  color: var(--color-white);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
}

.footer-cta {
  text-align: right;
}

.copyright {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 968px) {
  .site-header .container {
    flex-direction: row;
    gap: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  input,
  select,
  textarea {
    background: var(--color-white);
    color: var(--color-midnight);
  }

  .hero-form {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-midnight);
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    border: 1px solid rgba(6, 24, 43, 0.1);
    color: var(--color-midnight);
    background: var(--color-gray);
  }

  .footer-cta {
    text-align: left;
  }

  .hero-shell {
    padding: 1.8rem;
  }
}


.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.hero-visual img,
.hero-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--color-teal);
  color: var(--color-white);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.text-accent {
  color: var(--color-teal);
}

.hero-wide {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-stone);
  height: 240px;
}

.why-visture {
  background: var(--color-white);
  padding: 4rem 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.mega-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.accent-list li {
  display: flex;
  align-items: center;
}

.reason-stack {
  display: grid;
  gap: 1rem;
}

.reason-card {
  background: var(--color-cream);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: none;
}

.mini-gallery {
  background: var(--color-gray);
  padding: 4rem 0;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-stone);
  background: var(--color-white);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--color-midnight);
}

.process-highlight {
  background: var(--color-midnight);
  color: var(--color-white);
  padding: 4rem 0;
}

.process-highlight .section-head p {
  color: rgba(255, 255, 255, 0.8);
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.process-card {
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.process-card.accent {
  background: var(--color-teal);
  border-color: transparent;
  color: var(--color-white);
}

.step-count {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.cta-banner {
  background: var(--color-sky);
  padding: 3rem 0;
  border-top: 1px solid var(--color-stone);
  border-bottom: 1px solid var(--color-stone);
}

.cta-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.cta-banner .hero-cta {
  justify-content: flex-end;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cta-banner .hero-cta {
    justify-content: flex-start;
  }
}

.cities-carousel {
  background: var(--color-white);
  padding: 4rem 0;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.cities-carousel-track {
  display: flex;
  gap: 1rem;
  animation: scroll-right 60s linear infinite;
  will-change: transform;
}

.cities-carousel-track:hover {
  animation-play-state: paused;
}

.city-card {
  flex: 0 0 auto;
  min-width: 180px;
  padding: 1.2rem 1.8rem;
  background: var(--color-cream);
  border: 2px solid var(--color-sand);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-midnight);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  white-space: nowrap;
}

.city-card:hover {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(240, 90, 40, 0.3);
}

@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .city-card {
    min-width: 140px;
    padding: 1rem 1.4rem;
    font-size: 0.9rem;
  }
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  margin-top: 0.5rem;
  border: 1px solid var(--color-stone);
}

.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-midnight);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--color-cream);
  color: var(--color-teal);
}

/* Homepage Hero */
.hero-homepage {
  padding: 5rem 0;
}

.hero-homepage .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: none;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
  max-height: 500px;
  display: flex;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 968px) {
  .hero-homepage .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-image {
    min-height: 350px;
    max-height: 400px;
  }
}

/* Coach Homes Showcase */
.coach-homes-showcase {
  background: linear-gradient(180deg, var(--color-white), var(--color-sky));
  padding: 6rem 0;
  border-bottom: 1px solid var(--color-stone);
  position: relative;
}

.coach-homes-showcase::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 90, 40, 0.1), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.coach-homes-showcase .services-title h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  background: linear-gradient(135deg, var(--color-midnight), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coach-homes-showcase .service-card.featured-service {
  border: 2px solid var(--color-teal);
  box-shadow: 0 8px 24px rgba(240, 90, 40, 0.15);
  background: var(--color-white);
  position: relative;
}

.coach-homes-showcase .service-card.featured-service::before {
  content: "Featured";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-teal);
  color: var(--color-white);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.coach-homes-showcase .service-card.featured-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(240, 90, 40, 0.2);
}

/* Services Showcase */
.services-showcase {
  background: var(--color-gray);
  padding: 5rem 0;
}

.services-subtitle {
  text-align: center;
  color: var(--color-slate);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.services-title {
  text-align: center;
  margin-bottom: 3rem;
}

.services-title h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-midnight);
  line-height: 1.2;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--color-stone);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.service-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--color-gray);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-midnight);
  line-height: 1.3;
}

.service-card p {
  color: var(--color-slate);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dc2626;
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  width: fit-content;
  border: none;
  cursor: pointer;
}

.btn-learn-more:hover {
  background: #b91c1c;
  transform: translateX(2px);
}

.btn-learn-more svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Featured In Section */
.featured-in {
  background: var(--color-gray);
  padding: 4rem 0;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.featured-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.featured-logo:hover {
  opacity: 1;
}

.logo-placeholder {
  padding: 2rem 3rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 2px dashed var(--color-stone);
  color: var(--color-slate);
  font-weight: 600;
  text-align: center;
  min-width: 180px;
}

/* Testimonials Carousel */
.testimonials-carousel-section {
  background: var(--color-white);
  padding: 5rem 0;
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  padding: 1rem 0;
}

.testimonials-carousel-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 auto;
  width: 420px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--color-stone);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--color-midnight);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--color-midnight);
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--color-slate);
  font-size: 0.9rem;
}

/* Google Reviews Carousel */
.google-reviews-section {
  background: var(--color-sky);
  padding: 5rem 0;
  overflow: hidden;
}

.google-reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  padding: 1rem 0;
}

.google-reviews-carousel-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

.google-review-card {
  flex: 0 0 auto;
  width: 380px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--color-stone);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.review-author-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-sand));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-author-info strong {
  display: block;
  color: var(--color-midnight);
  margin-bottom: 0.25rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.google-badge {
  background: #4285f4;
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.review-text {
  color: var(--color-midnight);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-date {
  color: var(--color-slate);
  font-size: 0.85rem;
}

/* Cities Hub Page */
.cities-hub {
  background: var(--color-white);
  padding: 5rem 0;
}

.cities-grid-hub {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.city-card-hub {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--color-stone);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.city-card-hub:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  border-color: var(--color-teal);
}

.city-card-hub h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-midnight);
}

.city-card-hub > p {
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.city-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-cream);
  border-radius: var(--radius-md);
}

.city-stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.city-stat strong {
  font-size: 1rem;
  color: var(--color-teal);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.city-stat span {
  font-size: 0.75rem;
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.city-card-hub .btn-learn-more {
  margin-top: auto;
}

/* Mobile Menu Styles - Includes Tablets */
@media (max-width: 968px) {
  .site-header .container {
    position: relative;
    flex-wrap: nowrap;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    order: 2;
    flex-shrink: 0;
  }
  
  .logo {
    order: 1;
    flex-shrink: 0;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -4px 0 20px rgba(15, 23, 42, 0.15);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1000;
    display: none !important;
  }
  
  .nav-links.active {
    right: 0;
    display: flex !important;
  }
  
  .nav-item {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-stone);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
  }
  
  .nav-item::after {
    content: '';
  }
  
  .nav-dropdown > .nav-item::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-slate);
    transition: transform 0.3s ease;
  }
  
  .nav-dropdown.active > .nav-item::after {
    content: '−';
    transform: rotate(0deg);
  }
  
  .dropdown-menu {
    display: none;
    width: 100%;
    padding: 0;
    margin: 0;
    background: var(--color-gray);
    border: none;
    box-shadow: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav-dropdown.active .dropdown-menu {
    display: block;
    max-height: 500px;
    padding: 0.5rem 0;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--color-slate);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    transition: background 0.2s ease, color 0.2s ease;
  }
  
  .dropdown-menu a:hover {
    background: var(--color-cream);
    color: var(--color-teal);
  }
  
  .nav-links .btn {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }
  
  .testimonial-card,
  .google-review-card {
    width: 320px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-logos {
    gap: 2rem;
  }
  
  .cities-grid-hub {
    grid-template-columns: 1fr;
  }
  
  .city-stats {
    grid-template-columns: 1fr;
  }
  
  .city-card {
    min-width: 150px;
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .carousel-wrapper {
    margin-top: 1.5rem;
  }
}

/* Home Renovations Page Styles */
.renovations-hero {
  background: var(--color-white);
  padding: 4rem 0;
}

.renovations-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.renovations-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-midnight);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-image-inline {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  display: block;
}

.company-tagline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.renovations-quote-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem 0.25rem 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--color-stone);
}

.renovations-quote-form h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-midnight);
  margin-bottom: 0.5rem;
}

.renovations-quote-form > p {
  color: var(--color-slate);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.renovations-quote-form form {
  display: grid;
  gap: 1.25rem;
}

.renovations-quote-form label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-midnight);
}

.renovations-quote-form input,
.renovations-quote-form select {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: var(--color-gray);
  color: var(--color-midnight);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
  width: 100%;
}

.renovations-quote-form input:focus,
.renovations-quote-form select:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(240, 90, 40, 0.1);
}

.renovations-quote-form .btn-primary {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Reduce spacing in form containers */
.hero-form > div:last-child,
.renovations-quote-form > div:last-child {
  margin-bottom: 0;
  margin-top: 0;
}

.hero-form > div[style*="height: 939px"],
.renovations-quote-form > div[style*="height: 939px"] {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

/* Target all divs containing iframes in forms - more compatible selector */
.hero-form > div > iframe,
.renovations-quote-form > div > iframe {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

.hero-form > div:last-of-type,
.renovations-quote-form > div:last-of-type {
  margin-bottom: 0 !important;
}

.hero-form iframe,
.renovations-quote-form iframe {
  display: block;
  margin: 0;
  padding: 0;
}

/* Renovations Services Section */
.renovations-services {
  background: var(--color-gray);
  padding: 5rem 0;
}

.section-title-center {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-midnight);
  margin-bottom: 4rem;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  height: 400px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-midnight);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.service-content p {
  font-size: 1.1rem;
  color: var(--color-slate);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.service-buttons .btn-link {
  color: var(--color-teal);
  text-decoration: underline;
  font-weight: 600;
}

/* Renovations Testimonials */
.renovations-testimonials {
  background: var(--color-white);
  padding: 5rem 0;
}

.google-reviews-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.google-badge-large {
  background: #4285f4;
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stars {
  color: #fbbf24;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-midnight);
}

.testimonials-grid-renovations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card-renovations {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--color-stone);
}

.testimonial-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar-small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-sand));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-header strong {
  display: block;
  color: var(--color-midnight);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-stars-small {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testimonial-snippet {
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.read-more-link {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.read-more-link:hover {
  text-decoration: underline;
}

/* Renovations Contact Section */
.renovations-contact {
  background: var(--color-midnight);
  color: var(--color-white);
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.contact-cta h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-white);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.contact-info {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.contact-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Service Areas Section */
.service-areas {
  background: var(--color-white);
  padding: 5rem 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.area-item {
  background: var(--color-cream);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--color-midnight);
  transition: all 0.2s ease;
}

.area-item:hover {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
  transform: translateY(-2px);
}

/* City Stats Inline */
.city-stats-inline {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-stone);
}

.stat-inline {
  display: flex;
  flex-direction: column;
}

.stat-inline strong {
  font-size: 1.1rem;
  color: var(--color-teal);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-inline span {
  font-size: 0.9rem;
  color: var(--color-slate);
}

/* City Map Section */
.city-map-section {
  background: var(--color-gray);
  padding: 4rem 0;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  margin-top: 2rem;
}

/* Renovations FAQ */
.renovations-faq {
  background: var(--color-white);
  padding: 5rem 0;
}

.renovations-faq .faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-stone);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.renovations-faq .faq-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-midnight);
  margin-bottom: 1rem;
}

.renovations-faq .faq-item p {
  color: var(--color-slate);
  line-height: 1.7;
}

/* Renovations Cities Carousel */
.renovations-cities-carousel {
  background: var(--color-sky);
  padding: 5rem 0;
  overflow: hidden;
}

@media (max-width: 968px) {
  .renovations-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-block.reverse {
    direction: ltr;
  }
  
  .service-image {
    height: 300px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid-renovations {
    grid-template-columns: 1fr;
  }
  
  .city-stats-inline {
    flex-direction: column;
    gap: 1rem;
  }
}

