:root {
  --brand-hot: #D83A2D;
  --brand-cold: #1E3A8A;
  --brand-grey: #D1D5DB; /* Darker grey */
  --brand-dark: #1F2937;
  --brand-bg: #F3F4F6; /* Darker background */
  --brand-light: #3B82F6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.text-brand-dark { color: var(--brand-dark); }
.bg-brand-bg { background: var(--brand-bg); }

/* ===== HEADER & NAVIGATION ===== */
#site-header {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  transition: all 0.3s ease;
  z-index: 999;
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding-top: ;
  padding-bottom: ;
}

/* Desktop Navigation */
.nav-link-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brand-dark);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-link-simple span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.nav-line {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-hot) 0%, var(--brand-hot) 50%, var(--brand-cold) 50%, var(--brand-cold) 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px 2px 0 0;
}

.nav-link-simple:hover .nav-line {
  left: 0;
}

.nav-link-simple:hover {
  color: var(--brand-dark);
}

.nav-link-simple:active {
  transform: translateY(1px);
}

#site-header.scrolled .nav-link-simple {
  font-size: 1rem;
  padding: 0.4rem 0.6rem;
}

/* ===== MOBILE NAVIGATION ===== */
#mobile-menu {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: white;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(229, 231, 235, 0.8);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  overflow-y: auto;
  padding-top: ;
}

#mobile-menu.show {
  left: 0;
}

#mobile-menu.hidden {
  left: -100%;
}

#mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

#mobile-backdrop.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#mobile-backdrop:not(.hidden) {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Mobile menu content */
#mobile-menu .max-w-7xl {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#mobile-menu a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  margin: 0.25rem 0;
}

#mobile-menu a:hover {
  background: linear-gradient(135deg, var(--brand-bg) 0%, white 100%);
  color: var(--brand-hot);
  transform: translateX(8px);
  border-bottom-color: rgba(216, 58, 45, 0.2);
}

#mobile-menu a:hover i {
  color: var(--brand-hot);
  transform: scale(1.1);
}

#mobile-menu a i {
  transition: all 0.3s ease;
  width: 20px;
  text-align: center;
  margin-right: 1rem;
  color: var(--brand-cold);
}

/* Mobile CTA button */
#mobile-menu .btn-primary {
  margin: 1.5rem 1.5rem 0;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

/* Enhanced hamburger button */
#mobile-menu-btn {
  position: relative;
  z-index: 10000;
}

/* Prevent body scroll when menu is open */
body.overflow-hidden {
  overflow: hidden;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 10s ease;
}

.hero-section:hover img {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding-top: 0;
  margin-top: -2rem;
}

.overlay-gradient {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(216, 58, 45, 0.75) 100%);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--brand-cold) 0%, var(--brand-light) 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.btn-primary::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;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

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

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  background: linear-gradient(135deg, var(--brand-hot) 0%, #E11D48 100%);
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-cold), var(--brand-hot));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card .text-4xl {
  transition: transform 0.3s ease, color 0.3s ease;
}

.card:hover .text-4xl {
  transform: scale(1.1);
  color: var(--brand-hot);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.03), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(30, 58, 138, 0.2);
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-card:hover .feature-icon::before {
  left: 100%;
}

.feature-content {
  flex: 1;
  min-width: 0;
}

.feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--brand-cold);
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Feature icon colors */
.feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #10b981, #047857);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.feature-card:nth-child(5) .feature-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.feature-card:nth-child(6) .feature-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Hover color enhancements */
.feature-card:nth-child(1):hover .feature-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
}

.feature-card:nth-child(2):hover .feature-icon {
  background: linear-gradient(135deg, #10b981, #047857) !important;
}

.feature-card:nth-child(3):hover .feature-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
}

.feature-card:nth-child(4):hover .feature-icon {
  background: linear-gradient(135deg, #14b8a6, #0d9488) !important;
}

.feature-card:nth-child(5):hover .feature-icon {
  background: linear-gradient(135deg, #f97316, #ea580c) !important;
}

.feature-card:nth-child(6):hover .feature-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

/* ===== GALLERY & LIGHTBOX ===== */
.gallery-item {
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

/* Lightbox */
#lightbox {
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.95) !important;
  z-index: 9999;
}

#lightbox:not(.hidden) {
  opacity: 1;
  display: flex;
}

