/* ========================================
   R&D Cleaning Service - Complete Stylesheet
   ======================================== */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2D2D2D;
  background: #FAFBF7;
  overflow-x: hidden;
}

/* Ensure cards are always visible - overrides GSAP inline styles */
.service-card,
.review-card {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1B4D3E;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* --- Hero Video --- */
.hero-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

/* --- Typography Utilities --- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 20px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1B4D3E;
}

.section-heading--light {
  color: #FFFFFF;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #C9A227;
  color: #0F2E25;
}

.btn-primary:hover {
  background: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
  width: 100%;
  background: #C9A227;
  color: #0F2E25;
  font-size: 16px;
  padding: 18px;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.nav.nav-scrolled {
  background: rgba(250, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: #1B4D3E;
  transition: color 0.4s ease;
}

.nav-scrolled .nav-logo-text {
  color: #1B4D3E;
}

.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B6B6B;
  transition: opacity 0.3s ease, color 0.4s ease;
}

.nav-scrolled .nav-logo-sub {
  opacity: 0;
  pointer-events: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #C9A227;
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: #C9A227;
}

.nav-scrolled .nav-link {
  color: #2D2D2D;
}

.nav-scrolled .nav-link:hover,
.nav-scrolled .nav-link.active {
  color: #1B4D3E;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #1B4D3E;
  color: #FFFFFF;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #0F2E25;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 77, 62, 0.25);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1B4D3E;
  transition: all 0.3s ease;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #FAFBF7;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1B4D3E;
  padding: 8px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu-link {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #1B4D3E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: #C9A227;
}

.mobile-menu-cta {
  display: inline-flex;
  padding: 16px 40px;
  background: #1B4D3E;
  color: #FFFFFF;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  padding: 0 24px;
  z-index: 1;
}

.hero-caption {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.9;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
  margin: 24px auto 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  opacity: 0.6;
  animation: bounceChevron 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes bounceChevron {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #1B4D3E;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 24px;
  z-index: 1;
}

.intro-container {
  max-width: 800px;
  text-align: center;
}

.intro-body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

.intro-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: #C9A227;
  line-height: 1;
}

.intro-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  position: relative;
  width: 100%;
  background: #FAFBF7;
  padding: 120px 24px;
  z-index: 1;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

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

.services-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(45, 45, 45, 0.8);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 32px;
}

.service-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1B4D3E;
}

.services-additional {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(45, 45, 45, 0.7);
  line-height: 1.6;
  margin-top: 48px;
  text-align: center;
}

.services-additional strong {
  color: #1B4D3E;
  font-weight: 500;
}

.service-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(45, 45, 45, 0.75);
  line-height: 1.6;
  margin-top: 12px;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
  position: relative;
  width: 100%;
  background: #1B4D3E;
  padding: 120px 24px;
  z-index: 1;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: left;
  padding: 0 16px;
}

.process-step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(201, 162, 39, 0.3);
  line-height: 1;
  display: block;
}

.process-step-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 16px;
}

.process-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-top: 12px;
}

.process-connector {
  display: flex;
  align-items: center;
  position: relative;
  width: 60px;
  flex-shrink: 0;
  margin-top: 40px;
  height: 2px;
}

.process-connector-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(201, 162, 39, 0.4);
}

.process-connector-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C9A227;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.process-connector-dot--end {
  left: auto;
  right: 0;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
  position: relative;
  width: 100%;
  background: #FAFBF7;
  padding: 120px 24px;
  z-index: 1;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.review-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #C9A227;
  text-align: left;
  transition: all 0.4s ease;
}



.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.review-quote {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2D2D2D;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
}

.review-author-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2D2D2D;
  display: block;
}

.review-author-location {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6B6B6B;
  display: block;
  margin-top: 2px;
}

.reviews-trust {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background: #1B4D3E;
  color: #FFFFFF;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.trust-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6B6B6B;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  position: relative;
  width: 100%;
  background: #F5F0E6;
  padding: 120px 24px;
  z-index: 1;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
}

.about-body {
  margin-top: 24px;
}

.about-body p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2D2D2D;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.about-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2D2D2D;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.about-image-frame {
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 3px solid #C9A227;
  border-radius: 8px;
  z-index: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  position: relative;
  width: 100%;
  background: #1B4D3E;
  padding: 120px 24px;
  z-index: 2;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-top: 24px;
  margin-bottom: 40px;
}

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

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.contact-detail svg {
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-detail-value {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.contact-detail-value:hover {
  color: #C9A227;
}

.contact-detail-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-top: 2px;
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.contact-social a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.contact-social a:hover {
  color: #C9A227;
  opacity: 1;
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(15, 46, 37, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 48px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  display: block;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #C9A227;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-select option {
  background: #0F2E25;
  color: #FFFFFF;
}

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

.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  text-align: center;
}

/* Form States */
.form-success,
.form-error {
  display: none;
  text-align: center;
  padding: 48px 32px;
}

.form-success.active,
.form-error.active {
  display: block;
}

.form-success svg {
  margin: 0 auto 16px;
  display: block;
}

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.form-success p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.form-error {
  color: #E74C3C;
}

.form-error a {
  color: #C9A227;
  text-decoration: none;
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
  position: relative;
  width: 100%;
  z-index: 2;
  line-height: 0;
  background: #E8E8E8;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  display: block;
  filter: grayscale(0.3) saturate(0.8);
}

.map-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #C9A227;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  position: relative;
  width: 100%;
  background: #0F2E25;
  padding: 64px 24px 32px;
  z-index: 2;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: #FFFFFF;
  display: block;
}

