/* ============================================
   AdmiServices — Style Custom
   Complément Tailwind CSS CDN
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ---- Variables CSS ---- */
:root {
  --navy-900:    #0B1E35;
  --navy-800:    #103552;
  --navy-700:    #1A4A6E;
  --blue-accent: #1E6FDB;
  --orange:      #FF9500;
  --orange-dark: #E8860A;
  --white:       #FFFFFF;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --glass-bg:    rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.10);
  --transition:  all 0.3s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy-800);
  background-image: radial-gradient(circle at 15% 50%, rgba(30, 111, 219, 0.15), transparent 40%), radial-gradient(circle at 85% 30%, rgba(255, 149, 0, 0.08), transparent 40%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Canvas Particules ---- */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ---- Sticky Navigation ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

#navbar.scrolled {
  background: rgba(11, 30, 53, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  gap: 2rem;
  width: 100%;
}

.nav-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.5rem;
}

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

.header-title {
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* ---- Logo Image ---- */
.nav-logo-link {
  flex-shrink: 0;
}

.brand-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-logo:hover {
  transform: scale(1.02);
}

/* ---- Nav Links ---- */
.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: flex-end;
}

.nav-links a {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  line-height: 1.1;
}

.nav-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--orange);
}

.nav-subtitle {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--gray-400);
  text-transform: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover .nav-title,
.nav-links a.active .nav-title {
  color: var(--white);
  text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

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

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

/* ---- CTA Téléphone Nav ---- */
.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-tel:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255,149,0,0.35);
}

/* ---- Burger Menu Mobile ---- */
#burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

#burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Mobile Menu ---- */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 30, 53, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#mobile-menu.open {
  display: flex;
}

#mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition);
}

#mobile-menu a:hover { color: var(--orange); }

#mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ====== HERO & SLIDER ====== */
.hero {
  position: relative;
  padding: 10rem 1.5rem 2rem 1.5rem;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-slider-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

.slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  animation: fadeSlide 15s infinite;
  background-size: cover;
  background-position: center;
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

@keyframes fadeSlide {
  0% { opacity: 0; z-index: 1; transform: scale(1.05); }
  5% { opacity: 1; z-index: 2; transform: scale(1); }
  33% { opacity: 1; z-index: 2; transform: scale(1); }
  38% { opacity: 0; z-index: 1; transform: scale(1.05); }
  100% { opacity: 0; z-index: 1; }
}

.slide-content {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(16, 53, 82, 0.85); /* Navy transparent */
  padding: 1.5rem 2.5rem;
  border-radius: 8px;
  max-width: 650px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.slide-title {
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-desc {
  color: #FFF;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
}

.slide-desc a {
  color: var(--orange);
  text-decoration: underline;
  transition: color 0.3s;
}

.slide-desc a:hover {
  color: #FFF;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: dotActive 15s infinite;
}

.slider-dot:nth-child(1) { animation-delay: 0s; }
.slider-dot:nth-child(2) { animation-delay: 5s; }
.slider-dot:nth-child(3) { animation-delay: 10s; }

@keyframes dotActive {
  0%, 33% { background: var(--orange); transform: scale(1.3); }
  34%, 100% { background: rgba(255,255,255,0.3); transform: scale(1); }
}

@media (max-width: 768px) {
  .hero-slider { height: 300px; }
  .slide-content { right: 1rem; left: 1rem; bottom: 1rem; max-width: none; padding: 1rem 1.5rem; }
  .slide-title { font-size: 1.2rem; }
  .slide-desc { font-size: 0.9rem; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 149, 0, 0.15);
  border: 1px solid rgba(255, 149, 0, 0.4);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--orange);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gray-300);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,149,0,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
}

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

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

/* ---- Sections ---- */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.section-alt {
  background: rgba(11, 30, 53, 0.7);
}

.section-darker {
  background: rgba(7, 15, 28, 0.8);
}

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

/* ---- Section Titles ---- */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-title .accent { color: var(--orange); }

.section-subtitle {
  color: var(--gray-400);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin: 0.5rem auto 0; }

/* ---- Page Hero (mini) ---- */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 10rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- Cards Glassmorphism ---- */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,149,0,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,149,0,0.15);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 149, 0, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ---- Certifications ---- */
.certif-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.certif-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(30, 111, 219, 0.15);
  border: 1px solid rgba(30, 111, 219, 0.3);
  color: #7DB8FF;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
}

