/* ============================================
   CSS CUSTOM PROPERTIES - BRAND COLORS
   ============================================ */
:root {
  /* Blues */
  --color-jordy-blue: #93BFEF;
  --color-tufts-blue: #468BE6;
  --color-alice-blue: #E9F5FF;
  --color-cobalt-blue: #1A5799;
  --color-cool-black: #092F64;
  --color-eerie-black: #1F1F1F;
  --color-white: #FFFFFF;

  /* Orange accents — extracted from brand logo */
  --color-orange: #E8500A;
  --color-orange-light: #F47A3B;
  --color-orange-dark: #C43D06;
  --color-orange-glow: rgba(232, 80, 10, 0.25);

  /* System */
  --color-whatsapp: #25D366;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.2);
  --shadow-orange: 0 6px 20px rgba(232, 80, 10, 0.35);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-eerie-black);
  background-color: var(--color-white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-cool-black);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-tufts-blue), var(--color-jordy-blue));
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  color: var(--color-cool-black);
}

p {
  margin-bottom: 1rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 87, 153, 0.1);
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-section {
  flex-shrink: 0;
}

.logo {
  display: block;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
  flex: 1;
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-eerie-black);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-tufts-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-tufts-blue);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.phone-label {
  font-size: 0.75rem;
  color: var(--color-cobalt-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-tufts-blue);
  text-decoration: none;
  transition: var(--transition);
}

.phone-number:hover {
  color: var(--color-cobalt-blue);
}

.cta-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-call,
.btn-whatsapp {
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-call {
  background: linear-gradient(135deg, var(--color-tufts-blue), var(--color-cobalt-blue));
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(70, 139, 230, 0.3);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(70, 139, 230, 0.4);
  filter: brightness(1.1);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  filter: brightness(1.1);
}

.icon {
  font-size: 1.1em;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: var(--color-eerie-black);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid rgba(20, 87, 153, 0.1);
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: 0.5rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  color: var(--color-eerie-black);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
  font-weight: 600;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--color-alice-blue);
  color: var(--color-tufts-blue);
}

.mobile-nav-cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-direction: column;
}

.mobile-nav-button {
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}

.mobile-nav-button.call {
  background: linear-gradient(135deg, var(--color-tufts-blue), var(--color-cobalt-blue));
  color: var(--color-white);
}

.mobile-nav-button.whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
  flex: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--color-cool-black) 0%, var(--color-cobalt-blue) 100%);
  color: var(--color-white);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(90deg, #FFFFFF 0%, var(--color-jordy-blue) 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-left p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-white) 0%, #F0F0F0 100%);
  color: var(--color-cool-black);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--color-white);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.trust-check {
  font-size: 1.5rem;
}

.hero-right {
  position: relative;
}

.quote-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-card h3 {
  font-size: 1.5rem;
  color: var(--color-cool-black);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-eerie-black);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 2px solid var(--color-alice-blue);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-tufts-blue);
  box-shadow: 0 0 0 3px rgba(70, 139, 230, 0.1);
}

.form-group button {
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-tufts-blue), var(--color-cobalt-blue));
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(70, 139, 230, 0.3);
}

.form-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(70, 139, 230, 0.4);
  filter: brightness(1.1);
}

.quote-card-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-alice-blue);
}

.quote-card-footer p {
  font-size: 0.9rem;
  color: var(--color-eerie-black);
  margin-bottom: 0.75rem;
}

.quote-card-phone {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-tufts-blue);
  text-decoration: none;
  transition: var(--transition);
}

.quote-card-phone:hover {
  color: var(--color-cobalt-blue);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: linear-gradient(90deg, var(--color-cobalt-blue) 0%, var(--color-tufts-blue) 100%);
  padding: 2rem 1.5rem;
  color: var(--color-white);
}

.trust-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.trust-icon {
  font-size: 1.5rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 4rem 1.5rem;
  background: var(--color-white);
}

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

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

.service-card {
  background: var(--color-white);
  border: 2px solid var(--color-alice-blue);
  border-top: 4px solid var(--color-cobalt-blue);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-tufts-blue), var(--color-jordy-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-tufts-blue);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.75rem 1rem;
  background: rgba(70, 139, 230, 0.1);
  border-radius: 12px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-cool-black);
}

.service-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-block;
  color: var(--color-tufts-blue);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--color-cobalt-blue);
  transform: translateX(4px);
}

/* ============================================
   AREAS STRIP
   ============================================ */
