/* ====================
   RESET & BASE
==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #fff;
}

a {
  text-decoration: none;
}

/* ====================
   CONTAINER SYSTEM
==================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====================
   NAVIGATION
==================== */
.navbar {
  background: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 16px;
  color: #333;
  transition: color 0.3s;
}

.nav-links a.active  {
  /*color: #32cd32;*/
  color : #00B386;
  font-weight: 600;
    position: relative;
}

.nav-links a.active:not(.contact-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 100%;
  background-color: #00B386;
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.contact-btn {
  border: 1px solid #000;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-btn:hover {
  background-color: #000;
  color: #fff;
}

/* ====================
   HERO SECTION
==================== */
.hero {
  position: relative;
  min-height: auto;
  padding: 60px 0;
  /*background: url('https://images.unsplash.com/photo-1600880292089-90a7e086ee4a?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;*/
  background-image:  linear-gradient(to bottom, rgba(0, 200, 83, 0.6), transparent), url('../img/hero4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
    background-color: transparent; /* prevent fallback grey */
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .container {
  z-index: 2;
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-left: 15px;
}



.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}



.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
  max-width: 600px;
}

.btn-primary {
  background-color: #32cd32;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #28a728;
}

/* ====================
   BURGER MENU STYLES
==================== */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* ====================
   RESPONSIVE ZONE
==================== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    color: #000;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .nav-links a {
    color: #000;
    font-size: 18px;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .contact-btn {
    border-color: #000;
  }

  .hero {
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-text {
    max-width: 100%;
    padding: 0;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 16px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .nav-links {
    gap: 15px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}


/* ====================
   METRICS SECTION
==================== */


.metrics-section {
  padding: 80px 20px;
  background-color: #f7f9fc;
  text-align: center;
}


.metrics-title {
  text-align: center;
  color: #000;
  margin-bottom: 50px;
  font-family: "Dancing Script", cursive;
  font-size: clamp(2rem, 3vw, 2rem);
  font-weight: 700;
  transform: rotate(-1deg);
 
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.metric-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.metric-card .icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.metric-number {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.metric-caption {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 1.4;
}

.fade‑in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  visibility: hidden;
}

.fade‑in.visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .metrics-section {
    padding: 60px 10px;
  }

  .metric-card {
    padding: 30px 15px;
  }

  .metric-number {
    font-size: 1.6rem;
  }

  .metric-caption {
    font-size: 0.9rem;
  }
}


/* ====================
   SERVICES SECTION
==================== */
.services-section {
  background-color: #F9F9F9;
  padding: 60px 20px;
}

.services-title {
  text-align: center;
  color: #000;
  margin-bottom: 50px;
  font-family: "Dancing Script", cursive;
  font-size: clamp(2rem, 3vw, 2rem);
  font-weight: 700;
  transform: rotate(-1deg);
 
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-block {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon {
  font-size: 32px;
  color: #00B386;
  margin-bottom: 20px;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: #333;
  line-height: 1.5;
  max-width: 300px;
}

/* Responsive layout */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-block {
    padding: 25px 20px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-desc {
    font-size: 13px;
  }
}

/* ====================
   FOOTER SECTION
==================== */
.footer {
  background-color: #000;
  color: #fff;
  padding: 20px ;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 280px;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-contact {
  font-size: 14px;
  font-weight: 300;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-tagline,
  .footer-contact {
    max-width: 100%;
  }
}

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

.contact-block {
  background-color: #fff;
  padding: 60px 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h2 {
  color: #000;
  margin-bottom: 16px;
  font-family: "Dancing Script", cursive;
  font-size: clamp(2rem, 3vw, 2rem);
  font-weight: 700;
  transform: rotate(-1deg);
}
.contact‑subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.5;
}
.contact‑list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.contact‑list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #000;
  margin-bottom: 12px;
}
.contact‑list li a {
  color: #00B386;
  text-decoration: none;
  font-weight: 500;
}
.contact‑list li a:hover {
  text-decoration: underline;
}
.contact‑icon {
  color: #00B386;
  font-size: 18px;
}
.contact‑map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  resize: vertical;
}
.btn‑submit {
  background-color: #00B386;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn‑submit:hover {
  background-color: #008f3f;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info,
  .contact-form {
    text-align: center;
  }
}


/* === HERO 2-COLUMN GRID === */


.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

/* === CONTACT FORM === */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-form b {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
}

.contact-form input,
.contact-form textarea 
.contact-form select {
 padding: 10px 14px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: inherit;
  background: #fff;
}

.contact-form input[name="budget"] {
  font-style: italic;
  color: #555;
}


.contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-family: inherit;
  color: #333;

  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23333' d='M1 3l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 10px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #00B386;
  box-shadow: 0 0 0 2px rgba(0, 200, 83, 0.2);
  outline: none;
}


.contact-form select {
  padding-right: 40px;
}



.contact-form button {
  background-color: #00B386;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  /*background-color: #00b04a;*/
  background-color: #00a844;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-grid {
   display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
  }

  .hero-text {
    text-align: center;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
  }
}


@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 15px;
    max-width: 100%;
  }

  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 13px;
  }

  .contact-form button {
    font-size: 14px;
  }
}

/* === CARTE === */

 #map {
      height: 500px;
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

/* === AUDIENCES === */


.audience-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.audience-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.audience-box:hover {
  transform: translateY(-4px);
}

.audience-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #001933;
}

.audience-box p {
  font-size: 15px;
  color: #405168;
  line-height: 1.6;
  margin-bottom: 12px;
}
