/* ====================================
   ROOT VARIABLES & COLOR SCHEME
   Brand Color Palette:
   - Dark Blue: #0A4F87
   - Medium Blue: #0F75B7
   - Light Blue/Cyan: #32B4E8
   - Dark Gray: #7A7A7A
   - Light Gray: #C4C4C4
   ==================================== */
:root {
  --background: #f5f7fa;
  --foreground: #0A4F87;
  --primary: #0F75B7;
  --primary-dark: #0A4F87;
  --primary-light: #32B4E8;
  --secondary: #32B4E8;
  --accent: #7A7A7A;
  --border: #C4C4C4;
  --muted: #7A7A7A;
  --muted-light: #C4C4C4;
  --card-bg: #ffffff;
  --destructive: #e74c3c;
  
  --radius: 4px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
}

/* ====================================
   GLOBAL STYLES
   ==================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  letter-spacing: -0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: #0A4F87;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: #0F75B7;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #32B4E8;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ====================================
   CONTAINER & LAYOUT
   ==================================== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* ====================================
   HEADER & NAVIGATION - AERO GLASSMORPHISM
   ==================================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
  width: 100%;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
  height: auto;
  gap: var(--spacing-lg);
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .navbar {
    padding: var(--spacing-md) var(--spacing-md);
    gap: var(--spacing-sm);
    flex-wrap: wrap;
  }
}

/* Left Section: Logo */
.nav-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  order: 1;
}

/* Center Section: Navigation Links */
.nav-center {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  list-style: none !important;
  flex-grow: 1;
  order: 2;
  padding: 0 !important;
  margin: 0 !important;
  width: auto;
  flex-wrap: nowrap;
  min-height: 60px;
}

.nav-center li {
  list-style: none !important;
  display: inline-flex !important;
  align-items: center;
}

.nav-center li::before {
  content: none !important;
}

@media (min-width: 768px) {
  .nav-center {
    display: flex !important;
  }
  
  .nav-center li {
    display: inline-flex !important;
  }
}

@media (max-width: 767px) {
  .nav-center {
    display: none !important;
  }
}