.areas-strip {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--color-alice-blue) 0%, rgba(147, 191, 239, 0.2) 100%);
}

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

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.area-tag {
  padding: 0.75rem 1.5rem;
  background: var(--color-white);
  border: 2px solid var(--color-tufts-blue);
  border-radius: 50px;
  font-weight: 600;
  color: var(--color-cobalt-blue);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.area-tag:hover {
  background: var(--color-tufts-blue);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--color-cool-black) 0%, var(--color-cobalt-blue) 50%, var(--color-tufts-blue) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  padding-left: 0;
}

.cta-banner h2::before {
  display: none;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.cta-banner-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-banner-phone {
  text-align: right;
}

.cta-banner-label {
  font-size: 0.9rem;
  opacity: 0.9;
  display: block;
  margin-bottom: 0.5rem;
}

.cta-banner-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
}

.cta-banner-number:hover {
  color: var(--color-jordy-blue);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  padding: 4rem 1.5rem;
  background: var(--color-white);
}

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

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

.review-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-tufts-blue);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.review-author {
  font-weight: 700;
  color: var(--color-cool-black);
}

.review-location {
  font-size: 0.9rem;
  color: var(--color-tufts-blue);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--color-alice-blue) 0%, rgba(147, 191, 239, 0.3) 100%);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-tufts-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-cool-black);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--color-cool-black) 0%, var(--color-cobalt-blue) 100%);
  color: var(--color-white);
  text-align: center;
}

.final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--color-white);
  padding-left: 0;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.final-cta h2::before {
  display: none;
}

.final-cta p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-final {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-final-dark {
  background: var(--color-white);
  color: var(--color-cool-black);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-final-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  filter: brightness(0.95);
}

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

.btn-final-outline:hover {
  background: var(--color-white);
  color: var(--color-cool-black);
  transform: translateY(-3px);
}

/* ============================================
   MOBILE STICKY BAR
   ============================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-white);
  border-top: 1px solid var(--color-alice-blue);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
}

.ms-call,
.ms-wa,
.ms-quote {
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.ms-call {
  background: linear-gradient(135deg, var(--color-tufts-blue), var(--color-cobalt-blue));
  color: var(--color-white);
}

.ms-wa {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.ms-quote {
  background: var(--color-alice-blue);
  color: var(--color-cobalt-blue);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-cool-black);
  color: var(--color-white);
  padding: 3rem 1.5rem 1.5rem;
}

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

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: block;
  width: fit-content;
  transition: var(--transition);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 50px;
  width: auto;
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-jordy-blue);
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--color-jordy-blue);
  transform: translateX(4px);
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-link {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.contact-link:hover {
  color: var(--color-jordy-blue) !important;
}

.footer-whatsapp-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
}

.footer-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  filter: brightness(1.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-jordy-blue) !important;
}

.divider {
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .header-container {
    padding: 0.75rem 1.5rem;
    gap: 1rem;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .phone-display {
    display: none;
  }

  .cta-buttons {
    gap: 0.5rem;
  }

  .btn-call,
  .btn-whatsapp {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .hero-cta-buttons {
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .quote-card {
    padding: 1.5rem;
  }

  .cta-banner-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-banner-phone {
    text-align: center;
  }

  .cta-banner-number {
    font-size: 2rem;
  }

  .trust-bar-container {
    gap: 1rem;
  }

  .trust-bar-item {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .areas-grid {
    justify-content: flex-start;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-container {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .final-cta {
    padding: 2rem 1.5rem;
  }

  .final-cta h2 {
    font-size: 1.8rem;
  }

  .final-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-final {
    width: 100%;
    justify-content: center;
  }

  .mobile-sticky {
    display: grid;
    padding-bottom: 1.5rem;
  }

  main {
    padding-bottom: 80px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .header-container {
    padding: 0.5rem 1rem;
  }

  .logo-img {
    height: 45px;
  }

  .cta-buttons {
    display: none;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero-left h1 {
    font-size: 1.75rem;
  }

  .hero-left p {
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
  }

  .quote-card {
    padding: 1.25rem;
  }

  .quote-card h3 {
    font-size: 1.25rem;
  }

  .cta-banner {
    padding: 2rem 1rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner-number {
    font-size: 1.75rem;
  }

  .final-cta h2 {
    font-size: 1.5rem;
  }

  .final-cta p {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .trust-icon {
    font-size: 1.25rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .ms-call,
  .ms-wa,
  .ms-quote {
    font-size: 0.8rem;
    padding: 0.6rem 0.4rem;
  }
}

/* ============================================
   ORANGE ACCENT OVERRIDES & ADDITIONS
   ============================================ */

/* Section heading accent: orange bar instead of blue */
h2::before {
  background: linear-gradient(180deg, var(--color-orange), var(--color-orange-light));
}

/* Primary call button: Tufts Blue per design update */
.btn-call {
  background: linear-gradient(135deg, var(--color-tufts-blue), var(--color-cobalt-blue));
  box-shadow: 0 4px 15px rgba(70, 139, 230, 0.35);
}
.btn-call:hover {
  box-shadow: 0 8px 25px rgba(70, 139, 230, 0.5);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* Hero call button */
.btn-primary {
  background: linear-gradient(135deg, var(--color-white) 0%, #F5F5F5 100%);
  color: var(--color-cool-black);
  border: 2px solid transparent;
}
.btn-primary:hover {
  border-color: var(--color-orange-light);
  color: var(--color-orange-dark);
}

/* Quote card submit button: orange */
.form-group button {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  box-shadow: var(--shadow-orange);
}
.form-group button:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 25px rgba(232, 80, 10, 0.45);
}

/* Service cards: orange top border + hover glow */
.service-card {
  border-top: 4px solid var(--color-cobalt-blue);
}
.service-card::before {
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
}
.service-card:hover {
  border-top-color: var(--color-orange);
  box-shadow: 0 8px 30px rgba(232, 80, 10, 0.15), var(--shadow-lg);
}
.service-icon {
  background: rgba(232, 80, 10, 0.08);
  border: 1px solid rgba(232, 80, 10, 0.15);
}
.service-link {
  color: var(--color-orange);
  font-weight: 700;
}
.service-link:hover {
  color: var(--color-orange-dark);
}

/* Area tags: orange border on hover */
.area-tag:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-orange);
}

