/*--------------- ---- Responsive --------------------------*/
:root {
  --primary-blue: #4A90E2;
  --secondary-gold: #D4AF37;
  --light-bg: #F8FAFC;
  --text-dark: #2C3E50;
  --white: #FFFFFF;
  --primary: #4A90E2;
  --secondary: #D4AF37;
  --tertiary: #01285A;
  --secondary-light: #fff8e0;
  --accent: #FF6E40;
  --accent-light: #fde8eb;
  --light-bg: #F5F7FF;
  --primary-light: #e6f4ee;
  --primary-dark: #165083;
  --dark: #212529;
  --gray-dark: #343a40;
  --gray: #6c757d;
  --gray-light: #f8f9fa;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
}

/*-------------   Color Variable  --------------*/
.boxed-btn {
  background: #fff;
  color: var(--primary-blue) !important;
  display: inline-block;
  padding: 18px 44px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: 0;
  border: 1px solid var(--primary-blue);
  letter-spacing: 3px;
  text-align: center;
  color: var(--primary-blue);
  text-transform: uppercase;
  cursor: pointer;
}
.boxed-btn:hover {
  background: var(--primary-blue);
  color: #fff !important;
  border: 1px solid var(--primary-blue);
}
.boxed-btn:focus {
  outline: none;
}
.boxed-btn.large-width {
  width: 220px;
}

/*
:root {
    --primary-blue: #4A90E2;
    --secondary-gold: #D4AF37;
    --light-bg: #F8FAFC;
    --text-dark: #2C3E50;
    --white: #FFFFFF;
}
*/
.loader {
  display: none;
}

#loader-app {
  margin: 0 auto;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1085;
  color: #222;
  font-weight: bold;
  background: #fff;
  text-align: center;
}

/* Loader Transparent */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  font-size: 20px;
  font-weight: bold;
  z-index: 1081;
  display: none;
}

.faq-home-section .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s;
}

.faq-home-section .card-header {
  background: var(--primary-blue);
  border-radius: 12px 12px 0 0;
  padding: 0.75rem 1.25rem;
}

.faq-home-section .btn-link {
  color: #222;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
}

.faq-home-section .btn-link:hover, .faq-home-section .btn-link:focus {
  color: #fff;
  text-decoration: none;
}

.faq-home-section .card-body {
  background: #fffbe6;
  border-radius: 0 0 12px 12px;
  font-size: 1rem;
  padding: 1.25rem;
}

.faq-home-section .card {
  margin-bottom: 1.2rem;
}

.faq-home-section .card-header h5 {
  margin-bottom: 0;
}

.faq-home-section .btn-link[aria-expanded=true]::after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  color: #007bff;
  font-size: 1.2rem;
  margin-left: 10px;
}

.faq-home-section .btn-link[aria-expanded=false]::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  color: #fff;
  font-size: 1.2rem;
  margin-left: 10px;
}

.scroll-down-arrow {
  animation: bounce 2s infinite;
  color: #fff;
  font-size: 2.5rem;
  transition: color 0.2s;
}

.scroll-down-arrow:hover {
  color: #ffd700;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(74, 144, 226, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

.gallery-img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
  border-radius: 18px;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08) rotate(-1deg);
  filter: brightness(0.92);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, rgba(74, 144, 226, 0.85) 0%, rgba(212, 175, 55, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  opacity: 0.95;
  transition: background 0.3s;
}

.gallery-caption {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.7s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .gallery-img {
    height: 160px;
  }
  .gallery-overlay {
    height: 48px;
  }
}
body {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #357ABD 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand i {
  color: var(--secondary-gold);
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}
.nav-link.active {
  font-weight: bold;
  color: var(--secondary-gold) !important;
}

