:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --surface2: #eef2ff;
  --blue: #0057ff;
  --blue-hover: #3377ff;
  --orange: #ff5500;
  --cyan: #00b8d9;
  --text: #0d1340;
  --text2: #1e2a54;
  --muted: #4a5380;
  --border: rgba(0, 87, 255, 0.12);
  --shadow-blue: rgba(0, 87, 255, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 55% 55% at 80% 35%, rgba(0, 87, 255, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 75%, rgba(255, 85, 0, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 55% 95%, rgba(0, 184, 217, 0.1) 0%, transparent 70%),
    linear-gradient(var(--blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--blue) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px, 60px 60px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
  opacity: 0.08;
  pointer-events: none;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0, 87, 255, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: transparent;
}

.logo-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--text);
}

.logo-name span { color: var(--blue); }

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

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 4px;
}

.nav-links a:hover { color: var(--blue); }

.btn-nav {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  min-height: 48px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px var(--shadow-blue);
}

.btn-nav:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 55% at 80% 35%, rgba(0, 87, 255, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 75%, rgba(255, 85, 0, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 55% 95%, rgba(0, 184, 217, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.28);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 90px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--text);
}

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

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(0, 87, 255, 0.3);
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 87, 255, 0.4);
}

.btn-outline {
  position: relative;
  z-index: 1;
  background: #ffffff;
  color: var(--blue);
  border: 2px solid rgba(0, 87, 255, 0.3);
  border-radius: 8px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(0, 87, 255, 0.06);
}

.hero-phone {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 87, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.phone-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.phone-number {
  font-size: 19px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.5px;
}

.hero-img-wrap { position: relative; }

.hero-photo-placeholder,
.about-photo-placeholder,
.gallery-item,
.zone-map {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ffffff;
}

.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 2px dashed rgba(0, 87, 255, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(0, 87, 255, 0.4);
  font-size: 13px;
  text-align: center;
}

.hero-photo-placeholder img,
.about-photo-placeholder img,
.gallery-item img,
.zone-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.hero-photo-placeholder .ph-caption,
.about-photo-placeholder .ph-caption,
.zone-map .ph-caption,
.gallery-item span {
  display: none;
}

.gallery-item {
  padding: 0;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(13, 19, 64, 0.9);
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 95%;
  max-height: 95%;
  width: 100%;
}

.lightbox img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: -25px; }
.lightbox-next { right: -25px; }

.lightbox-prev.hidden,
.lightbox-next.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-stats {
  position: absolute;
  bottom: -24px;
  left: -24px;
  display: flex;
  gap: 2px;
  z-index: 2;
  flex-wrap: wrap;
  max-width: calc(100% + 48px);
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.1);
}

.stat-card .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--blue);
  letter-spacing: 1px;
}

.stat-card .lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.services-strip {
  background: transparent;
  border-top: none;
  border-bottom: none;
  padding: 22px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: none;
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 87, 255, 0.16);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0, 87, 255, 0.05);
}

.strip-item .s-icon { font-size: 20px; }

section { padding: 100px 5vw; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--text);
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
  max-width: 560px;
}

#services { background: var(--bg); }

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  background: #f8faff;
  box-shadow: 0 8px 40px rgba(0, 87, 255, 0.1);
}

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

.service-icon {
  font-size: 42px;
  margin-bottom: 20px;
  display: block;
}

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--text);
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 13px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.service-list li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.gallery-section {
  background: transparent;
  padding: 80px 5vw;
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.gallery-item {
  border: 2px dashed rgba(0, 87, 255, 0.22);
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(0, 87, 255, 0.4);
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.gallery-item:hover {
  border-color: var(--blue);
  background: #f4f8ff;
}

.gallery-item .ph-icon { font-size: 28px; }
.gallery-item.large { grid-column: 1 / 3; }

#about { background: transparent; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border: 2px dashed rgba(0, 87, 255, 0.25);
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(0, 87, 255, 0.4);
  font-size: 13px;
}

.about-photo-placeholder .ph-icon { font-size: 48px; opacity: 0.4; }

.arguments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.arg-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.arg-card:hover {
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.1);
  border-color: rgba(0, 87, 255, 0.25);
}

.arg-icon { font-size: 28px; margin-bottom: 10px; }

.arg-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.arg-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.zone-section {
  background: transparent;
  text-align: center;
}

.zone-inner { max-width: 800px; margin: 0 auto; }

.zone-map {
  margin: 48px auto 0;
  width: 100%;
  max-width: 600px;
  height: 300px;
  border: 2px dashed rgba(0, 87, 255, 0.25);
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(0, 87, 255, 0.45);
  font-size: 13px;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.zone-tag {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 87, 255, 0.2);
  border-radius: 20px;
  padding: 12px 18px;
  min-height: 48px;
  font-size: 13px;
  color: var(--text2);
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
}

.zone-tag:hover {
  border-color: var(--blue);
  background: #f4f8ff;
}

#contact { background: transparent; }

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.c-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 87, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.c-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.c-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.c-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.c-value a:hover { color: var(--blue); }

.form-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 87, 255, 0.07);
}

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

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text2);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid rgba(0, 87, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  outline: none;
}

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

.form-tabs {
  display: flex;
  margin-bottom: 28px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 87, 255, 0.15);
}

.form-tab {
  flex: 1;
  padding: 14px 10px;
  min-height: 48px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  color: var(--muted);
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.form-tab.active {
  background: var(--blue);
  color: #fff;
}

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(0, 87, 255, 0.3);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
}

