/* ============================================================
   GEDES International — CSS des pages intérieures
   Design flat, aéré, cohérent avec style-main.css
   ============================================================ */

/* ==================== HERO BANNER ==================== */
.page-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.page-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


/* ==================== BREADCRUMB ==================== */
.breadcrumb {
  background: #f8fafc;
  border-bottom: 1px solid #e8f0f5;
  padding: 0.75rem 0;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.breadcrumb-inner a {
  color: #0093c9;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-inner a:hover { color: #006d99; }

.breadcrumb-inner .sep { color: #d1d5db; }

.breadcrumb-inner .current { color: #374151; font-weight: 500; }

/* ==================== CONTENT SECTION ==================== */
.page-content {
  padding: 5rem 2rem;
  background: #ffffff;
}

.content-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.content-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #0093c9;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.content-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0093c9, #00b4e6);
  border-radius: 2px;
}

.content-lead {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.9;
  margin: 2rem 0 1.5rem;
  font-weight: 400;
}

.content-body {
  margin-top: 1.5rem;
}

.content-body p {
  font-size: 1.02rem;
  color: #374151;
  line-height: 1.95;
  margin-bottom: 1.4rem;
}

/* Liste à puces stylée */
.content-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
}

.content-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0093c9;
  margin-top: 0.5rem;
}

/* Cards d'application */
.application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.application-card {
  background: #f0f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid #0093c9;
  transition: all 0.25s ease;
}

.application-card:hover {
  background: #e0f4fb;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 147, 201, 0.12);
}

.application-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0093c9;
  margin-bottom: 0.5rem;
}

.application-card p {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ==================== CONTACT CTA STRIP ==================== */
.page-cta {
  background: linear-gradient(135deg, #0093c9 0%, #006d99 100%);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #ffffff;
}

.page-cta h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-cta p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.page-cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #0093c9;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-cta-btn:hover {
  background: #f0f9fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

/* ==================== PAGE RÉFÉRENCES ==================== */
.refs-section {
  padding: 5rem 2rem;
  background: #f8fafc;
}

.refs-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.refs-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.refs-header p {
  color: #6b7280;
  font-size: 1.05rem;
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ref-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 147, 201, 0.15);
}

.ref-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.ref-card-body {
  padding: 1.25rem 1.5rem;
}

.ref-card-country {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0093c9;
  margin-bottom: 0.4rem;
}

.ref-card-body p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* ==================== PAGE VIDÉOS ==================== */
.video-section {
  padding: 5rem 2rem;
  background: #ffffff;
}

.video-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  max-width: 700px;
  margin: 0 auto 0.75rem;
  line-height: 1.4;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
  aspect-ratio: 16/9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ==================== CONTACT ==================== */
.contact-section {
  padding: 5rem 2rem;
  background: #f8fafc;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .content-title {
  margin-bottom: 1rem;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 147, 201, 0.08);
  border-left: 3px solid #0093c9;
}

.info-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8f6fc;
  color: #0093c9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.2rem;
}

.info-card p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Form box */
.contact-form-box {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0, 147, 201, 0.1);
}

.form-alert {
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.form-alert--error {
  background: #fef2f2;
  color: #dc2626;
  border-left: 3px solid #dc2626;
}

.form-alert--success {
  background: #f0fdf4;
  color: #16a34a;
  border-left: 3px solid #16a34a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #374151;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0093c9;
  box-shadow: 0 0 0 3px rgba(0, 147, 201, 0.12);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #0093c9, #006d99);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 147, 201, 0.3);
}

/* ==================== CONFIRMATION ==================== */
.confirm-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.confirm-icon--success { color: #16a34a; }
.confirm-icon--error   { color: #dc2626; }
.confirm-icon--warning { color: #d97706; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-content {
    padding: 3rem 1.25rem;
  }

  .content-title {
    font-size: 1.5rem;
  }

  .content-lead {
    font-size: 1rem;
  }

  .refs-grid {
    grid-template-columns: 1fr;
  }

  .page-cta h3 {
    font-size: 1.3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 1.75rem;
  }

  .contact-section {
    padding: 3rem 1.25rem;
  }
}

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

  .video-header h2 {
    font-size: 1.3rem;
  }
}