#lightbox .relative {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 95vw;
  max-height: 95vh;
}

#lightbox-img {
  max-width: 100%;
  max-height: calc(85vh - 100px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: lightboxFadeIn 0.3s ease;
}

#lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
  max-width: 600px;
  padding: 0 1rem;
}

#lightbox-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

#lightbox-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

#lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

#lightbox-close:hover {
  background: var(--brand-hot);
  transform: scale(1.1);
}

#lightbox-prev,
#lightbox-next {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

#lightbox-prev:hover,
#lightbox-next:hover {
  background: var(--brand-cold);
  transform: scale(1.1);
}

#lightbox-prev {
  left: 1rem;
}

#lightbox-next {
  right: 1rem;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== FAQ SECTION ===== */
.faq-item {
  transition: all 0.3s ease;
}

.faq-btn {
  transition: all 0.3s ease;
}

.faq-btn i {
  transition: transform 0.3s ease;
}

.faq-btn.open i {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-content {
  max-height: 500px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Count-up animation */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* Staggered animation delays */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

/* ===== SECTIONS ===== */
section {
  scroll-margin-top: 6rem;
}

/* Why Choose Us Stats */
#why .bg-gradient-to-r {
  background: linear-gradient(135deg, var(--brand-cold) 0%, var(--brand-hot) 100%) !important;
  position: relative;
  overflow: hidden;
}

#why .bg-gradient-to-r::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

#why .count-up {
  position: relative;
  display: inline-block;
}

#why .count-up::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.8s ease;
}

#why .group:hover .count-up::after {
  width: 100%;
}

#why .text-white {
  color: white !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Final CTA Section */
#cta-final .relative {
  display: flex;
  align-items: center;
  min-height: 60vh;
}

#cta-final .py-24 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--brand-cold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-hot);
}

/* Selection color */
::selection {
  background: var(--brand-cold);
  color: white;
}

::-moz-selection {
  background: var(--brand-cold);
  color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Hero Section */
  .hero-section {
    height: 80vh;
    min-height: 600px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content {
    margin-top: 0;
  }
  
  /* Cards */
  .card {
    padding: 2rem 1.5rem;
  }
  
  /* Buttons */
  .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Feature Cards */
  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    font-size: 1.5rem;
    margin: 0 auto;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
  
  #why .grid.grid-cols-2 {
    gap: 2rem;
  }
  
  /* Mobile Navigation */
  #mobile-menu {
    width: 85%;
    max-width: 300px;
  }
  
  #mobile-menu a {
    padding: 0.875rem 1.25rem;
    font-size: 1.0625rem;
  }
  
  #mobile-menu .btn-primary {
    margin: 1rem 0;
    padding: 0.875rem 1.25rem;
    color: #fff;
  }
  
  #mobile-backdrop {
    background: rgba(0, 0, 0, 0.7);
  }
  
  /* Lightbox */
  #lightbox .relative {
    max-width: 98vw;
    max-height: 98vh;
    padding: 1rem;
  }
  
  #lightbox-img {
    max-height: calc(80vh - 80px);
  }
  
  #lightbox-caption {
    margin-top: 1rem;
  }
  
  #lightbox-title {
    font-size: 1.25rem;
  }
  
  #lightbox-description {
    font-size: 1rem;
  }
  
  #lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  
  #lightbox-prev,
  #lightbox-next {
    width: 2.5rem;
    height: 2.5rem;
    bottom: -1rem;
    top: auto;
  }
  
  #lightbox-prev {
    left: calc(50% - 3rem);
  }
  
  #lightbox-next {
    right: calc(50% - 3rem);
  }
}

@media (max-width: 480px) {
  #mobile-menu {
    width: 90%;
  }
}

