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

:root {
  --red: #E32227;
  --red-dark: #B91C1C;
  --red-light: #FF3B3F;
  --black: #000000;
  --dark: #0A0A0A;
  --dark-card: #111111;
  --dark-card-hover: #1A1A1A;
  --dark-border: #1F1F1F;
  --gray-900: #171717;
  --gray-800: #262626;
  --gray-700: #404040;
  --gray-600: #525252;
  --gray-500: #737373;
  --gray-400: #A3A3A3;
  --gray-300: #D4D4D4;
  --white: #FFFFFF;
  --font-main: 'Inter', sans-serif;
  --container-max: 1400px;
  --section-padding: 100px 0;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title .highlight {
  color: var(--red);
}

.section-description {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-main);
}

.btn-primary {
  background-color: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227, 34, 39, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-400);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background:
    linear-gradient(to top, rgba(163, 22, 8, 0.85) 0%, rgba(100, 14, 5, 0.4) 35%, transparent 60%),
    #0A0A0A;
}

/* Subtle dark strip at the very bottom for section transition */
.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 18%;
  background: linear-gradient(to top, #0A0A0A 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

/* Right column: hero image */
.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: calc(100vh - 80px);
}

.hero-image img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  position: relative;
  z-index: 1;
  
}

/* Left edge fade: image bleeds into the reddish-dark text side */
.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  
  z-index: 2;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.0625rem;
  color: var(--gray-400);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  padding: 14px 24px;
  background: none;
  border: none;
  font-size: 0.9375rem;
  font-family: var(--font-main);
  transition: var(--transition);
}

.btn-watch:hover {
  color: var(--red);
}

.play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.btn-watch:hover .play-circle {
  background: var(--red);
  border-color: var(--red);
}

.play-circle svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
  margin-left: 2px;
}

/* Hero Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.avatar-group {
  display: flex;
}

.avatar-group .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--dark);
  margin-left: -10px;
  background: var(--gray-700);
  overflow: hidden;
}

.avatar-group .avatar:first-child {
  margin-left: 0;
}

.avatar-group .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-proof-text {
  font-size: 0.875rem;
}

.social-proof-text .stars {
  color: #FBBF24;
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.social-proof-text p {
  color: var(--gray-400);
  font-size: 0.8125rem;
  margin-top: 2px;
}

/* Hero Tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags .tag {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-300);
  transition: var(--transition);
}

.hero-tags .tag:hover {
  background: rgba(227, 34, 39, 0.1);
  border-color: var(--red);
  color: var(--white);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--section-padding);
  background: var(--dark);
}

.about .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.about .section-description {
  margin: 0 auto;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-number .red {
  color: var(--red);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Video Box */
.video-box {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-900);
  cursor: pointer;
}

@media (max-width: 768px) {
  .video-box { height: 260px; }
}

.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(227, 34, 39, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--red);
  box-shadow: 0 0 40px rgba(227, 34, 39, 0.4);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  margin-left: 4px;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--section-padding);
  background: var(--black);
}

.services .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 40px;
}

.services .section-header .left {
  max-width: 650px;
}

.carousel-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.services-carousel {
  overflow: hidden;
}

.services-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.service-card {
  flex: 0 0 calc(33.33% - 14px);
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 34, 39, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
}

.service-card-overlay h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.service-card-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.service-card-btn:hover {
  background: #c41e22;
}

.service-card-btn svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-us {
  padding: var(--section-padding);
  background: var(--dark);
}

.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.why-us-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

.why-us-image .dots-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--red) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.4;
  z-index: -1;
}

.why-us-content {
  max-width: 500px;
}

/* Accordion */
.accordion {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--dark-card);
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: rgba(227, 34, 39, 0.3);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-main);
  color: var(--white);
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.accordion-header h3 .highlight {
  color: var(--red);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  background: var(--red);
  transform: rotate(180deg);
}

.accordion-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 24px 20px;
}

.accordion-body p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: var(--section-padding);
  background: var(--black);
}

.pricing .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(227, 34, 39, 0.15);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card-description {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-card-price {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-card-price .currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-500);
}

.pricing-card-price .amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card-price .period {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.pricing-divider {
  height: 1px;
  background: var(--dark-border);
  margin-bottom: 24px;
}

.pricing-features {
  flex: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-300);
  margin-bottom: 14px;
  line-height: 1.5;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-features li svg.check {
  stroke: var(--red);
}

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

.pricing-card .btn-primary {
  background: var(--red);
}

.pricing-card .btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid var(--dark-border);
}

