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

:root {
  --blanc: #f8f9fa;
  --bleu: #1a6bbf;
  --bleu-clair: #e8f1fb;
  --vert: #2ecc8a;
  --anthracite: #2b2d36;
  --gris: #6b7280;
  --gris-clair: #f1f3f5;
}

html { scroll-behavior: smooth; }

.wiper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.wiper-blade {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,0.06) 35%,
    rgba(255,255,255,0.3) 50%,
    rgba(255,255,255,0.06) 65%,
    transparent 100%
  );
  animation: wipe 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes wipe {
  0%   { left: -100%; }
  100% { left: 150%; }
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--blanc);
  color: var(--anthracite);
  font-size: 16px;
  line-height: 1.6;
}

.topbar {
  background: var(--anthracite);
  padding: 0.5rem 5%;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  font-size: 0.82rem;
}
.topbar a { color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--vert); }
.topbar span { color: #6b7280; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%;
  min-height: 70px;
  position: sticky;
  top: 0;
  background: rgba(248,249,250,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo img { height: 80px; width: auto; object-fit: contain; background: transparent; border-radius: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--anthracite);
  letter-spacing: 0.01em;
}
.logo-name strong { color: var(--bleu); font-weight: 800; }
.logo-tagline {
  font-size: 0.7rem;
  color: var(--gris);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-logo img { height: 56px; width: auto; object-fit: contain; background: transparent; }

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.8s 0.3s ease both;
}

.btn-discover {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  font-size: 0.95rem;
}
.btn-discover:hover { background: rgba(255,255,255,0.15); border-color: white; }

footer {
  background: #1c1e25;
  padding: 0;
}

.footer-top {
  padding: 2.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { display: flex; align-items: center; gap: 0.7rem; }
.footer-logo .logo-name { color: white; }
.footer-logo .logo-tagline { color: #6b7280; }

.footer-contact { display: flex; flex-direction: column; gap: 0.8rem; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #d1d5db;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--vert); }
.footer-contact-item:hover .footer-contact-icon { background: var(--vert); }

.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.footer-bottom {
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: #4b5563; font-size: 0.82rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #6b7280; font-size: 0.82rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }

.galerie {
  padding: 5rem 5%;
  background: var(--gris-clair);
  text-align: center;
}

.galerie h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: var(--anthracite);
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.galerie-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e5e7eb;
}

.galerie-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.galerie-card:hover img { transform: scale(1.04); }

.galerie-card span {
  display: block;
  background: white;
  padding: 0.8rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--anthracite);
}

.logo img { height: 80px; width: auto; object-fit: contain; background: transparent; border-radius: 0; }

nav { display: flex; align-items: center; gap: 2rem; }
nav a { text-decoration: none; color: var(--gris); font-weight: 500; transition: color 0.2s; }
nav a:hover { color: var(--bleu); }

.btn-nav {
  background: var(--bleu);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 500;
}
.btn-nav:hover { background: #155da3; }

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 29, 38, 0.65);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 5%;
  animation: fadeUp 0.7s ease both;
}

.hero-badge {
  display: inline-block;
  background: rgba(46,204,138,0.2);
  color: var(--vert);
  border: 1px solid var(--vert);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  color: white;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  animation: slideUp 0.8s ease both;
}
.hero h1 em { color: var(--bleu); font-style: normal; }

.hero-location {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  animation: slideUp 0.8s 0.15s ease both;
}

.hero .btn-primary {
  animation: slideUp 0.8s 0.3s ease both;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

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

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

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.btn-primary {
  display: inline-block;
  background: var(--bleu);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #155da3; transform: translateY(-2px); }

.intro {
  padding: 4rem 5%;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.intro-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-inner p {
  color: var(--gris);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.airflex-badge {
  font-size: 1.05rem;
  color: var(--gris);
  border-left: 3px solid var(--bleu);
  padding: 0.6rem 1rem;
  margin: 1.5rem 0;
  line-height: 1.8;
  font-family: 'Barlow', sans-serif;
}

.airflex-badge strong { color: var(--anthracite); font-weight: 600; }

.intro-signature {
  color: var(--gris) !important;
  font-size: 1.05rem !important;
  margin-top: 1rem;
}

.services {
  padding: 5rem 5%;
  background: var(--gris-clair);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vert);
  margin-bottom: 0.6rem;
}

.services h2, .avis h2, .clients h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: var(--anthracite);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease forwards;
}
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,107,191,0.15); }

.card-img { width: 100%; height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; text-align: center; }

.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.03em; }
.card p { color: var(--gris); font-size: 0.95rem; }

.card-plus { background: var(--bleu); border-color: var(--bleu); display: flex; align-items: center; justify-content: center; min-height: 200px; }
.card-plus .card-body { text-align: center; }
.card-plus h3, .card-plus p { color: white; }
.card-plus .card-icon { color: var(--vert); }

.card-plus-horizontal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bleu);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  margin-top: 1.2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.card-plus-horizontal .card-icon { font-size: 1.8rem; flex-shrink: 0; color: var(--vert); }
.card-plus-horizontal h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.2rem; }
.card-plus-horizontal p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.card-plus-horizontal div { flex: 1; }
.card-plus-horizontal .btn-primary { background: white; color: var(--bleu); font-weight: 700; }
.card-plus-horizontal .btn-primary:hover { background: var(--vert); color: white; }

