/* Haven Electrical - Custom Styles */
/* Brand Guide: Exo 2 + Roboto | Cyan/Deep Blue Gradient | Carbon Black & Chrome */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,900&family=Roboto:wght@400;500;700&display=swap');

:root {
  /* Brand Colors */
  --haven-cyan: #00AEEF;
  --haven-deep: #005493;
  --chrome-light: #F2F2F2;
  --chrome-mid: #E6E7E8;
  --chrome-dark: #A7A9AC;
  --carbon-black: #121212;
  --pure-white: #FFFFFF;

  /* Gradients */
  --gradient-blue: linear-gradient(180deg, #00AEEF 0%, #005493 100%);
  --gradient-silver: linear-gradient(180deg, #FFFFFF 0%, #E6E7E8 50%, #A7A9AC 100%);
  --gradient-hero: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);

  /* Typography */
  --font-head: 'Exo 2', sans-serif;
  --font-body: 'Roboto', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-cyan: 0 4px 15px rgba(0, 174, 239, 0.4);
  --shadow-cyan-lg: 0 6px 25px rgba(0, 174, 239, 0.5);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--chrome-light);
  color: #444;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  max-width: 100vw;
  overflow-x: hidden;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 2rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.9));
}

.nav.scrolled .nav-logo-img {
  filter: none;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  color: var(--carbon-black);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.nav.scrolled .nav-links a {
  text-shadow: none;
}

.nav-links a:hover {
  color: var(--haven-cyan);
}

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

.nav-phone {
  font-family: var(--font-head);
  color: var(--carbon-black);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.nav.scrolled .nav-phone {
  text-shadow: none;
}

.nav-phone svg {
  color: var(--haven-cyan);
  transition: filter 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.8));
}

.nav.scrolled .nav-phone svg {
  filter: none;
}

/* Buttons */
.btn {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gradient-blue);
  color: white;
  box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan-lg);
}

.btn-secondary {
  background: var(--pure-white);
  color: var(--haven-deep);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--chrome-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--haven-deep);
  border: 2px solid var(--haven-deep);
}

.btn-outline:hover {
  border-color: var(--haven-cyan);
  color: var(--haven-cyan);
  background: rgba(0, 174, 239, 0.1);
}

/* Smaller button variant for nav */
.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--carbon-black);
  cursor: pointer;
  padding: 0.5rem;
  transition: filter 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.8));
}

.nav.scrolled .mobile-menu-btn {
  filter: none;
}

/* Desktop: Always show nav with solid background */
@media (min-width: 769px) {
  .nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 2rem;
  }
  
  .nav .nav-logo-img {
    filter: none;
  }
  
  .nav .nav-links a {
    text-shadow: none;
  }
  
  .nav .nav-phone {
    text-shadow: none;
  }
  
  .nav .nav-phone svg {
    filter: none;
  }
  
  .nav .mobile-menu-btn {
    filter: none;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  margin-top: 0;
  padding-top: 0;
  position: relative;
  display: flex;
  overflow: hidden;
  max-width: 100vw;
}

.hero-content {
  width: 50%;
  background: var(--pure-white);
  background-image: url('assets/large-triangles.svg');
  background-size: 400px auto;
  background-repeat: repeat;
  background-position: center;
  padding: calc(70px + 2.25rem) 4rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

/* Silver Bar Decorative Element */
.silver-bar {
  height: 6px;
  width: 80px;
  background: var(--gradient-silver);
  margin: 1.5rem 0;
  border-radius: 3px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 174, 239, 0.15);
  border: 1px solid rgba(0, 174, 239, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--haven-cyan);
  margin-bottom: 1.5rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--carbon-black);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 600px;
  text-transform: uppercase;
}

.hero-title span {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-questions {
  margin-bottom: 1rem;
}

.hero-questions .sentence-completion {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--haven-deep);
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.hero-questions .static-text {
  color: var(--haven-deep);
}

.hero-questions .static-text::before {
  content: '✓';
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--haven-cyan);
  font-weight: 700;
}

