/* THEME VERT - Inspiré par le design paysager professionnel */
:root {
  --primary: #1a5c37;
  --primary-light: #2d8a54;
  --accent: #9dcd5a;
  --dark: #0d2618;
  --light: #f8faf9;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --header-height: 70px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  padding-top: var(--header-height); /* Espace pour le header fixe */
}

/* HEADER FIXE */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
}

.brand .material-icons-outlined {
  font-size: 2rem;
  color: var(--accent);
}

.header-actions {
  display: flex;
  gap: 15px;
}

/* BOUTONS */
.btn {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-phone {
  background: var(--light);
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* HERO SECTION */
.virtualtheme-section {
  position: relative;
  height: 450px;
  overflow: hidden;
  color: var(--white);
}

.virtualtheme-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.virtualtheme-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 38, 24, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
}

.virtualtheme-overlay h1 {
  font-size: 2.5rem;
  max-width: 600px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.virtualtheme-badges {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.virtualtheme-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* GRILLE DE SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: -50px auto 50px;
  padding: 0 20px;
  position: relative;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--accent);
  transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-10px); }

.icon-lg { font-size: 3rem !important; color: var(--primary); margin-bottom: 20px; }

/* DETAILS SECTION */
.details-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.details-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

.line-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  align-items: center;
}

.line-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
}

/* FOOTER & MAP */
.map-wrapper { margin-top: 50px; filter: grayscale(0.2); }

.main-footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
}

.footer-links { margin-top: 15px; }
.footer-links a { color: var(--accent); text-decoration: none; margin: 0 10px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .btn-text { display: none; }
  .btn { padding: 10px; }
  .virtualtheme-overlay h1 { font-size: 1.8rem; }
  .virtualtheme-section { height: 350px; }
  .services-grid { margin-top: 20px; }
}

@media (max-width: 480px) {
  .header-actions { gap: 8px; }
  .brand-text { font-size: 1rem; }
}