.success-msg {
  display: none;
  background: rgba(0, 87, 255, 0.08);
  border: 1px solid rgba(0, 87, 255, 0.25);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: var(--blue);
  font-weight: 600;
  margin-top: 16px;
}

footer {
  background: #0d1340;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 5vw 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo-name {
  font-size: 28px;
  margin: 12px 0 16px;
  color: #fff;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.footer-logo-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.footer-logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-col h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.80);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}

.footer-bottom a:hover { color: var(--cyan); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  padding: 40px 5vw;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

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

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 22px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu ul li a:hover { color: var(--blue); }

.mobile-menu ul li:last-child a {
  margin-top: 16px;
  border: none;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  padding: 14px 24px;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow-blue);
}

.error-msg {
  display: none;
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: var(--orange);
  font-weight: 600;
  margin-top: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.avis-section { background: var(--surface2); }

.avis-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.avis-card.avis-hidden {
  display: none;
}

.avis-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,87,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}

.avis-card:hover { box-shadow: 0 6px 28px rgba(0,87,255,0.12); }

.avis-stars { color: #f5a623; font-size: 20px; letter-spacing: 2px; }

.avis-texte {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text2);
  flex: 1;
  font-style: italic;
}

.avis-texte::before { content: '"'; }
.avis-texte::after  { content: '"'; }

.avis-auteur {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.avis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.avis-name { font-weight: 700; font-size: 14px; color: var(--text); }
.avis-meta { font-size: 12px; color: var(--muted); }
.avis-empty { text-align: center; color: var(--muted); padding: 40px 0; }

.star-rating {
  display: flex;
  gap: 6px;
  font-size: 28px;
  color: #ddd;
  cursor: pointer;
  margin-bottom: 8px;
}

.star-rating span { transition: color 0.15s; }
.star-rating span.active,
.star-rating span:hover { color: #f5a623; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(13,19,64,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px 40px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.modal-box--large { max-width: 720px; }

.modal-mentions-box {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mentions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}

.mentions-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.mentions-close-btn:hover { background: rgba(0,87,255,0.1); }

.mentions-content {
  padding: 28px 32px 36px;
  overflow-y: auto;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.8;
}

.mentions-content h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin: 24px 0 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.mentions-content h4:first-child { margin-top: 0; }

.mentions-content a {
  color: var(--blue);
  text-decoration: underline;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: rgba(0,87,255,0.1); }

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 5vw 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { width: 100%; }
  .hero-stats { position: static; margin-top: 24px; flex-wrap: wrap; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: auto; }

  .services-strip { gap: 12px; padding: 16px 5vw; }
  .form-row { grid-template-columns: 1fr; }
  .arguments { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 5vw; }
  .form-card { padding: 28px 20px; }
}

@media (max-width: 600px) {
  
  nav { padding: 0 20px; height: 64px; }

  .hero { padding: 88px 20px 48px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: clamp(38px, 11vw, 60px); }
  .hero-sub { font-size: 15px; max-width: 100%; }

  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
  .hero-btns a {
    width: auto;
    padding: 12px 20px;
    font-size: 14px;
    flex-shrink: 1;
    min-width: 0;
  }

  .hero-img-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-photo-placeholder {
    width: 80%;
    max-width: 280px;
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .hero-stats {
    position: static;
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .stat-card { padding: 12px 8px; text-align: center; }
  .stat-card .num { font-size: 22px; }

  .services-strip {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    padding: 16px 20px;
    gap: 8px;
  }
  .strip-item {
    font-size: 12px;
    padding: 9px 12px;
    flex-shrink: 1;
    flex-grow: 0;
    width: auto;
  }

  section { padding: 48px 20px; }
  .section-title { font-size: clamp(28px, 9vw, 48px); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 20px; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 80px;
    padding: 0 20px;
    gap: 6px;
  }
  .gallery-item.large {
    grid-column: 1 / 3;
    grid-row: span 2;
  }
  .gallery-header { padding: 0 20px; }

  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .arguments { grid-template-columns: 1fr; gap: 12px; }

  .zone-map { height: auto; min-height: 200px; }

  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .form-tabs { font-size: 12px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .modal-box { padding: 40px 20px 28px; }
  .modal-mentions-box { padding: 0; }
  .mentions-header { padding: 16px 20px; }
  .mentions-content { padding: 16px 20px 24px; }

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

  .lightbox { padding: 16px; }
  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
  .lightbox-close { top: -8px; right: -8px; }

  .btn-primary, .btn-outline { padding: 12px 20px; font-size: 14px; }

  #cookie-banner { padding: 16px 18px; }
  .cookie-btns { width: 100%; }
  #cookie-accept, #cookie-refuse { flex: 1; text-align: center; }
}

#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark, #0d1117);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
#cookie-banner p {
  flex: 1;
  min-width: 220px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
}
#cookie-banner p a {
  color: var(--cyan, #00c2ff);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
#cookie-accept {
  background: var(--cyan, #00c2ff);
  color: #000;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
#cookie-accept:hover { opacity: 0.85; }
#cookie-refuse {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
#cookie-refuse:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
@media (max-width: 600px) {
  #cookie-banner { padding: 16px 18px; }
  .cookie-btns { width: 100%; }
  #cookie-accept, #cookie-refuse { flex: 1; text-align: center; }
}

.gallery-item--more {
  position: relative;
  cursor: pointer;
}
.gallery-item--more img {
  filter: brightness(0.35);
}
.gallery-more-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.gallery-more-overlay span {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

/* Utilitaire accessibilité */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