.hero-questions .rotating-wrapper {
  display: inline-block;
  height: 1.5em;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-questions .rotating-text {
  display: flex;
  flex-direction: column;
  animation: rotateWords 9s ease-in-out infinite;
}

.hero-questions .rotate-item {
  height: 1.5em;
  display: flex;
  align-items: center;
  color: var(--haven-cyan);
  font-weight: 700;
}

@keyframes rotateWords {
  0%, 30% {
    transform: translateY(0);
  }
  33.33%, 63.33% {
    transform: translateY(-1.5em);
  }
  66.66%, 96.66% {
    transform: translateY(-3em);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 500px;
  line-height: 1.7;
}

/* Hero Google Badge - Positioned on image */
.hero-google-badge {
  position: absolute;
  bottom: 7rem;
  right: 0;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px 0 0 50px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-right: none;
  width: fit-content;
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-stars svg {
  width: 20px;
  height: 20px;
}

.hero-google-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}

.google-wordmark {
  flex-shrink: 0;
}

/* Hero Compact Form - Improved Grid Layout */
.hero-form {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  max-width: 440px;
  border: 1px solid var(--chrome-mid);
}

.hero-form-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--carbon-black);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.hero-form-title span {
  color: var(--haven-cyan);
}

.hero-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-form-group {
  display: flex;
}

.hero-form-group.hero-form-full {
  grid-column: 1 / -1;
}

.hero-form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--chrome-mid);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--chrome-light);
}

.hero-form-group input::placeholder {
  color: #888;
}

.hero-form-group input:focus {
  outline: none;
  border-color: var(--haven-cyan);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.hero-form-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.9rem;
}

.hero-form-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--chrome-mid);
}

.hero-form-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #555;
  font-size: 0.75rem;
  font-weight: 500;
}

.hero-form-badge svg {
  width: 16px;
  height: 16px;
  color: var(--haven-cyan);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-ctas .btn {
  padding: 1.125rem 2.25rem;
  font-size: 0.95rem;
}

.trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--haven-cyan);
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

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

.hero-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, var(--pure-white) 0%, transparent 100%);
  z-index: 2;
}

/* Section Styles */
.section {
  padding: 6rem 2rem;
  overflow-x: hidden;
}

.section-dark {
  background: var(--carbon-black);
  color: white;
}

.section-alt {
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--haven-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--carbon-black);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-dark .section-title {
  color: white;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: #ccc;
}

/* Why Haven */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.why-content h2 {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--haven-deep);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.why-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--chrome-light);
}

.why-feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.why-feature h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--carbon-black);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.why-feature p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.why-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
}

.why-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--haven-cyan);
  border-radius: 1rem;
  opacity: 0.3;
}

/* Services Section - 3x2 Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
}

.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.service-card:hover > img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  transition: background 0.4s ease;
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 84, 147, 0.9) 0%,
    rgba(0, 174, 239, 0.3) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  color: white;
  z-index: 2;
}

.service-badge {
  display: inline-block;
  background: var(--haven-cyan);
  color: white;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.service-badge-urgent {
  background: #fff;
  color: var(--haven-deep);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.service-content h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.service-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 90%;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--haven-cyan);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-link:hover {
  gap: 0.75rem;
  color: white;
}

/* Services Strip - Secondary Services (Auto-scrolling Marquee) */
.services-strip {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--chrome-mid);
  overflow: hidden;
}

.services-strip-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--haven-deep);
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
  background: white;
  padding-right: 0.5rem;
}

.services-strip-track {
  display: flex;
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, black 2rem, black calc(100% - 2rem), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 2rem, black calc(100% - 2rem), transparent);
}

.services-strip-items {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem 0;
  animation: marquee 25s linear infinite;
  flex-shrink: 0;
}

.services-strip:hover .services-strip-items {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.strip-item {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--chrome-light);
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  margin-right: 0.5rem;
}

.strip-item:hover {
  background: var(--haven-cyan);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Services Grid */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 280px);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 280px);
    gap: 1rem;
  }
  
  .service-content {
    padding: 1.25rem;
  }
  
  .service-content h3 {
    font-size: 1.15rem;
  }
  
  .services-strip {
    flex-direction: column;
    border-radius: 1rem;
    padding: 1.25rem;
    gap: 1rem;
    align-items: flex-start;
    overflow: hidden;
  }
  
  .services-strip-track {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .services-strip-items {
    animation-duration: 18s;
  }
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: calc(2rem - 2px);
  left: calc(50% + 2rem);
  right: calc(-50% + 2rem);
  height: 4px;
  background: var(--gradient-silver);
  border-radius: 2px;
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  border: 3px solid var(--chrome-light);
  box-shadow: var(--shadow-cyan);
}