/* Right Section: Phone & CTA Button */
.nav-right {
  display: none;
  align-items: center;
  gap: var(--spacing-md);
  flex-shrink: 0;
  order: 3;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .nav-right {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .nav-right {
    display: none !important;
  }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.8;
}

.logo-img {
  height: 3.2rem;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .logo-img {
    height: 2.2rem;
  }
}

.nav-center a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0A4F87;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.3px;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

.nav-center a:hover {
  color: #0F75B7;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #0F75B7 0%, #32B4E8 100%);
  transition: width 0.3s ease;
}

.nav-center a:hover::after {
  width: 100%;
}

.cta-button {
  padding: 12px 28px;
  background: linear-gradient(135deg, #0F75B7 0%, #0A4F87 100%);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  box-shadow: 0 4px 15px rgba(15, 117, 183, 0.3);
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(15, 117, 183, 0.4);
  background: linear-gradient(135deg, #32B4E8 0%, #0F75B7 100%);
}

.cta-button:active {
  transform: translateY(-1px);
}

/* Phone Button - Aero Glassmorphism Style */
.phone-button {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #0056b3;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.3px;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15), inset 1px 1px 0 rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.phone-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #0F75B7;
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(31, 38, 135, 0.25), inset 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.phone-text {
  font-weight: 700;
  color: #0056b3;
}

/* Mobile Phone Button */
@media (max-width: 767px) {
  .phone-button {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .phone-button {
    display: flex !important;
  }
}

/* Mobile Action Bar - Phone & CTA Button */
.mobile-action-bar {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: var(--spacing-sm) var(--spacing-md);
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.1);
  width: 100%;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .mobile-action-bar {
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .mobile-action-bar {
    display: none !important;
  }
}

/* Mobile Phone Button in Action Bar */
.mobile-phone-btn {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #0056b3;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.1), inset 1px 1px 0 rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-phone-btn:active {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0.98);
}

.mobile-phone-text {
  font-weight: 700;
  color: #0056b3;
  font-size: 14px;
}

/* Mobile CTA Button in Action Bar */
.mobile-cta-btn {
  padding: 10px 18px;
  background: linear-gradient(135deg, #0F75B7 0%, #0A4F87 100%);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  box-shadow: 0 4px 12px rgba(15, 117, 183, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-cta-btn:active {
  background: linear-gradient(135deg, #0A4F87 0%, #072E52 100%);
  transform: scale(0.98);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  padding: var(--spacing-sm);
  color: #0A4F87;
  transition: all 0.3s ease;
  flex-shrink: 0;
  order: 4;
}

.mobile-menu-btn:active {
  transform: scale(0.9);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .mobile-menu-btn {
    display: block;
  }
}

.mobile-nav {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: var(--spacing-md);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
  width: 100%;
  flex-basis: 100%;
  order: 5;
  flex-direction: column;
  gap: var(--spacing-md);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: var(--spacing-md) var(--spacing-md);
  color: #0A4F87;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
}

.mobile-nav a:hover {
  color: #0F75B7;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-quote-btn {
  background: linear-gradient(135deg, #0F75B7 0%, #0A4F87 100%) !important;
  color: white !important;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(15, 117, 183, 0.3);
}

.mobile-quote-btn:hover {
  background: linear-gradient(135deg, #32B4E8 0%, #0F75B7 100%) !important;
  box-shadow: 0 6px 20px rgba(15, 117, 183, 0.4);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: var(--spacing-lg);
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}

.hero p {
  font-size: 1.25rem;
  color: #f3f4f6;
  margin-bottom: var(--spacing-lg);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-btn {
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #0F75B7 0%, #0A4F87 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(15, 117, 183, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 117, 183, 0.4);
}

.hero-btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background-color: #32B4E8;
  border-color: #32B4E8;
  color: white;
}

.hero-badges {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  color: #d1d5db;
}

@media (min-width: 768px) {
  .hero-badges {
    flex-direction: row;
    gap: var(--spacing-2xl);
  }
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.hero-badge-number {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

.badge-divider {
  display: none;
  width: 1px;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .badge-divider {
    display: block;
  }
}

/* ====================================
   SECTIONS & CARDS
   ==================================== */
section {
  padding: var(--spacing-2xl) var(--spacing-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
  margin-bottom: var(--spacing-md);
}

.card {
  background-color: var(--card-bg);
  border: 1px solid #E8F0F7;
  border-radius: var(--radius);
  padding: var(--spacing-lg);
  box-shadow: 0 2px 4px rgba(10, 79, 135, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: #32B4E8;
  box-shadow: 0 4px 12px rgba(50, 180, 232, 0.15);
  transform: translateY(-2px);
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ====================================
   FOOTER
   ==================================== */
footer {
  background: linear-gradient(135deg, rgba(10, 79, 135, 0.9) 0%, rgba(15, 117, 183, 0.9) 100%);
  backdrop-filter: blur(10px);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(31, 38, 135, 0.1);
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-md);
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.3px;
}

.footer-section h4 {
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: white;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.3px;
}

.footer-section p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.3px;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: var(--spacing-sm);
}

.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.3px;
}

.footer-list a:hover {
  color: #32B4E8;
  text-decoration: underline;
  text-decoration-color: rgba(50, 180, 232, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.3px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.3px;
}

.footer-links a:hover {
  color: #32B4E8;
  text-decoration: underline;
  text-decoration-color: rgba(50, 180, 232, 0.3);
}

/* Logo Footer Section */
.footer-logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.footer-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-logo:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .footer-logo-section {
    padding: var(--spacing-md);
  }

  .footer-logo {
    width: 60px;
  }
}

@media (max-width: 640px) {
  .footer-logo-section {
    padding: var(--spacing-sm);
    margin-top: var(--spacing-md);
  }

  .footer-logo {
    width: 120px;
  }
}

/* ====================================
   FORMS
   ==================================== */
form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--foreground);
  font-size: 0.875rem;
}

input, textarea, select {
  padding: var(--spacing-md);
  border: 1px solid #E8F0F7;
  border-radius: var(--radius);
  font-size: 1rem;
  background-color: var(--background);
  color: var(--foreground);
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #32B4E8;
  box-shadow: 0 0 0 3px rgba(50, 180, 232, 0.1);
  background-color: white;
}

.form-row {
  display: grid;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.btn {
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, #0F75B7 0%, #0A4F87 100%);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(15, 117, 183, 0.2);
}

.btn:hover {
  background: linear-gradient(135deg, #32B4E8 0%, #0F75B7 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(50, 180, 232, 0.3);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ====================================
   ALERTS & MESSAGES
   ==================================== */
.alert {
  padding: var(--spacing-md);
  border-radius: var(--radius);
  margin-bottom: var(--spacing-md);
}

.alert-error {
  background-color: #fee;
  border: 1px solid #fcc;
  color: #c33;
}

.alert-success {
  background-color: #efe;
  border: 1px solid #cfc;
  color: #3c3;
}

.alert-info {
  background-color: #eef;
  border: 1px solid #ccf;
  color: #33c;
}

/* ====================================
   ACCORDION / FAQ
   ==================================== */
.accordion {
  border: 1px solid #E8F0F7;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(10, 79, 135, 0.08);
}

.accordion-item {
  border-bottom: 1px solid #E8F0F7;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg);
  background-color: var(--card-bg);
  border: none;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #F0F6FB;
  color: #0F75B7;
}

.accordion-header.active {
  background: linear-gradient(135deg, #F0F6FB 0%, #E8F0F7 100%);
  color: #0A4F87;
  border-bottom: 2px solid #32B4E8;
}

.accordion-icon {
  transition: transform 0.3s ease;
  color: #0F75B7;
}

.accordion-icon.open {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: var(--spacing-lg);
  background-color: #F5F9FC;
  color: var(--muted);
  border-top: 1px solid #E8F0F7;
}

.accordion-content.active {
  display: block;
}

/* ====================================
   UTILITIES
   ==================================== */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
}

.text-white {
  color: white;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }

.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}

@media (min-width: 769px) {
  .visible-mobile {
    display: none;
  }
}

/* ====================================
   RESPONSIVE UTILITIES
   ==================================== */
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  section {
    padding: var(--spacing-lg) var(--spacing-md);
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ====================================
   WINDOWS AERO - GLASSMORPHISM DESIGN
   ==================================== */
.aero-section {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-2xl) var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.aero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 180, 232, 0.3) 0%, rgba(15, 117, 183, 0.2) 50%, rgba(10, 79, 135, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.aero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  max-width: 100%;
}

.aero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 
    0 8px 32px rgba(31, 38, 135, 0.15),
    inset 1px 1px 0 rgba(255, 255, 255, 0.3),
    inset -1px -1px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.3px;
}

.aero-card:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 16px 48px rgba(31, 38, 135, 0.25),
    inset 1px 1px 0 rgba(255, 255, 255, 0.4),
    inset -1px -1px 0 rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.aero-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.aero-content {
  width: 100%;
}

.aero-link {
  color: #0F75B7;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.aero-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0F75B7, #32B4E8);
  transition: width 0.3s ease;
}

.aero-link:hover {
  color: #32B4E8;
}

.aero-link:hover:after {
  width: 100%;
}

/* Aero Typography Enhancement */
.aero-section h2 {
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  font-weight: 300;
  letter-spacing: -0.5px;
  font-size: 2.25rem;
}

.aero-section .text-muted {
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: -0.3px;
}

.aero-card h3 {
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: -0.4px;
  font-size: 1.25rem;
  margin: 0 0 var(--spacing-md) 0;
}

.aero-card p {
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: -0.3px;
  margin: 0;
}

/* Responsive Aero Design */
@media (max-width: 768px) {
  .aero-section {
    padding: var(--spacing-xl) var(--spacing-md);
    margin: var(--spacing-lg) 0;
  }

  .aero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .aero-card {
    padding: var(--spacing-lg);
  }

  .aero-section h2 {
    font-size: 1.75rem;
  }

  .aero-icon {
    font-size: 2rem;
  }
}

/* ====================================
   COMPACT AERO SECTION (SIMPLIFIED)
   ==================================== */
.aero-section-compact {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-lg) var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.section-title-compact {
  margin-bottom: var(--spacing-lg);
}

.aero-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  max-width: 100%;
}

.aero-card-compact {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.1);
  transition: all 0.3s ease;
}

.aero-card-compact:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(31, 38, 135, 0.15);
  transform: translateY(-2px);
}

.aero-icon-small {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
  opacity: 0.9;
}

.aero-content-compact {
  width: 100%;
}

.aero-link-compact {
  color: #0F75B7;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: color 0.3s ease;
  text-decoration: none;
}

.aero-link-compact:hover {
  color: #32B4E8;
}

@media (max-width: 768px) {
  .aero-section-compact {
    padding: var(--spacing-md) var(--spacing-md);
    margin: var(--spacing-md) 0;
  }

  .aero-grid-compact {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .aero-card-compact {
    padding: var(--spacing-md);
  }

  .aero-icon-small {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
  }

  .aero-link-compact {
    font-size: 0.9rem;
  }
}

/* ====================================
   MOBILE OPTIMIZATION - HEADER
   ==================================== */
@media (max-width: 767px) {
  header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 250, 255, 0.9) 100%);
    backdrop-filter: blur(8px);
  }

  nav {
    flex-direction: row;
    flex-wrap: wrap;
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .logo {
    flex: 0 0 auto;
    padding: var(--spacing-sm) 0;
  }

  .nav-links {
    display: none !important;
  }

  .cta-button {
    display: none !important;
  }

  .mobile-menu-btn {
    margin-left: auto;
  }

  /* Phone button takes full width below header when menu is closed */
  .phone-button {
    margin-top: var(--spacing-sm);
    padding: 14px 16px;
    font-size: 1.05rem;
    letter-spacing: -0.2px;
    box-shadow: 0 8px 32px rgba(15, 117, 183, 0.2), inset 1px 1px 0 rgba(255, 255, 255, 0.15);
  }

  .phone-button:hover {
    background: linear-gradient(135deg, #0F75B7 0%, #0A4F87 100%);
    color: white;
  }

  .phone-button:active {
    transform: scale(0.98);
  }

  /* Mobile nav styling with glassmorphism */
  .mobile-nav {
    width: 100%;
    order: 4;
    margin-top: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 16px rgba(31, 38, 135, 0.08);
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    font-size: 0.9rem;
    padding: 12px 16px;
    font-weight: 500;
  }

  .mobile-nav a:last-of-type {
    background: linear-gradient(135deg, #0F75B7 0%, #0A4F87 100%);
    color: white;
    font-weight: 600;
    border-radius: 0 0 6px 6px;
    text-align: center;
    padding: 14px 16px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  header {
    padding: 0;
  }

  nav {
    padding: var(--spacing-xs) var(--spacing-md);
  }

  .logo-img {
    height: 2.5rem;
  }

  .phone-button {
    font-size: 1rem;
    padding: 12px 14px;
    gap: 4px;
  }

  .phone-button span {
    display: none;
  }

  .mobile-menu-btn {
    font-size: 1.3rem;
    padding: 6px;
  }
}

/* ====================================
   SCROLL REVEAL ANIMATIONS
   ==================================== */

/* Base state for all sections and cards */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Visible state when in viewport */
section.visible {
  opacity: 1;
  transform: translateY(0);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect for children items */
section.visible .card {
  opacity: 1;
  transform: translateY(0);
}

/* Apply stagger delay to child cards in grid or flex containers */
section .card:nth-child(1) {
  transition-delay: 0s;
}

section .card:nth-child(2) {
  transition-delay: 0.1s;
}

section .card:nth-child(3) {
  transition-delay: 0.2s;
}

section .card:nth-child(4) {
  transition-delay: 0.3s;
}

section .card:nth-child(5) {
  transition-delay: 0.4s;
}

section .card:nth-child(6) {
  transition-delay: 0.5s;
}

section .card:nth-child(n+7) {
  transition-delay: 0.6s;
}

/* ====================================
   GLOBAL PRESENCE SECTION - SPLIT LAYOUT
   ==================================== */

.global-presence-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(79, 180, 232, 0.08) 0%, rgba(50, 180, 232, 0.05) 100%);
}

.global-presence-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 3rem;
  align-items: center;
}

/* ====================================
   STATS COLUMN (LEFT - 35%)
   ==================================== */

.stats-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stats-heading h2 {
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.compact-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compact-stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 1.25rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.1),
    inset 1px 1px 0 rgba(255, 255, 255, 0.3),
    inset -1px -1px 0 rgba(0, 0, 0, 0.03);
}

.compact-stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 12px 40px rgba(31, 38, 135, 0.15),
    inset 1px 1px 0 rgba(255, 255, 255, 0.35),
    inset -1px -1px 0 rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.compact-stat-content {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
}

.compact-stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0F75B7;
  line-height: 1;
}

.compact-stat-symbol {
  font-size: 1.25rem;
  color: #0F75B7;
  font-weight: 600;
  margin-left: -0.25rem;
}

.compact-stat-label {
  font-size: 0.85rem;
  color: rgba(10, 79, 135, 0.75);
  margin: 0;
  margin-left: auto;
  text-align: right;
  font-weight: 500;
  letter-spacing: -0.3px;
}

/* ====================================
   MAP COLUMN (RIGHT - 65%)
   ==================================== */

.map-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container-split {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(31, 38, 135, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.world-map-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* ====================================
   MAP LOCATION MARKER - PULSING
   ==================================== */

.map-location-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-pulse-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #0F75B7;
  background: rgba(15, 117, 183, 0.08);
  animation: map-pulse 2s infinite ease-out;
  z-index: 1;
}

.marker-pulse-ring::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 3px solid #0F75B7;
  animation: map-pulse 2s infinite ease-out;
  animation-delay: 0.6s;
}

@keyframes map-pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.marker-dot {
  position: relative;
  width: 22px;
  height: 22px;
  background: #0F75B7;
  border-radius: 50%;
  box-shadow: 
    0 0 20px rgba(15, 117, 183, 0.5),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.map-location-marker:hover .marker-dot {
  width: 28px;
  height: 28px;
  box-shadow: 
    0 0 30px rgba(15, 117, 183, 0.7),
    inset 0 0 15px rgba(255, 255, 255, 0.4);
}

/* ====================================
   MARKER TOOLTIP - GLASSMORPHISM
   ==================================== */

.marker-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(-0.5rem);
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 20;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
}

.marker-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border: none;
  border-radius: 0 0 2px 0;
}

.map-location-marker:hover .marker-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-1rem);
}

.marker-tooltip h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F75B7;
  letter-spacing: -0.4px;
}

.tooltip-address {
  font-size: 0.8rem;
  color: rgba(10, 79, 135, 0.8);
  line-height: 1.5;
  margin: 0.5rem 0 0.75rem 0;
  white-space: normal;
  font-weight: 400;
}

.tooltip-directions {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #0F75B7, #32B4E8);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
}

.tooltip-directions:hover {
  background: linear-gradient(135deg, #0A4F87, #0F75B7);
  box-shadow: 0 6px 20px rgba(15, 117, 183, 0.4);
  transform: translateY(-1px);
}

/* ====================================
   RESPONSIVE - GLOBAL PRESENCE
   ==================================== */

@media (max-width: 1200px) {
  .global-presence-container {
    grid-template-columns: 40% 60%;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .global-presence-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-heading h2 {
    font-size: 1.75rem;
  }

  .compact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .compact-stat-card {
    padding: 1rem;
  }

  .compact-stat-number {
    font-size: 1.75rem;
  }

  .compact-stat-label {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    text-align: left;
  }

  .map-container-split {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .global-presence-section {
    padding: 2.5rem 0;
  }

  .global-presence-container {
    padding: 0 1rem;
  }

  .stats-heading h2 {
    font-size: 1.5rem;
  }

  .stats-heading p {
    font-size: 0.85rem;
  }

  .compact-stat-card {
    padding: 0.875rem;
  }

  .compact-stat-number {
    font-size: 1.5rem;
  }

  .compact-stat-symbol {
    font-size: 1rem;
  }

  .compact-stat-label {
    font-size: 0.7rem;
  }

  .marker-tooltip {
    min-width: 240px;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
  }

  .tooltip-address {
    font-size: 0.75rem;
  }

  .tooltip-directions {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .global-presence-section {
    padding: 1.5rem 0;
  }

  .global-presence-container {
    padding: 0 0.75rem;
  }

  .stats-heading h2 {
    font-size: 1.25rem;
  }

  .compact-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .compact-stat-card {
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .compact-stat-content {
    width: 100%;
    justify-content: space-between;
  }

  .compact-stat-number {
    font-size: 1.25rem;
  }

  .compact-stat-label {
    font-size: 0.65rem;
    text-align: right;
  }

  .marker-tooltip {
    min-width: 200px;
    padding: 0.875rem;
    bottom: 100%;
  }

  .tooltip-address {
    font-size: 0.7rem;
    line-height: 1.4;
  }
}


.addresses-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

/* ====================================
   STATS CONTAINER - LEFT SIDE
   ==================================== */

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.15),
    inset 1px 1px 0 rgba(255, 255, 255, 0.3),
    inset -1px -1px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 16px 48px rgba(31, 38, 135, 0.25),
    inset 1px 1px 0 rgba(255, 255, 255, 0.4),
    inset -1px -1px 0 rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #00a8b5;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  line-height: 1;
  display: inline-block;
}

.stat-symbol {
  font-size: 1.5rem;
  color: #00a8b5;
  font-weight: 600;
  margin-left: 0.25rem;
  display: inline;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 0.75rem;
  font-weight: 500;
  letter-spacing: -0.3px;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
}

/* ====================================
   INTERACTIVE MAP - RIGHT SIDE
   ==================================== */

.map-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.world-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 2 / 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  padding: 2rem;
}

.world-map-svg {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

/* ====================================
   LOCATION POINTER - PULSING & TOOLTIP
   ==================================== */

.location-pointer {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.pulse-ring {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #00a8b5;
  background: rgba(0, 168, 181, 0.1);
  animation: pulse-animation 2s infinite ease-out;
  z-index: 0;
}

.pulse-ring::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 3px solid #00a8b5;
  animation: pulse-animation-2 2s infinite ease-out;
  animation-delay: 0.5s;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse-animation-2 {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.location-dot {
  position: relative;
  width: 20px;
  height: 20px;
  background: #00a8b5;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 168, 181, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.location-pointer:hover .location-dot {
  width: 26px;
  height: 26px;
  box-shadow: 0 0 30px rgba(0, 168, 181, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.4);
}

/* ====================================
   GLASSMORPHISM TOOLTIP
   ==================================== */

.location-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-1rem);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  min-width: 280px;
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.2),
    inset 1px 1px 0 rgba(255, 255, 255, 0.4),
    inset -1px -1px 0 rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 20;
  white-space: nowrap;
}

.location-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0 0 8px 0;
  transform: translateX(-50%) rotate(45deg);
  backdrop-filter: blur(12px);
}

.location-pointer:hover .location-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-1.5rem);
}

.location-tooltip h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #00a8b5;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.4px;
}

.tooltip-address {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.4;
  margin: 0.5rem 0 0.75rem 0;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  white-space: normal;
  font-weight: 400;
}

.get-directions-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #00a8b5, #0099a6);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.get-directions-btn:hover {
  background: linear-gradient(135deg, #0099a6, #007a84);
  box-shadow: 0 6px 20px rgba(0, 168, 181, 0.4);
  transform: translateY(-2px);
}

/* ====================================
   RESPONSIVE ADDRESSES SECTION
   ==================================== */

@media (max-width: 1024px) {
  .addresses-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .world-map-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .addresses-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .stat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    text-align: left;
  }

  .stat-number,
  .stat-symbol {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
    margin-top: 0;
    flex: 1;
    margin-left: 1rem;
  }

  .world-map-wrapper {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

  .location-tooltip {
    min-width: 220px;
    padding: 1rem;
    font-size: 0.75rem;
  }

  .tooltip-address {
    font-size: 0.75rem;
  }

  .get-directions-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .addresses-section {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .stats-container {
    gap: 1rem;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .location-tooltip {
    min-width: 200px;
  }

  .aero-link {
    font-size: 0.9rem;
  }
}