/* Review card: orange left border */
.review-card {
  border-left: 4px solid var(--color-orange);
}

/* Trust bar: orange icon highlights */
.trust-icon {
  color: var(--color-orange-light);
}

/* CTA banner final buttons */
.btn-final-dark {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-orange);
}
.btn-final-dark:hover {
  background: var(--color-orange-dark);
  box-shadow: 0 8px 25px rgba(232, 80, 10, 0.5);
  filter: brightness(1.05);
}

/* Stat numbers: orange */
.stat-number {
  color: var(--color-orange);
}

/* Nav active link: orange underline */
.nav-link::after {
  background: var(--color-orange);
}
.nav-link.active,
.nav-link:hover {
  color: var(--color-orange);
}

/* Phone number in header: Tufts Blue per design update */
.phone-number {
  color: var(--color-tufts-blue);
}
.phone-number:hover {
  color: var(--color-cobalt-blue);
}

/* Quote card phone */
.quote-card-phone {
  color: var(--color-orange);
}
.quote-card-phone:hover {
  color: var(--color-orange-dark);
}

/* Focus ring: orange */
.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232, 80, 10, 0.12);
}

/* Mobile nav buttons: blue call */
.mobile-nav-button.call {
  background: linear-gradient(135deg, var(--color-tufts-blue), var(--color-cobalt-blue));
}

/* Mobile sticky: blue call */
.ms-call {
  background: linear-gradient(135deg, var(--color-tufts-blue), var(--color-cobalt-blue));
}

/* Footer column headings: orange accent */
.footer-column h4 {
  color: var(--color-orange-light);
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-column h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-orange);
  margin-top: 0.4rem;
  border-radius: 2px;
}

/* Footer WhatsApp button stays green — no change needed */

/* Orange pill badge for "Same-Day" urgency callout */
.badge-orange {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Divider accent line */
.orange-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
  border-radius: 2px;
  margin: 1rem 0 2rem;
}

/* Hero shimmer: white → orange-light → white */
.hero-left h1 {
  background: linear-gradient(90deg, #FFFFFF 0%, var(--color-orange-light) 40%, var(--color-jordy-blue) 70%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s ease-in-out infinite;
}

/* Hero background: hero image with dark overlay when image is available */
.hero {
  background-image:
    linear-gradient(135deg, rgba(9, 47, 100, 0.90) 0%, rgba(26, 87, 153, 0.82) 100%),
    var(--hero-bg, none);
  background-size: cover;
  background-position: center;
}

/* When hero image is set via JS */
.hero.has-image {
  background-image:
    linear-gradient(135deg, rgba(9, 47, 100, 0.88) 0%, rgba(26, 87, 153, 0.75) 100%),
    var(--hero-bg);
}

/* Orange underline on section intro text */
.section-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0;
}
.section-intro::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-orange);
  margin-top: 1rem;
  border-radius: 2px;
}