.pricing-card .btn-ghost:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.pricing-trial-block {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.pricing-trial-text h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-trial-text p {
  font-size: 1rem;
  color: var(--gray-500);
}

.pricing-trial-card {
  width: 400px;
}

/* ===== LOCATIONS SECTION (old index section kept for reference) ===== */
.locations {
  padding: var(--section-padding);
  background: var(--dark);
}

.locations .section-header {
  margin-bottom: 40px;
}

/* ===== LOCATIONS PAGE ===== */
.locations-page {
  padding-top: 80px;
  padding-bottom: 100px;
  background: var(--dark);
}

.locations-page-hero {
  padding: 70px 0 60px;
  text-align: center;
}

.locations-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  margin: 12px 0 16px;
}

.locations-page-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}

.locations-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.location-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 40px;
}

.location-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.location-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-info-item span,
.location-info-item a {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.location-info-item a:hover {
  color: var(--white);
}

.location-map-single {
  width: 100%;
  height: 580px;
  border-radius: 16px;
  overflow: hidden;
}

/* Leaflet custom pin */
.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.map-pin-label {
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  padding: 10px 18px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(227, 34, 39, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.map-pin-name {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.map-pin-addr {
  font-weight: 500;
  font-size: 11.5px;
  opacity: 0.88;
}

.map-pin-tail {
  width: 2px;
  height: 12px;
  background: var(--red);
}

.map-pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 34, 39, 0.3);
}

.map-pin-directions {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin-top: 8px;
  padding: 7px 14px;
  background: #000;
  color: #fff !important;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  pointer-events: auto;
  transition: background 0.2s;
  box-sizing: border-box;
}
.map-pin-directions:hover { background: #222; color: #fff !important; }
.map-pin-directions svg { width: 13px; height: 13px; flex-shrink: 0; }
.map-pin.active .map-pin-directions { display: flex; }

/* Leaflet popup — dark theme */
.map-popup .leaflet-popup-content-wrapper {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  padding: 0;
}
.map-popup .leaflet-popup-content {
  margin: 0;
}
.map-popup .leaflet-popup-tip {
  background: #1a1a1a;
}
.map-popup .leaflet-popup-close-button {
  color: rgba(255,255,255,0.5);
  top: 6px;
  right: 8px;
}
.map-popup .leaflet-popup-close-button:hover {
  color: #fff;
}
.map-popup-inner {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-popup-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.map-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.map-popup-btn:hover { opacity: 0.85; }
.map-popup-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Location card directions button */
.location-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.location-directions-btn:hover { opacity: 0.85; }
.location-directions-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.locations-info {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 50px;
}

.locations-stat {
  flex-shrink: 0;
}

.locations-stat .number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.locations-stat .label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.locations-info p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 500px;
}

.world-map {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--gray-900);
  position: relative;
}

.world-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 80px 0;
  background: var(--black);
  text-align: center;
}

.cta .container {
  
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 36px;
  
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  border-top: 1px solid var(--dark-border);
}

.footer-top {
  padding: 64px 0 48px;
}

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

/* Brand column */
.footer-brand .footer-logo img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Nav columns */
.footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

/* Contact info columns */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
  transition: var(--transition);
}

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

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--gray-600);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ===== PLACEHOLDER IMAGE ===== */
.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 140px 0 80px;
  background: var(--dark);
  min-height: 100vh;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--dark-border);
}

.legal-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.legal-content {
  width: 100%;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
}

.legal-section p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.8;
}

.legal-list {
  margin-top: 12px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list li {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.7;
  list-style: disc;
}

.legal-section a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(227, 34, 39, 0.4);
  text-underline-offset: 3px;
  transition: var(--transition);
}

.legal-section a:hover {
  color: var(--red-light);
  text-decoration-color: var(--red-light);
}
.legal-back {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-image {
    margin-top: 10%;
    margin-top: 10%;
    height: auto;
    order: -1;
  }

  .hero-image img {
    max-height: 50vh;
  }

  .hero-image::before {
    width: 0;
  }

  .service-card {
    flex: 0 0 calc(50% - 10px);
  }

  .why-us .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us-image {
    order: -1;
  }

  .why-us-image img {
    height: 350px;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--dark-border);
  }

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

  .mobile-toggle {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .service-card {
    flex: 0 0 calc(80% - 10px);
  }

  .services .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .locations-cards-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand p {
    max-width: 100%;
  }

  .footer-brand .footer-logo {
    display: flex;
    justify-content: center;
  }

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

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

  .footer-contact-item {
    justify-content: center;
  }

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

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

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

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 420px;
}

.mobile-bottom-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  padding: 10px 16px;
  gap: 4px;
}

.mbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 16px;
  color: var(--gray-500);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.mbn-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mbn-item:hover,
.mbn-item.active {
  color: var(--white);
}

.mbn-cta {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.6875rem;
  font-weight: 700;
}

.mbn-cta:hover {
  background: #c41e22;
  color: var(--white);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: block;
  }

  .mobile-toggle {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .navbar .container {
    justify-content: center;
  }

  .mbn-item {
    padding: 6px 8px;
  }

  .mbn-cta {
    padding: 8px 14px;
    border-radius: 18px;
  }

  .footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-tags .tag {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
}