.footer-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A227;
  display: block;
  margin-top: 4px;
}

.footer-brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C9A227;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #C9A227;
}

.footer-contact a:nth-child(2) {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.footer-area {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

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

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #C9A227;
  opacity: 1;
}

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

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   MOBILE CTA BAR
   ======================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #1B4D3E;
  color: #FFFFFF;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   ENTRANCE ANIMATIONS
   ======================================== */
.animate-in {
  opacity: 0;
  transform: translateY(40px);
}

.animate-in-left {
  opacity: 0;
  transform: translateX(-40px);
}

.animate-in-right {
  opacity: 0;
  transform: translateX(40px);
}

/* ========================================
   RESPONSIVE - TABLET (768px - 1023px)
   ======================================== */
@media (max-width: 1023px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   RESPONSIVE - MOBILE (< 768px)
   ======================================== */
@media (max-width: 767px) {
  /* Typography */
  .section-heading {
    font-size: 32px;
  }

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-logo-sub {
    display: none;
  }

  /* Hero */
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

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

  /* Intro */
  .intro {
    padding: 100px 24px;
    min-height: auto;
  }

  .intro-stats {
    gap: 32px;
  }

  .intro-stat-number {
    font-size: 40px;
  }

  /* Services */
  .services {
    padding: 64px 24px;
  }

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

  /* Process */
  .process {
    padding: 64px 24px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .process-step {
    text-align: center;
    max-width: 100%;
  }

  .process-connector {
    display: none;
  }

  /* Reviews */
  .reviews {
    padding: 64px 24px;
  }

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

  /* About */
  .about {
    padding: 64px 24px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

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

  .about-trust {
    gap: 16px;
  }

  /* Contact */
  .contact {
    padding: 64px 24px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px;
  }

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

  /* Map */
  .map-section iframe {
    height: 280px;
  }

  /* Footer */
  .footer {
    padding: 48px 24px 24px;
  }

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

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

  /* Mobile CTA */
  .mobile-cta {
    display: flex;
  }

  /* Add padding to body for mobile CTA */
  body {
    padding-bottom: 56px;
  }
}

/* ========================================
   FOCUS STATES (Accessibility)
   ======================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #C9A227;
  outline-offset: 2px;
}

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

  .hero-scroll-indicator {
    animation: none;
  }
}
