body {
  margin: 0;
  font-family: 'Cairo Play', sans-serif;
  background: #f9f9f9;
  color: #222;
}

/* ===== HEADER ===== */
.country-header {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.country-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.country-header .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 1.5rem;
}

.country-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.country-header p {
  font-size: 1.2rem;
}

/* ===== CONTENT ===== */
.country-content {
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.country-content h2 {
  color: #D80536;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item i {
  font-size: 2rem;
  color: #D80536;
  margin-bottom: 0.8rem;
}

.alert {
  margin-top: 2rem;
  background: #fff5f5;
  color: #b80000;
  padding: 1rem;
  border-left: 4px solid #D80536;
  border-radius: 5px;
}

/* ===== FORM ===== */
.contact-visa {
  background: #2B2E42;
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}

.contact-visa h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.visa-form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

.visa-form input,
.visa-form textarea {
  padding: 0.9rem;
  border: none;
  border-radius: 5px;
  outline: none;
  font-family: inherit;
}

.visa-form textarea {
  min-height: 120px;
}

.btn-submit {
  background: #D80536;
  color: #fff;
  padding: 0.9rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #EE2449;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 1.2rem;
  font-size: 0.9rem;
  color: #666;
  background: #f1f1f1;
}

@media (max-width: 768px) {
  .country-header h1 {
    font-size: 1.8rem;
  }

  .country-header p {
    font-size: 1rem;
  }
}
 /* Formulaire whatsapp */

 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo Play", sans-serif;
}

body {
  background: #f7f7f7;
  color: #2b2e42;
}

.whatsapp-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #25d366;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

input, select, textarea {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #25d366;
  box-shadow: 0 0 5px rgba(37, 211, 102, 0.3);
}

textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background-color: #25d366;
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #1ebe5b;
}

@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
  }
}



/* ===========================
   Navbar
=========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ff0000;
  padding: 0.8rem 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.navbar .logo {
  color: #EDF2F4;
  font-family: 'Cairo Play', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.navbar .logo:hover {
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

.nav-links li a {
  color: #EDF2F4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links li a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* CTA button */
.navbar .btn {
  background: #160376;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.navbar .btn:hover {
  background: #0f024f;
  transform: scale(1.05);
}

/* Burger */
.burger {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: #EDF2F4;
  transition: transform 0.3s ease;
}

.burger:hover {
  transform: rotate(90deg);
}

/* ===========================
   Responsive Navbar
=========================== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #021bba;
    width: 100%;
    height: 0;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: height 0.4s ease;
  }

  .nav-links.active {
    height: 280px; /* ajustable selon le nombre de liens */
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .navbar .btn {
    display: none; /* cacher le bouton sur mobile si nécessaire */
  }

  .burger {
    display: block;
  }
}