.process-step h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--haven-deep);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.process-step p {
  font-size: 0.95rem;
  color: #666;
}

/* Meet David Section */
.david-section {
  background: var(--carbon-black);
  position: relative;
}

.david-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-silver);
}

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

.david-content {
  color: white;
}

.david-content h2 {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.david-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: #ccc;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--haven-cyan);
  line-height: 1.7;
}

.david-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--haven-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.david-image {
  position: relative;
}

.david-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Areas Section */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: stretch;
}

.areas-map-wrapper {
  position: relative;
  height: 100%;
}

.areas-map-frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--carbon-black);
  height: 100%;
  min-height: 400px;
  max-width: 100%;
}

.areas-map-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--haven-cyan);
  border-radius: 1rem;
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}

.areas-map-frame iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: none;
  display: block;
  filter: saturate(0.8) contrast(1.1);
}


.areas-suburbs h2 {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--haven-deep);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.areas-intro {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.areas-clusters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.area-cluster {
  background: var(--chrome-light);
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--chrome-mid);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.area-cluster:hover {
  border-color: var(--haven-cyan);
  box-shadow: var(--shadow-md);
}

.area-cluster h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--haven-deep);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 2.5rem;
}

.area-cluster h4 svg {
  width: 18px;
  height: 18px;
  color: var(--haven-cyan);
  flex-shrink: 0;
}

.area-cluster ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.area-cluster li {
  font-size: 0.9rem;
  color: #555;
  padding-left: 1rem;
  position: relative;
}

.area-cluster li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--haven-cyan);
  border-radius: 50%;
}

.areas-cta {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #666;
}

.areas-cta a {
  color: var(--haven-cyan);
  font-weight: 600;
  text-decoration: none;
}

.areas-cta a:hover {
  text-decoration: underline;
}

/* Areas Section Responsive */
@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    overflow: hidden;
  }
  
  .areas-map-wrapper {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
  }
  
  .areas-map-frame {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  
  .areas-suburbs {
    text-align: center;
    overflow-x: hidden;
    max-width: 100%;
  }
  
  .areas-clusters {
    justify-content: center;
    width: 100%;
  }
  
  .area-cluster h4 {
    justify-content: center;
  }
  
  .area-cluster ul {
    align-items: center;
  }
  
  .area-cluster li {
    padding-left: 0;
  }
  
  .area-cluster li::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .areas-clusters {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .area-cluster {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .area-cluster h4 {
    min-height: auto;
  }
  
  .area-cluster ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.75rem;
    width: 100%;
    padding: 0;
  }
  
  .area-cluster li {
    font-size: 0.85rem;
  }
  
  .areas-suburbs h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .area-cluster ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem 0.5rem;
    text-align: center;
  }
  
  .areas-suburbs h2 {
    font-size: 1.5rem;
  }
}

/* Reviews Section - Google Widget Style */
.reviews-main-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--carbon-black);
  text-align: center;
  margin-bottom: 2rem;
}

.google-widget-box {
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 1.25rem 2.5rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.google-widget-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.google-widget-logo {
  flex-shrink: 0;
}

.google-widget-title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--carbon-black);
}

.google-widget-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.google-widget-star {
  width: 18px;
  height: 18px;
}

.google-widget-score {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--carbon-black);
}

.google-widget-outof {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 540px) {
  .google-widget-box {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    max-width: calc(100% - 2rem);
  }
}

/* Review Cards Carousel */
.review-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-track-wrapper {
  flex: 1;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
}

.review-card {
  flex: 0 0 calc(33.333% - 0.85rem);
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  position: relative;
}

.review-google-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--carbon-black);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.3;
}

.review-verified {
  flex-shrink: 0;
}