/* ---- Marquee Partenaires ---- */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 3rem 0;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}
.marquee-content {
  display: inline-flex;
  align-items: center;
  animation: marquee 35s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0 3rem;
  transition: transform 0.3s ease;
}
.marquee-item:hover {
  transform: translateY(-2px);
}
.marquee-item img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}
.marquee-text {
  text-align: left;
  white-space: normal;
  width: 180px;
}
.marquee-title {
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.marquee-desc {
  color: var(--white);
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 500;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== PITCH BANNER ====== */
.pitch-banner {
  background: linear-gradient(180deg, rgba(30, 95, 140, 0.6) 0%, rgba(20, 55, 90, 0.8) 100%);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 1.8rem 1rem;
  margin: 0 auto;
  text-align: center;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
  border-radius: 4px;
  max-width: 1400px; /* Optional, depending if it should touch screen edges. The screenshot shows it's a boxed banner. */
}

.pitch-banner h2 {
  color: #FFF;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
  .pitch-banner h2 { font-size: 1.25rem; }
}

/* ---- Zone Badges ---- */
.city-badge {
  display: inline-block;
  background: rgba(255,149,0,0.1);
  border: 1px solid rgba(255,149,0,0.25);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin: 0.3rem;
  transition: var(--transition);
  cursor: default;
}

.city-badge:hover {
  background: rgba(255,149,0,0.2);
  border-color: rgba(255,149,0,0.5);
}

/* ---- Zone Cards ---- */
.zone-card {
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zone-card.green {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
}

.zone-card.yellow {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
}

.zone-card.red {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.25);
}

.zone-card .zone-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.zone-card.green .zone-price { color: #34D399; }
.zone-card.yellow .zone-price { color: #FCD34D; }
.zone-card.red .zone-price { color: #F87171; }

/* ---- Tarif Cards ---- */
.tarif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tarif-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.tarif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue-accent));
}

.tarif-card .tarif-type {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.tarif-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.tarif-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.95rem;
}

.tarif-line:last-child { border-bottom: none; }
.tarif-line .label { color: var(--gray-300); }
.tarif-line .price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
}

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* ---- Contact Cards ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover { transform: translateY(-3px); }

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.contact-card a,
.contact-card p {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.contact-card a:hover { color: var(--orange); }

/* ---- Form ---- */
.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-full { grid-column: 1 / -1; }

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-300);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,149,0,0.05);
  box-shadow: 0 0 0 3px rgba(255,149,0,0.1);
}

.form-group select option {
  background: var(--navy-800);
  color: var(--white);
}

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

/* ---- CTA Section ---- */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-phone {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
  display: block;
  margin: 0.5rem 0 1.5rem;
  transition: var(--transition);
  letter-spacing: -0.02em;
}

.cta-phone:hover {
  text-shadow: 0 0 40px rgba(255,149,0,0.5);
}

/* ---- Footer ---- */
footer {
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.footer-brand .logo { font-size: 1.3rem; }

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact p {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 0.4rem;
}

.footer-contact a {
  color: var(--orange);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer-seo {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.footer-bottom .copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom .copy a {
  color: rgba(255,149,0,0.7);
  text-decoration: none;
}

/* ---- Fade-in animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  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; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-bottom { display: none; }
  #burger { display: flex; }
  .header-title { display: none; }
  .nav-top { border-bottom: none; padding-bottom: 0; }
  .nav-top-right { gap: 0.6rem; }
  .nav-content { gap: 0; }
  .nav-container { padding: 0.5rem 1rem; gap: 0.75rem; }
  .brand-logo { height: 45px; display: block; }
  .btn-tel.nav-cta {
    font-size: 0.85rem;
    padding: 0 1rem;
    height: 45px;
    gap: 0.4rem;
  }
}

@media (max-width: 380px) {
  .btn-tel.nav-cta .tel-text { display: none; }
  .btn-tel.nav-cta { padding: 0 0.85rem; height: 45px; }

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

  section { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 8rem 1.25rem 3rem; }
  .hero { padding-top: 8rem; }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .stats-bar { gap: 2rem; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .btn-primary, .btn-secondary { font-size: 0.9rem; padding: 0.8rem 1.4rem; }
}

/* ====== SERVICES DIAGRAM ====== */
.services-diagram {
  position: relative;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.sv-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sv-card {
  position: relative;
  background: rgba(16, 53, 82, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, border-color 0.3s;
  backdrop-filter: blur(8px);
}
.sv-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,149,0,0.5);
  background: rgba(16, 53, 82, 0.7);
}

.sv-card::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
}

/* Left side cards pointing to center */
.sv-left .sv-card::after {
  right: -20px;
  border-color: transparent transparent transparent rgba(255,255,255,0.1);
}

/* Right side cards pointing to center */
.sv-right .sv-card::after {
  left: -20px;
  border-color: transparent rgba(255,255,255,0.1) transparent transparent;
}

.sv-title {
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.sv-desc {
  color: var(--white);
  font-size: 0.85rem;
  line-height: 1.5;
}

.sv-desc span.highlight-orange {
  color: var(--orange);
}

.sv-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sv-center-img {
  width: 450px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 900px) {
  .services-diagram {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .sv-center { grid-row: 1; margin: 0 auto; }
  .sv-left { grid-row: 2; }
  .sv-right { grid-row: 3; }
  .sv-card::after { display: none; }
}