.specialise-devis { border-color: rgba(46,204,138,0.4); }
.btn-devis-special {
  display: inline-block;
  margin-top: 1.2rem;
  background: var(--vert);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-devis-special:hover { background: #25b87a; }

.card-tapis strong { color: var(--bleu); }

.tapis-process {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
  align-items: center;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.process-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bleu);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--anthracite);
  line-height: 1.3;
}

.process-label small { color: var(--gris); font-weight: 400; display: block; font-size: 0.75rem; }

.partenariat {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.partenariat p {
  color: var(--gris);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.btn-partenariat {
  display: inline-block;
  border: 2px solid var(--bleu);
  color: var(--bleu);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.btn-partenariat:hover { background: var(--bleu); color: white; }

.footer-social {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #9ca3af;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.3); }

/* ======================== */
/* SECTION CLIENTS          */
/* ======================== */

.clients {
  padding: 4rem 5%;
  background: white;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.clients .section-label { color: var(--vert); }
.clients h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--anthracite);
  margin-bottom: 2.5rem;
}

.carousel-wrap {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
}
.carousel-wrap::before,
.carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}
.carousel-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.carousel-wrap::after { right: 0; background: linear-gradient(to left, #fff, transparent); }

.carousel-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll 18s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

.client-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-badge img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.client-badge img:hover { opacity: 1; }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================== */
/* SPECIALISES              */
/* ======================== */

.specialises {
  padding: 5rem 5%;
  background: var(--anthracite);
  text-align: center;
}

.specialises .section-label { color: var(--vert); }

.specialises h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 2.5rem;
}

.specialises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.specialise-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}

.specialise-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--vert);
}

.specialise-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(46,204,138,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--vert);
  flex-shrink: 0;
}

.specialise-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}

.specialise-card p { color: #9ca3af; font-size: 0.9rem; line-height: 1.7; }

/* ======================== */
/* ZONES                    */
/* ======================== */

.zones {
  padding: 4rem 5%;
  background: var(--bleu-clair);
  text-align: center;
}

.zones .section-label { color: var(--bleu); }

.zones h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--anthracite);
  margin-bottom: 1rem;
}

.zones-intro { color: var(--gris); font-size: 1rem; margin-bottom: 2rem; }

.zones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.zone-tag {
  background: white;
  border: 1px solid #d1d5db;
  color: var(--anthracite);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}

.zone-tag:hover { background: var(--bleu); border-color: var(--bleu); color: white; }

.duplex-mention {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  font-size: 1.05rem;
  color: var(--gris);
  text-align: center;
  font-family: 'Barlow', sans-serif;
  line-height: 1.8;
}
.duplex-mention strong { color: var(--anthracite); font-weight: 600; }

/* ======================== */
/* AVIS                     */
/* ======================== */

.avis {
  padding: 5rem 5%;
  text-align: center;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.avis-card {
  background: var(--gris-clair);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 0.8rem; }
.avis-card p { color: var(--anthracite); font-size: 0.95rem; margin-bottom: 1rem; }
.avis-card span { color: var(--gris); font-size: 0.85rem; font-weight: 500; }

.btn-google {
  display: inline-block;
  border: 2px solid var(--bleu);
  color: var(--bleu);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn-google:hover { background: var(--bleu); color: white; }

.btn-outline {
  display: inline-block;
  border: 2px solid white;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: white; color: var(--anthracite); }

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

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--anthracite);
}

/* ======================== */
/* SECTION CONTACT          */
/* ======================== */

.contact {
  padding: 0;
  background: var(--anthracite);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 520px;
}

.contact-left {
  background: var(--bleu);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.contact-left::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.contact-left .section-label {
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
}

.contact-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: white;
  line-height: 1.05;
  margin: 0;
}

.contact-left h2 em {
  font-style: normal;
  color: var(--vert);
}

.contact-left > p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info-item:hover { color: white; }

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.contact-info-item:hover .contact-info-icon {
  background: rgba(255,255,255,0.25);
}

.contact-right {
  background: var(--anthracite);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
}

.contact-right form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.contact-right form input,
.contact-right form select,
.contact-right form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Barlow', sans-serif;
  background: rgba(255,255,255,0.06);
  color: white;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}

.contact-right form input::placeholder,
.contact-right form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.contact-right form select {
  color: rgba(255,255,255,0.5);
  cursor: pointer;
}

.contact-right form select option {
  background: var(--anthracite);
  color: white;
}

.contact-right form input:focus,
.contact-right form select:focus,
.contact-right form textarea:focus {
  outline: none;
  border-color: var(--vert);
  background: rgba(255,255,255,0.09);
}

.contact-right form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-right form button {
  background: var(--vert);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.contact-right form button:hover {
  background: #25b87a;
  transform: translateY(-2px);
}

/* ======================== */
/* RESPONSIVE               */
/* ======================== */

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-left {
    padding: 3rem 5%;
    text-align: center;
  }
  .contact-info-list {
    align-items: center;
  }
  .contact-right {
    padding: 2rem 5%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .topbar { display: none; }
  .burger { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem 5%;
    border-bottom: 1px solid #e5e7eb;
    gap: 1rem;
  }
  nav.open { display: flex; }
  .hero { padding: 4rem 5% 3rem; }
  footer { flex-direction: column; text-align: center; }
  .contact-left h2 { font-size: 2.2rem; }
}

 