/* RESET */
* {margin:0; padding:0; box-sizing:border-box;}
body {font-family: 'Inter', sans-serif; color:#111; background:#fff; line-height:1.6;}
a {text-decoration:none; color:inherit;}
ul {list-style:none;}
.container {max-width:1200px; margin:0 auto; padding:0 20px;}

/* HEADER */
.header {
  position: sticky; top: 0; z-index:1000;
  background: #fff; border-bottom:1px solid #eee;
  height: 90px; display:flex; align-items:center;
}
.header-inner {display:flex; justify-content:space-between; align-items:center; width:100%;}
.logo img {height:80px; width:auto;}
.nav ul {display:flex; gap:32px; align-items:center;}
.nav a {font-weight:500; font-size:15px; color:#111;}
.nav a:hover {color:#b57f50;}
.dropdown {position:relative;}
.dropdown-menu {
  position:absolute; top:100%; left:0; background:#fff; border:1px solid #eee;
  border-radius:8px; padding:12px 0; opacity:0; visibility:hidden;
  transform:translateY(6px); transition:.25s; min-width:220px; z-index:10;
}
.dropdown:hover .dropdown-menu {opacity:1; visibility:visible; transform:translateY(0);}
.dropdown-menu a {display:block; padding:10px 18px; font-size:14px; color:#6b6b6b;}
.dropdown-menu a:hover {background:#f9f9f9; color:#b57f50;}
.header-right {display:flex; align-items:center; gap:20px;}
.tel {font-weight:500; color:#111; font-size:14px;}
.btn-bronze {
  background:#58B71D; color:#fff; padding:10px 20px; border-radius:2px;
  font-weight:600; font-size:14px; transition:.25s;
}
.btn-bronze:hover {box-shadow:0 2px 6px rgba(0,0,0,.15); transform:translateY(-2px);}
.icon-account {font-size:20px;}

/* HERO */
.hero {
  height: 75vh; 
  display: flex; 
  align-items: center; 
  justify-content: flex-end;
  background-size: cover; 
  background-position: center;
  color: #111; 
  text-align: center; 
  position: relative;
  padding-right: 32%;
}
.hero-content {
  position: relative; 
  max-width: 600px; 
  z-index: 2;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 2px 30px rgba(255,255,255,.6);
}
.hero p {
  margin-bottom: 30px; 
  font-size: 18px;
  text-shadow: 0 2px 30px rgba(255,255,255,.6);
}
.hero-buttons {
  display: flex; 
  gap: 20px;
  justify-content: center;
}
.btn-outline {
  border:1px solid #000000; padding:10px 20px; border-radius:2px;
  font-weight:500; transition:.25s;
}
.btn-outline:hover {background:#111; color:#58B71D;}

/* BADGES */
.badges {
  display:flex; justify-content:center; text-align:center;
  gap:60px; padding:60px 20px; background:#fff; flex-wrap:wrap;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge-icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.badge-item h3 {
  color:#b57f50; font-size:18px; margin-bottom:6px; font-weight:600;
}
.badge-item p {
  font-size:14px; color:#666;
}

/* TAGLINE */
.tagline {
  text-align:center; font-family:'Playfair Display', serif;
  font-size:22px; padding:40px 20px; color:#111;
}

/* SHOWCASE */
.showcase-section {
  padding: 100px 0;
  background: #fff;
}
.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}
.showcase-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 1.3;
  color: #2c2c2c;
  font-weight: 400;
}
.showcase-image {
  max-width: 1000px;
  margin: 0 auto 80px;
  text-align: center;
}
.showcase-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.services-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.services-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2c2c2c;
  margin-bottom: 20px;
  font-weight: 400;
}
.services-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* SERVICES GRID */
.services-grid-section {
  padding: 100px 0;
  background: #f9f9f9;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.service-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: .3s;
}
.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.service-icon {
  margin-bottom: 20px;
}
.service-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.service-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #b57f50;
  margin-bottom: 12px;
  font-weight: 600;
}
.service-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* GALLERY */
.gallery-section {
  padding: 100px 0;
  background: #f9f9f9;
}
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #2c2c2c;
  font-weight: 400;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* PLATEFORME */
.plateforme-section {
  padding: 100px 0;
  background: #fff;
}
.plateforme-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.phone-mockup {
  position: relative;
  text-align: center;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #f4e4d1, #e8d5c4);
  border-radius: 50%;
  z-index: 1;
}
.phone-mockup img {
  width: 250px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.plateforme-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2c2c2c;
  margin-bottom: 40px;
  font-weight: 400;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature-item {
  padding-left: 20px;
  border-left: 3px solid #b57f50;
}
.feature-item h4 {
  font-size: 18px;
  color: #2c2c2c;
  margin-bottom: 8px;
  font-weight: 600;
}
.feature-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: #1a120b;
  color: #fff;
  padding: 60px 20px 20px;
  font-size: 14px;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.footer-logo {
  height: 80px;
  margin-bottom: 12px;
}
.footer-col h4 {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 16px;
}
.footer-col a {
  display: block;
  margin-bottom: 6px;
  color: #ccc;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #b57f50;
}
.footer-tel {
  margin-top: 10px;
  font-weight: 600;
}
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .plateforme-content {gap: 50px;}
  .services-grid {grid-template-columns: repeat(2, 1fr);}
  .gallery-grid {grid-template-columns: repeat(2, 1fr);}
}

@media (max-width: 768px) {
  .hero {height: 60vh; padding-right: 20px;}
  .hero h1 {font-size: 32px;}
  .showcase-image img {height: 300px;}
  .services-grid {grid-template-columns: 1fr; gap: 30px;}
  .gallery-grid {grid-template-columns: 1fr;}
  .badges {flex-direction: column; gap: 30px;}
  .plateforme-content {grid-template-columns: 1fr; gap: 40px;}
  .plateforme-text {order: -1;}
  .plateforme-text h2 {font-size: 28px;}
  .nav ul {gap:16px;}
  .nav {display:none;}
}

@media (max-width: 480px) {
  .hero h1 {font-size: 24px;}
  .plateforme-text h2 {font-size: 22px;}
  .showcase-header h2 {font-size: 28px;}
}