.review-date {
  font-size: 0.8rem;
  color: #999;
  display: block;
  margin-top: 0.125rem;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-readmore {
  font-size: 0.85rem;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.review-readmore:hover {
  text-decoration: underline;
}

/* Review Arrows */
.review-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.review-arrow:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-arrow:active {
  transform: scale(0.95);
}

.review-arrow svg {
  width: 20px;
  height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dadce0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: #9aa0a6;
}

.carousel-dot.active {
  background: #1a73e8;
}

/* Reviews Responsive */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 0.625rem);
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%;
  }
  
  .review-arrow {
    display: none;
  }
  
  .review-carousel {
    gap: 0;
    overflow: hidden;
  }
  
  .review-track-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  
  .reviews-main-title {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--chrome-mid);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--haven-cyan);
}

.blog-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-blue);
  color: white;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--chrome-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--carbon-black);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  font-family: var(--font-head);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--haven-cyan);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: gap 0.2s ease;
}

.blog-link:hover {
  gap: 0.75rem;
}

/* FAQ Section */
#faq {
  position: relative;
  background-color: #f8f9fa;
}

#faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/pattern-randomized.svg');
  background-size: 800px auto;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.4;
  pointer-events: none;
}

#faq > .container {
  position: relative;
  z-index: 1;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--chrome-mid);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--carbon-black);
  text-align: left;
  text-transform: uppercase;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--haven-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: #555;
  line-height: 1.7;
}

/* Contact Section */
#contact {
  position: relative;
  background: url('assets/about-david-home-visit.webp') center center / cover no-repeat;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.70);
  z-index: 0;
}

#contact > .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--chrome-dark);
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--haven-cyan);
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--carbon-black);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--chrome-mid);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--haven-cyan);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--carbon-black);
  color: white;
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow-x: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-silver);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--chrome-dark);
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-cyan);
}

.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan-lg);
}

.footer h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul a {
  color: var(--chrome-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--haven-cyan);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--chrome-dark);
}

.footer-bottom a {
  color: var(--chrome-dark);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--haven-cyan);
}

/* Made by Scale Labs Credit */
.made-by {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.made-by a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--chrome-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.2s ease;
}

.made-by a:hover {
  color: var(--haven-cyan);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    width: 55%;
    padding: 6rem 3rem 3rem;
  }
  
  .why-grid,
  .david-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step::after {
    display: none;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    flex-direction: column-reverse;
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
    background: var(--pure-white);
    background-image: url('assets/large-triangles.svg');
    background-size: 300px auto;
    background-repeat: repeat;
    background-position: center;
  }
  
  .hero-content {
    width: 100%;
    clip-path: none;
    padding: 3rem 1.5rem 4rem;
    background: var(--pure-white);
    background-image: url('assets/large-triangles.svg');
    background-size: 300px auto;
    background-repeat: repeat;
    background-position: center;
  }
  
  .hero-image {
    position: relative;
    width: 100%;
    height: 55vh;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }
  
  .hero-image::before {
    display: none;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-questions .sentence-completion {
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-google-badge {
    top: auto;
    bottom: 15%;
    left: auto;
    right: 0;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    border-radius: 50px 0 0 50px;
  }
  
  .hero-stars svg {
    width: 16px;
    height: 16px;
  }
  
  .hero-google-text {
    font-size: 0.8rem;
  }
  
  .google-wordmark {
    width: 54px;
    height: 18px;
  }
  
  .hero-form {
    max-width: 100%;
    padding: 1.25rem;
  }
  
  .hero-form-title {
    font-size: 1rem;
  }
  
  .hero-form-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .hero-form-group.hero-form-full {
    grid-column: auto;
  }
  
  .hero-form-badges {
    gap: 1rem;
  }
  
  .hero-form-badge {
    font-size: 0.7rem;
  }
  
  .hero-form-badge svg {
    width: 14px;
    height: 14px;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
  
  .trust-badge {
    font-size: 1rem;
  }
  
  .trust-badge svg {
    width: 24px;
    height: 24px;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
  
  .why-features {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card-image {
    height: 200px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--carbon-black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu a {
  font-family: var(--font-head);
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-menu .btn {
  margin-top: 2rem;
  width: 100%;
}

.mobile-menu .btn-outline {
  color: white;
  border-color: var(--haven-cyan);
}

.mobile-menu .btn-outline:hover {
  color: white;
}