/* Trust bar: orange accent on 1st item */
.trust-bar-item:first-child .trust-icon {
  color: #FFD700;
}

/* CTA banner: orange accent highlight */
.cta-banner-number {
  color: var(--color-orange-light);
}
.cta-banner-number:hover {
  color: var(--color-white);
}

/* Pulse animation on WhatsApp button */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}
.btn-whatsapp {
  animation: pulse-green 2.5s ease-in-out infinite;
}
.btn-whatsapp:hover {
  animation: none;
}

/* Pulse animation on blue call button */
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 4px 15px rgba(70, 139, 230, 0.35); }
  50% { box-shadow: 0 6px 28px rgba(70, 139, 230, 0.6); }
}
.ms-call {
  animation: pulse-blue 2.5s ease-in-out infinite;
}

/* ============================================
   DESIGN UPDATE v3 — Feb 2026
   ============================================ */

/* Areas section: Tufts Blue hover (was orange) + map background */
.areas-section {
  position: relative;
}
.areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Cg fill='none' stroke='%23468BE6' stroke-width='1.2' stroke-opacity='0.18'%3E%3Cpath d='M120 80 L180 60 L240 90 L300 70 L360 100 L420 75 L480 110 L540 85 L600 120'/%3E%3Cpath d='M100 140 L160 120 L220 150 L280 130 L340 160 L400 135 L460 165 L520 145 L580 175 L640 155'/%3E%3Cpath d='M80 200 L140 185 L200 210 L260 195 L320 220 L380 200 L440 225 L500 205 L560 235 L620 215 L680 240'/%3E%3Cpath d='M100 260 L160 248 L220 268 L280 255 L340 278 L400 262 L460 282 L520 268 L580 290 L640 275'/%3E%3Cpath d='M120 320 L180 308 L240 328 L300 315 L360 338 L420 322 L480 345 L540 330 L600 352'/%3E%3Cpath d='M140 380 L200 368 L260 388 L320 375 L380 398 L440 382 L500 405 L560 390'/%3E%3Ccircle cx='200' cy='180' r='4'/%3E%3Ccircle cx='350' cy='150' r='3'/%3E%3Ccircle cx='480' cy='200' r='5'/%3E%3Ccircle cx='580' cy='160' r='3'/%3E%3Ccircle cx='300' cy='280' r='4'/%3E%3Ccircle cx='420' cy='250' r='3'/%3E%3Ccircle cx='550' cy='300' r='4'/%3E%3Ccircle cx='180' cy='340' r='3'/%3E%3Cpath d='M200 180 L350 150' stroke-dasharray='4,4'/%3E%3Cpath d='M350 150 L480 200' stroke-dasharray='4,4'/%3E%3Cpath d='M480 200 L580 160' stroke-dasharray='4,4'/%3E%3Cpath d='M300 280 L420 250' stroke-dasharray='4,4'/%3E%3Cpath d='M420 250 L550 300' stroke-dasharray='4,4'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.areas-section > * {
  position: relative;
  z-index: 1;
}
.area-tag:hover {
  background: var(--color-tufts-blue);
  border-color: var(--color-tufts-blue);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(70, 139, 230, 0.4);
  transform: translateY(-2px);
}

/* CTA banner phone: white */
.cta-banner-number {
  color: var(--color-white) !important;
}
.cta-banner-number:hover {
  color: var(--color-jordy-blue) !important;
}

/* Footer headings: white (was orange-light) */
.footer-column h4 {
  color: var(--color-white) !important;
}
.footer-column h4::after {
  background: var(--color-tufts-blue);
}

/* WhatsApp footer button: white text on hover */
.footer-whatsapp-btn {
  color: var(--color-white) !important;
}
.footer-whatsapp-btn:hover {
  color: var(--color-white) !important;
  filter: brightness(1.1);
}

/* Stats counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-number {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stat-number.counted {
  opacity: 1;
  animation: countUp 0.6s ease forwards;
}

/* Mobile hero: portrait crop centred on top-right (person's face area) */
@media (max-width: 768px) {
  .hero.has-image {
    background-image:
      linear-gradient(135deg, rgba(9, 47, 100, 0.90) 0%, rgba(26, 87, 153, 0.80) 100%),
      var(--hero-bg);
    background-position: 70% center;
    background-size: 200%;
  }
}

