
/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a1a2e;
  --navy-light: #16213e;
  --navy-dark: #0f0f1a;
  --green: #21aa74;
  --green-dark: #1a8a5e;
  --green-light: #28c985;
  --accent: #e74c3c;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #868e96;
  --gray-700: #495057;
  --gray-800: #343a40;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  position: relative;
  min-height: 70px;
}

.navbar-item {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.navbar-slide {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.navbar-slide i {
  font-size: 1rem;
}

.navbar-slide[data-index="1"] {
  color: #dc3545;
}

.navbar-slide[data-index="1"] i {
  color: #dc3545;
}

.navbar-slide[data-index="2"] {
  color: #28a745;
}

.navbar-slide[data-index="2"] i {
  color: #28a745;
}

.navbar-dots {
  position: absolute;
  bottom: 6px;
  display: flex;
  gap: 6px;
}

.navbar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-dot.active {
  background: var(--navy);
  width: 18px;
  border-radius: 3px;
}

@media (max-width: 576px) {
  .navbar-logo img {
    height: 35px;
  }
  .navbar-slide {
    font-size: 0.9rem;
  }
  .navbar-container {
    padding: 10px 16px;
    min-height: 55px;
  }
  .navbar-dots {
    bottom: 2px;
  }
  .navbar-dot {
    width: 5px;
    height: 5px;
  }
  .navbar-dot.active {
    width: 14px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 80px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/stamp2-min-size.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* iOS Safari fix - background-attachment:fixed not supported */
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.92) 0%,
    rgba(22, 33, 62, 0.85) 50%,
    rgba(26, 26, 46, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 70px 48px 56px;
  max-width: 780px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 
    0 8px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 0 0 4px 4px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33, 170, 116, 0.12);
  border: 1px solid rgba(33, 170, 116, 0.25);
  color: var(--green-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .highlight {
  color: var(--green);
  position: relative;
}

.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  margin: 12px auto;
  animation: fadeInUp 0.8s ease-out 0.25s both;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.7rem, 1.6vw, 0.9rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero-location {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.35s both;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero-phone {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-phone a {
  color: var(--green);
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 25px rgba(33, 170, 116, 0.5);
  transition: var(--transition);
}

.hero-phone a:hover {
  color: var(--green-light);
  transform: scale(1.03);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-call {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.btn-call:hover {
  background: linear-gradient(135deg, #c82333, #a71d2a);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.5);
}

.btn-call:active {
  transform: translateY(-2px) scale(1.01);
}

.btn-email {
  background: linear-gradient(135deg, #28a745, #218838);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-email:hover {
  background: linear-gradient(135deg, #218838, #1e7e34);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
}

.btn-email:active {
  transform: translateY(-2px) scale(1.01);
}

.btn-gold {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(33, 170, 116, 0.4);
}

.btn-gold:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33, 170, 116, 0.4);
}

/* City CTA Box */
.city-cta-box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, rgba(33, 170, 116, 0.08) 0%, rgba(33, 170, 116, 0.02) 100%);
  border: 1px solid rgba(33, 170, 116, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
}

.city-cta-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(33, 170, 116, 0.3);
}

.city-cta-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.city-cta-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}

.city-cta-content strong {
  color: var(--green);
}

.city-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-sms {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: var(--white);
}

.btn-sms:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* City Page Hero */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/stamp2-min-size.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* iOS Safari fix - background-attachment:fixed not supported */
@supports (-webkit-touch-callout: none) {
  .hero-bg {
    background-attachment: scroll;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(26, 26, 46, 0.9) 100%);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--green);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.content-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-section .section-title {
  text-align: center;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(33,170,116,0.1), rgba(33,170,116,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--green);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   CITIES SECTION
   ============================================ */
.cities-section {
  background: var(--off-white);
}

.cities-header {
  text-align: center;
  margin-bottom: 60px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.city-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.15);
  border-color: transparent;
  color: inherit;
  text-decoration: none;
}

.city-card:hover .city-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(33, 170, 116, 0.4);
}

.city-card:hover h3 {
  color: var(--green);
}

.city-card.active {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(33, 170, 116, 0.2);
  border-color: var(--green);
  background: rgba(33, 170, 116, 0.05);
}

.city-card.active::before {
  transform: scaleX(1);
}

.city-card.active .city-card-icon {
  background: var(--green);
  color: var(--white);
}

.city-card.active h3 {
  color: var(--green);
}

.city-card h3 {
  color: var(--gray-800);
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.city-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.about-image-badge:hover {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 30px rgba(33, 170, 116, 0.5), 0 0 0 4px rgba(33, 170, 116, 0.2);
}

.about-image-badge .number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
}

.about-image-badge:hover .number {
  transform: scale(1.15);
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.about-image-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-content .subtitle {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content .subtitle a {
  color: var(--green);
  text-decoration: none;
}

.about-content .subtitle a:hover {
  text-decoration: underline;
}

.about-content .tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  font-style: italic;
}

.about-content p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.contact-item:hover {
  background: linear-gradient(135deg, rgba(33, 170, 116, 0.08), rgba(33, 170, 116, 0.03));
  transform: translateX(6px);
  color: var(--green);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
  background: var(--green);
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 4px 15px rgba(33, 170, 116, 0.4);
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.credentials-wrapper {
  margin-top: 24px;
}

.credentials-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.credential-img {
  height: 70px;
  width: 70px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  padding: 8px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.3s ease;
}

.credential-img:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

/* Credential Modal */
.credential-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.credential-modal-overlay.active {
  display: flex;
}

.credential-modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.credential-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
}

.credential-modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

.credential-modal-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  border-radius: 12px;
  padding: 8px;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
}

.credential-modal h3 {
  font-size: 1.25rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}

.credential-modal p {
  font-size: 0.9rem;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}

.credential-modal .btn-more-detail {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}

.credential-modal .btn-more-detail:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.zip-modal {
  text-align: center;
}

.zip-modal-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--green);
}

.zip-modal-zip {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.zip-modal-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  text-align: left;
}

.zip-modal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-100);
  padding: 12px 16px;
  border-radius: 10px;
}

.zip-modal-row i {
  width: 16px;
  color: var(--green);
}

.zip-modal-row div {
  display: flex;
  flex-direction: column;
}

.zip-modal-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zip-modal-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.zip-modal-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.contact-detail-text a,
.contact-detail-text p {
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}

.contact-detail-text a:hover {
  color: var(--green);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--off-white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(33, 170, 116, 0.1);
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33, 170, 116, 0.3);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 40px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.footer-social a:hover::before {
  left: 100%;
}

.footer-social a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 20px rgba(33, 170, 116, 0.4);
}