/* Performance-focused animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Loading optimizations */
img {
  loading: lazy;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
  background: linear-gradient(135deg, var(--brand-cold) 0%, var(--brand-hot) 100%);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

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

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

/* Contact Form Styles */
.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.8);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-cold), var(--brand-hot));
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-cold);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
  transform: translateY(-2px);
}

.form-input:hover,
.form-textarea:hover {
  border-color: #9ca3af;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
/* Form Error Styles */
.form-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: slideInUp 0.5s ease;
}

.form-error i {
    margin-right: 0.5rem;
}
/* Contact Info Styles */
.contact-info {
  background: linear-gradient(135deg, var(--brand-bg) 0%, white 100%);
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 2rem;
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-cold), var(--brand-hot));
  border-radius: 2px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-cold);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-cold) 0%, var(--brand-light) 100%);
}

.contact-details h3 {
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.contact-details p,
.contact-details a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--brand-hot);
}

/* Map Section */
.map-section {
  margin-top: 4rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.map-placeholder {
  background: linear-gradient(135deg, var(--brand-bg) 0%, #e5e7eb 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  font-size: 1.125rem;
  font-weight: 600;
}

/* Enhanced Submit Button */
.contact-submit-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand-cold) 0%, var(--brand-light) 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-submit-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: left 0.5s;
}

.contact-submit-btn:hover::before {
  left: 100%;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  background: linear-gradient(135deg, var(--brand-hot) 0%, #E11D48 100%);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Success Message */
.form-success {
  background: linear-gradient(135deg, #10b981, #047857);
  color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  text-align: center;
  display: none;
}

.form-success.show {
  display: block;
  animation: slideInUp 0.5s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }
  
  .contact-info {
    position: static;
  }
  
  .contact-hero h1 {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 4rem 0 3rem;
  }
  
  .contact-hero h1 {
    font-size: 2.25rem;
  }
  
  .contact-hero p {
    font-size: 1.125rem;
  }
  
  .contact-form-container,
  .contact-info {
    padding: 2rem 1.5rem;
  }
  
  .contact-method {
    padding: 1.25rem;
  }
  
  .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 3rem 0 2rem;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-container {
    padding: 2rem 1rem;
  }
  
  .contact-form-container,
  .contact-info {
    padding: 1.5rem 1rem;
    border-radius: 1rem;
  }
}

/* ===== MAP STYLES ===== */
.map-container {
  height: 400px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.map-placeholder {
  background: linear-gradient(135deg, var(--brand-bg) 0%, #e5e7eb 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  font-size: 1.125rem;
  font-weight: 600;
}

/* Google Maps custom styling */
.gm-style .gm-style-iw-c {
  border-radius: 1rem;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gm-style .gm-style-iw-t::after {
  background: linear-gradient(135deg, var(--brand-cold) 0%, var(--brand-hot) 100%);
}

.gm-ui-hover-effect {
  margin: 8px 8px 0 0 !important;
}

/* Info window styling */
.map-info-window {
  padding: 1.5rem;
}

.map-info-window h3 {
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.map-info-window p {
  color: #6b7280;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.map-info-window a {
  color: var(--brand-cold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.map-info-window a:hover {
  color: var(--brand-hot);
}

/* ===== POLICY PAGE STYLES ===== */
.policy-container {
  min-height: 70vh;
}

.policy-content {
  border: 1px solid rgba(229, 231, 235, 0.8);
  position: relative;
  overflow: hidden;
}

.policy-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-cold), var(--brand-hot));
}

.policy-tabs {
  scrollbar-width: none;
}

.policy-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.tab-btn:hover:not(.active) {
  background: rgba(30, 58, 138, 0.05);
}

.tab-content {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Prose styling for policy content */
.prose h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul {
  margin-bottom: 1rem;
}

.prose a {
  text-decoration: underline;
}

.prose a:hover {
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .policy-container {
    padding: 2rem 1rem;
  }
  
  .policy-content {
    padding: 1.5rem;
  }
  
  .policy-tabs {
    overflow-x: auto;
  }
  
  .tab-btn {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}