.nav-link:hover {
  color: var(--secondary-gold) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.9) 0%, rgba(53, 122, 189, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234A90E2" width="1200" height="600"/><circle cx="200" cy="150" r="100" fill="%23357ABD" opacity="0.3"/><circle cx="900" cy="400" r="150" fill="%23D4AF37" opacity="0.2"/></svg>');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
}

.hero-section p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary-custom {
  background: var(--secondary-gold);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary-custom:hover {
  background: #C19B2E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--white);
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #7F8C8D;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
  border-color: var(--primary-blue);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), #357ABD);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: #7F8C8D;
  line-height: 1.8;
}

/* Team Section */
.team-member {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 2px solid transparent;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
  border-color: var(--secondary-gold);
}

.team-avatar {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 4rem;
  color: var(--white);
  border: 5px solid var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.team-member h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--secondary-gold);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.team-bio {
  color: #7F8C8D;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
}

/* Destinations Section */
.destinations-section {
  padding: 5rem 0;
  background: var(--white);
}

.destination-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.destination-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.destination-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
}

.destination-info {
  padding: 1.5rem;
  background: var(--white);
}

.destination-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.destination-info p {
  color: #7F8C8D;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin: 1rem;
  text-align: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.testimonial-text {
  font-style: italic;
  color: #7F8C8D;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
}

.stars {
  color: var(--secondary-gold);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
  padding: 5rem 0;
  background: var(--white);
}

.contact-form {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-control {
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  border: 2px solid #E0E0E0;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.contact-info {
  background: linear-gradient(135deg, var(--primary-blue), #357ABD);
  color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--secondary-gold);
}

/* Admin Section */
.admin-section {
  padding: 5rem 0;
  background: var(--light-bg);
  min-height: 100%;
}

.admin-header {
  background: linear-gradient(135deg, var(--primary-blue), #357ABD);
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.admin-header h2 {
  margin: 0;
  font-size: 2rem;
}

.stats-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stats-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
}

.stats-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--white);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stats-label {
  color: #7F8C8D;
  font-weight: 500;
}

.data-table {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}

.table {
  margin-bottom: 0;
}

.table thead th {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 1rem;
}

.table tbody tr {
  transition: all 0.3s ease;
}

.table tbody tr:hover {
  background: var(--light-bg);
}

.badge-custom {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}

.badge-contact {
  background: #3498DB;
  color: white;
}

.badge-voyage {
  background: #9B59B6;
  color: white;
}

.badge-etude {
  background: #E67E22;
  color: white;
}

.badge-newsletter {
  background: #27AE60;
  color: white;
}

.btn-action {
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
}

.btn-view {
  background: var(--primary-blue);
  color: white;
  border: none;
}

.btn-view:hover {
  background: #357ABD;
  color: white;
}

.btn-delete {
  background: #E74C3C;
  color: white;
  border: none;
}

.btn-delete:hover {
  background: #C0392B;
  color: white;
}

.filter-section {
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.modal-content {
  border-radius: 20px;
  border: none;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-blue), #357ABD);
  color: white;
  border-radius: 20px 20px 0 0;
  border: none;
}

.detail-row {
  padding: 1rem 0;
  border-bottom: 1px solid #E0E0E0;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.detail-value {
  color: #7F8C8D;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #7F8C8D;
}

.empty-state i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #BDC3C7;
}

.delete-confirm {
  background: #FFF3CD;
  border: 2px solid #FFC107;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  display: none;
}

.delete-confirm.show {
  display: block;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-dark), #1A252F);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-gold);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #BDC3C7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--secondary-gold);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #BDC3C7;
}

/* Page Navigation */
.page-nav {
  display: none;
}

.page-nav.active {
  display: block;
}

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: 0;
  }
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-section p {
    font-size: 1.1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    max-width: 300px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .navbar-brand {
    font-size: 1.4rem;
  }
  .stats-number {
    font-size: 2rem;
  }
}
/* Success Message */
.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #27AE60;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.error-message {
  background: #E74C3C;
}/*# sourceMappingURL=style.css.map */