.footer-column ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.footer-column ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--green);
  padding-left: 6px;
}

.footer-column ul li a:hover::after {
  width: 100%;
}

.footer-column ul li.active a {
  color: var(--green);
  font-weight: 600;
}

.footer-column ul li.active a::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
}

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

.footer-bottom a:hover::after {
  width: 100%;
}

.footer-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--green);
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a i {
  font-size: 0.85rem;
  width: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.zip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.zip-badge {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  transition: var(--transition);
  cursor: pointer;
}

.zip-badge:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

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

  .cities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    padding: 24px;
  }

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

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 20px;
  }

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

/* ============================================
   SAFARI & MOBILE FIXES
   ============================================ */
* {
  -webkit-tap-highlight-color: transparent;
}

.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section {
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.about-content p,
.cta-section p,
.footer-brand p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.btn, .btn-gold, .form-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (max-width: 576px) {
  .btn {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
  }
}

/* iOS Safari fix */
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }

  .hero {
    min-height: -webkit-fill-available;
  }

  .footer-bottom {
    padding-bottom: env(safe-area-inset-bottom, 20px);
  }
}

/* Safari flexbox fixes */
@media not all and (min-resolution:.001dpcm) {
  .btn {
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about-content p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

/* Font smoothing */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Image rendering */
img {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Grid alignment */
.about-grid,
.contact-grid,

.footer-grid {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

/* ============================================
   COMPREHENSIVE SAFARI & MOBILE FIXES
   ============================================ */

/* Hero section responsive */
@media (max-width: 768px) {
  .hero-content {
    padding: 80px 20px 50px;
    max-width: 100%;
    border-radius: 16px;
    margin: 0 16px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .hero-phone {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 14px;
  }

  .hero-tagline {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }

  .hero-subtitle {
    font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  }

  .hero-location {
    font-size: clamp(0.6rem, 1.3vw, 0.8rem);
    letter-spacing: 3px;
  }
}

/* City page hero responsive */
@media (max-width: 768px) {
  .hero-text {
    padding: 0 8px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  .hero-title span {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* City CTA box responsive */
@media (max-width: 576px) {
  .city-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .city-cta-icon {
    margin: 0 auto;
  }

  .city-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .city-cta-buttons .btn {
    width: 100%;
  }
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-column {
    text-align: center;
  }

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

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .zip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .zip-badge {
    font-size: 0.7rem;
    padding: 6px 8px;
  }
}

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

  .footer-bottom {
    padding: 16px 0;
  }
}

/* Cities grid responsive */
@media (max-width: 768px) {
  .cities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .city-card {
    padding: 16px 12px;
  }

  .city-card h3 {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }
}

/* Navbar responsive */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 16px;
  }

  .navbar-slide {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .navbar-logo img {
    height: 28px;
  }
}

/* Content section responsive */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }

  .content-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* Contact form responsive */
@media (max-width: 576px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-detail {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .contact-detail-icon {
    margin: 0 auto;
  }
}

/* Back to top button responsive */
@media (max-width: 576px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* Prevent horizontal scroll */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

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

/* iOS safe area insets */
@supports (padding: env(safe-area-inset-top)) {
  .navbar {
    padding-top: env(safe-area-inset-top);
  }

  .footer {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Safari input fixes */
input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 8px;
}

/* Smooth scrolling for all */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus, button:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
