/* ===== VARIABLES ===== */
:root {
  --primary-color: #0033a1;
  --secondary-color: dodgerblue;
  --accent-color: #00a8e8;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --success: green;
  --warning: #ffc107;
  --danger: #dc3545;

  --font-primary: "Poppins", sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  height: 80px;
  width: auto;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.nav-brand span {
  font-size: 0.9rem;
  color: var(--gray);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 3px 0;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-left: 0;
}

.nav-menu a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
  background-color: var(--light-color);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--success);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--light-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== NEWS SECTION ===== */
.news-section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.news-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.news-date {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

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

.page-header p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  padding: 4rem 0;
}

.about-section {
  margin-bottom: 4rem;
}

.about-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

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

.philosophy-item {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.philosophy-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.team-member {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.team-role {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.team-member h3 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.team-note {
  margin-top: 2rem;
  font-style: italic;
  color: var(--gray);
}

.objectives-list {
  margin-top: 1.5rem;
  padding-left: 2rem;
}

.objectives-list li {
  list-style: disc;
  margin-bottom: 0.8rem;
  color: var(--dark-color);
}

.cta-box {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===== SCHEDULE PAGE ===== */
.schedule-content {
  padding: 4rem 0;
}

.schedule-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.schedule-intro h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.sessions-info {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.sessions-card {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.sessions-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.sessions-dates {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.session-period {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 5px;
  font-size: 1.1rem;
}

.session-period strong {
  color: var(--white);
}

.schedule-table {
  margin-bottom: 3rem;
  overflow-x: auto;
}

.schedule-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;
}

.schedule-table th,
.schedule-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.schedule-table th {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
}

.schedule-table tr:hover {
  background-color: var(--light-color);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.upcoming-events {
  margin-bottom: 3rem;
}

.upcoming-events h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-item {
  display: flex;
  gap: 2rem;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  align-items: center;
}

.event-date {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  min-width: 150px;
}

.event-details h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.cta-section-inline {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
}

.cta-section-inline h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

/* ===== FORMS ===== */
.form-container {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.registration-form,
.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-info {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

/* ===== REGISTER PAGE ===== */
.register-content {
  padding: 4rem 0;
}

.register-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.register-intro h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.trial-info {
  background-color: var(--light-color);
  padding: 1rem 1.5rem;
  border-radius: 5px;
  border-left: 4px solid var(--primary-color);
  margin-top: 1rem;
  font-size: 1.1rem;
}

.pricing-section {
  margin-bottom: 4rem;
}

.pricing-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

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

.pricing-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
}

.pricing-header h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.3rem;
}

.pricing-body {
  padding: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 0.5rem;
}

.price-period {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-option {
  text-align: center;
}

.price-option .price-amount {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}

.price-option .price-period {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.price-dates {
  color: var(--gray);
  font-size: 0.9rem;
}

.price-divider {
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--dark-color);
  border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-note p {
  margin: 0;
  color: var(--dark-color);
}

.payment-info {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.payment-info h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.payment-info p {
  margin-bottom: 1rem;
}

.payment-email {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 1rem auto 0;
  display: inline-block;
}

.register-benefits {
  margin-bottom: 4rem;
}

.register-benefits h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-section {
  margin-bottom: 3rem;
}

.faq-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-cta {
  text-align: center;
  background-color: var(--light-color);
  padding: 3rem;
  border-radius: 10px;
}

.contact-cta h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== PARTNERS PAGE ===== */
.partners-content {
  padding: 4rem 0;
}

.partners-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.partners-intro h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.partner-tier {
  margin-bottom: 4rem;
}

.tier-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tier-header h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.partner-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.partner-card.featured {
  border: 3px solid var(--primary-color);
}

.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-logo img {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.partner-logo-link:hover img {
  transform: scale(1.05);
}

.ambassador-section {
  margin-bottom: 4rem;
  text-align: center;
}

.ambassador-section h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.ambassador-card {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.ambassador-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.become-partner {
  margin-bottom: 4rem;
}

.become-partner h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.become-partner > p {
  text-align: center;
  margin-bottom: 3rem;
}

.partnership-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.level-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.level-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.level-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.level-card ul {
  text-align: left;
  padding-left: 1.5rem;
}

.level-card li {
  list-style: disc;
  margin-bottom: 0.8rem;
}

.contact-partner-cta {
  text-align: center;
  margin-top: 2rem;
}

.thanks-section {
  text-align: center;
  background-color: var(--light-color);
  padding: 3rem;
  border-radius: 10px;
}

.thanks-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== GALLERY PAGE ===== */
.gallery-content {
  padding: 4rem 0;
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item-full {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-caption {
  padding: 1.5rem;
}

.gallery-caption h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.gallery-date {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.no-photos {
  text-align: center;
  padding: 4rem 2rem;
}

.no-photos-content {
  max-width: 600px;
  margin: 0 auto;
}

.no-photos-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
  padding: 4rem 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-form-section h3,
.contact-info-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-details h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.social-links-contact {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--secondary-color);
}

.contact-team {
  margin-bottom: 4rem;
}

.contact-team h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-team > p {
  text-align: center;
  margin-bottom: 2rem;
}

.team-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.team-contact-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.team-contact-card h4 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.contact-cta-box {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
}

.contact-cta-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

/* ===== EVENTS PAGE ===== */
.events-content {
  padding: 4rem 0;
}

.events-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.events-intro h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.upcoming-events-section {
  margin-bottom: 4rem;
}

.upcoming-events-section h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.event-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.event-header {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  align-items: center;
}

.event-date-badge {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  min-width: 120px;
  font-weight: 700;
}

.event-day {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.event-month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-title-section h3 {
  color: var(--white);
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.event-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-body {
  padding: 2rem;
}

.event-body p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.event-registration,
.event-contact {
  background-color: var(--light-color);
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
}

.no-events {
  text-align: center;
  padding: 3rem;
  background-color: var(--light-color);
  border-radius: 10px;
}

.event-types {
  margin-bottom: 4rem;
}

.event-types h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.type-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.type-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.type-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== REGULATIONS PAGE ===== */
.regulations-content {
  padding: 4rem 0;
}

.regulations-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.reg-nav-btn {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.reg-nav-btn:hover {
  background-color: var(--light-color);
  transform: translateY(-2px);
}

.reg-nav-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.regulations-document {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--light-gray);
}

.section-intro h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.section-intro p {
  color: var(--gray);
  font-size: 1.1rem;
}

.conduct-footer {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: 10px;
  text-align: center;
}

.conduct-footer p {
  margin-bottom: 0.5rem;
}

.regulation-section {
  margin-bottom: 3rem;
}

.regulation-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  font-size: 1.8rem;
}

.regulation-section h3 {
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.regulation-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--dark-color);
}

.regulation-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.regulation-section li {
  list-style: disc;
  margin-bottom: 0.8rem;
  line-height: 1.8;
  color: var(--dark-color);
}

.regulation-section strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* ===== NEWS PAGE ===== */
.news-content {
  padding: 4rem 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.news-article {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-article-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.news-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-content {
  padding: 2rem;
}

.news-article-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.news-meta {
  margin-bottom: 1.5rem;
}

.news-text {
  line-height: 1.8;
  color: var(--dark-color);
}

.no-news {
  text-align: center;
  padding: 4rem 2rem;
}

.no-news-content {
  max-width: 600px;
  margin: 0 auto;
}

.no-news-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== ALERTS ===== */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: inherit;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

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

.social-link {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--secondary-color);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .event-item {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    min-width: auto;
  }
}

@media (max-width: 1024px) {
  .partnership-levels {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .nav-brand h1 {
    font-size: 1.5rem;
  }

  .features-grid,
  .news-grid,
  .gallery-grid,
  .team-grid,
  .philosophy-grid,
  .partnership-levels {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .feature-card,
  .news-card,
  .partner-card {
    padding: 1.5rem;
  }
}

/* ===== MENU UTILISATEUR NAVBAR ===== */
.nav-user-item {
  list-style: none;
  margin-left: auto;
}

.user-menu-container {
  position: relative;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.user-menu-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.user-menu-btn svg {
  flex-shrink: 0;
}

.user-login-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: var(--primary-color);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.user-login-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 220px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid var(--light-gray);
}

.dropdown-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.dropdown-item svg {
  flex-shrink: 0;
}

.dropdown-divider {
  height: 1px;
  background-color: var(--light-gray);
  margin: 0.25rem 0;
}

@media (max-width: 968px) {
  .user-menu-container {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .user-menu-btn,
  .user-login-btn {
    width: 100%;
    justify-content: center;
  }

  .user-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
  }

  .user-dropdown.show {
    transform: translateX(-50%) translateY(0);
  }
}

/* ============================================
   DASHBOARD ADMIN - HOVER EFFECTS
   ============================================ */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

/* ============================================
   CARROUSEL PARTENAIRES SWIPER - PAGE D'ACCUEIL
   ============================================ */
.partners-carousel-section {
  padding: 4rem 0;
  background-color: var(--white);
  overflow: hidden;
}

.partnersSwiper {
  padding: 2rem 0 3rem 0;
}

.partnersSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-slide {
  position: relative;
  width: 250px;
  height: 180px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: var(--transition);
}

.partner-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.partner-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.partner-placeholder {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  padding: 1rem;
}

.partner-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.badge-or {
  filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.6)) sepia(1) saturate(3)
    hue-rotate(-10deg) brightness(1.3);
}

.badge-argent {
  filter: drop-shadow(0 3px 6px rgba(192, 192, 192, 0.6)) grayscale(0.5)
    brightness(1.5) contrast(1.2);
}

.badge-bronze {
  filter: drop-shadow(0 3px 6px rgba(205, 127, 50, 0.6)) sepia(0.6) saturate(2)
    hue-rotate(10deg) brightness(1.1);
}

/* Swiper Navigation Buttons */
.partnersSwiper .swiper-button-next,
.partnersSwiper .swiper-button-prev {
  display: none;
}

.partnersSwiper .swiper-button-next:after,
.partnersSwiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.partnersSwiper .swiper-button-next:hover,
.partnersSwiper .swiper-button-prev:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

/* Swiper Pagination */
.partnersSwiper .swiper-pagination-bullet {
  background-color: var(--primary-color);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.partnersSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

/* Responsive pour le carrousel Swiper */
@media (max-width: 768px) {
  .partner-slide {
    width: 200px;
    height: 150px;
  }

  .partner-logo {
    max-height: 100px;
  }

  .partnersSwiper .swiper-button-next,
  .partnersSwiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .partnersSwiper .swiper-button-next:after,
  .partnersSwiper .swiper-button-prev:after {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .partners-carousel-section {
    padding: 3rem 0;
  }

  .partner-slide {
    width: 180px;
    height: 130px;
  }

  .partner-logo {
    max-height: 80px;
  }

  .partner-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .partnersSwiper .swiper-button-next,
  .partnersSwiper .swiper-button-prev {
    display: none;
  }
}

/* ============================================
   ÉVÉNEMENTS EN VEDETTE
   ============================================ */

/* Hero Event - Événement en avant-plan */
.hero-event-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-event-card {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}

.hero-event-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: var(--dark-color);
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-event-content {
  padding: 3.5rem 2rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero-event-info {
  flex: 1;
}

.hero-event-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-event-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.hero-event-date,
.hero-event-places {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray);
}

.hero-event-date i,
.hero-event-places i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.hero-event-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-color);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-event-actions {
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
  min-width: 200px;
}

.hero-event-actions .btn {
  white-space: nowrap;
}

/* Bannière défilante - Événements */
.event-banner-container {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.event-banner-scroll {
  overflow: hidden;
  padding: 1rem 0;
}

.event-banner-content {
  display: flex;
  animation: scroll 15s linear infinite;
  white-space: nowrap;
  gap: 0;
}

.event-banner-content:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.event-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.event-banner-item:last-child {
  border-right: none;
}

.event-banner-item i.fa-star {
  color: #ffd700;
  font-size: 1.2rem;
}

.event-banner-item i.fa-bullhorn {
  color: #ffd700;
  font-size: 1.2rem;
}

.event-banner-item strong {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Message Admin dans la bannière */
.event-banner-item.admin-message {
  background-color: rgba(255, 215, 0, 0.15);
  border-left: 4px solid #ffd700;
  border-right: 4px solid #ffd700;
  padding: 0 3rem;
}

.event-banner-item.admin-message strong {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.event-banner-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

.event-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  transition: var(--transition);
  color: var(--white);
  text-decoration: none;
}

.event-banner-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: var(--white);
}

.event-banner-close {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.event-banner-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

/* Responsive pour événements en vedette */
@media (max-width: 768px) {
  .hero-event-card {
    flex-direction: column;
  }

  .hero-event-title {
    font-size: 1.5rem;
  }

  .hero-event-content {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .hero-event-meta {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-event-actions {
    width: 100%;
    min-width: auto;
  }

  .hero-event-actions .btn {
    width: 100%;
  }

  .event-banner-item {
    padding: 0 2rem;
  }

  .event-banner-item strong {
    font-size: 1rem;
  }

  .event-banner-date {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-event-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .hero-event-title {
    font-size: 1.3rem;
  }

  .hero-event-content {
    padding: 2.5rem 1rem 1rem 1rem;
    gap: 1rem;
  }

  .hero-event-description {
    font-size: 0.9rem;
  }

  .hero-event-actions {
    gap: 0.6rem;
  }

  .event-banner-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0 1.5rem;
  }

  .event-banner-close {
    width: 30px;
    height: 30px;
    right: 0.5rem;
  }
}

/* ============================================
   PWA INSTALL BUTTON
   ============================================ */
.pwa-install-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.pwa-install-button.show {
  opacity: 1;
  transform: translateY(0);
}

.install-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 51, 161, 0.3);
  transition: all 0.3s ease;
}

.install-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 51, 161, 0.4);
}

.install-btn:active {
  transform: translateY(-1px);
}

.install-btn svg {
  flex-shrink: 0;
}

.install-btn span {
  white-space: nowrap;
}

.close-install-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.close-install-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

/* Masquer le bouton d'installation PWA sur les écrans moyens et grands (tablettes et ordinateurs) */
@media (min-width: 768px) {
  .pwa-install-button {
    display: none !important;
  }
}

/* Responsive PWA Install Button - Mobile uniquement */
@media (max-width: 767px) {
  .pwa-install-button {
    bottom: 15px;
    right: 15px;
    left: 15px;
    justify-content: center;
  }

  .install-btn {
    flex: 1;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }

  .close-install-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .pwa-install-button {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }

  .install-btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .install-btn span {
    font-size: 0.85rem;
  }
}

/* ============================================
   LISTES UTILISATEURS RESPONSIVE
   ============================================ */

/* Cartes mobiles pour les listes d'utilisateurs */
.mobile-cards {
  display: block;
}

.mobile-cards .card {
  margin-bottom: 1rem;
  border: 1px solid var(--light-gray);
}

.mobile-cards .card-header {
  font-weight: 600;
  padding: 1rem;
}

.mobile-cards .card-body {
  padding: 1rem;
  font-size: 0.95rem;
}

/* Amélioration de l'espacement des badges */
.mobile-cards .badge {
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
  margin: 0.1rem;
}

/* Boutons d'action empilés sur mobile */
.mobile-cards .d-grid {
  gap: 0.5rem;
}

.mobile-cards .btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

/* Statistiques responsive */
.mobile-cards + .d-md-none .card {
  margin-top: 1rem;
}

/* Optimisation des icônes sur mobile */
.mobile-cards i {
  min-width: 1.2rem;
  text-align: center;
}

/* Amélioration de la lisibilité des informations */
.mobile-cards strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Espacement des sections dans les cartes */
.mobile-cards .mb-2 {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-cards .mb-2:last-of-type {
  border-bottom: none;
}

.mobile-cards .mb-3 {
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--light-gray);
}

/* Amélioration des alertes de confidentialité */
.mobile-cards .alert-light {
  background-color: #f8f9fa;
  border: 1px solid var(--light-gray);
  padding: 0.75rem;
  margin-top: 0.5rem;
}

/* Optimisation des boutons de confidentialité */
.mobile-cards .alert-light .btn {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
}

/* Responsive pour les filtres */
@media (max-width: 768px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Masquer les tableaux sur mobile */
  .d-none.d-md-block {
    display: none !important;
  }

  /* Afficher les cartes sur mobile */
  .d-md-none {
    display: block !important;
  }

  /* Ajustement des titres de page sur mobile */
  .container .row.mb-4 {
    margin-bottom: 1.5rem !important;
  }

  .container .row.mb-4 .col-md-8 h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .container .row.mb-4 .col-md-4 {
    margin-top: 1rem;
  }

  /* Boutons d'action en pleine largeur sur mobile */
  .container .row.mb-4 .col-md-4 .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* Optimisation pour très petits écrans */
@media (max-width: 480px) {
  .mobile-cards .card-header h6 {
    font-size: 1rem;
  }

  .mobile-cards .card-body {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .mobile-cards .badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
  }

  .mobile-cards .btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  /* Réduction de l'espacement sur petits écrans */
  .mobile-cards .mb-2 {
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.4rem;
  }

  .mobile-cards .mb-3 {
    margin-bottom: 0.75rem !important;
    padding-bottom: 0.6rem;
  }
}

/* Amélioration de l'affichage des statistiques sur mobile */
@media (max-width: 768px) {
  .mobile-cards + .d-md-none .row.text-center.g-2 {
    gap: 0.5rem;
  }

  .mobile-cards + .d-md-none .row.text-center.g-2 .col-6 {
    padding: 0.25rem;
  }

  .mobile-cards + .d-md-none .p-2 {
    padding: 0.75rem !important;
  }

  .mobile-cards + .d-md-none h5 {
    font-size: 1.25rem;
  }

  .mobile-cards + .d-md-none small {
    font-size: 0.8rem;
  }
}

/* Amélioration des légendes sur mobile (vue juniors) */
@media (max-width: 768px) {
  .mobile-cards + .d-md-none .row.mt-3.g-2 .col-12 {
    margin-bottom: 0.5rem;
  }

  .mobile-cards + .d-md-none .card-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .mobile-cards + .d-md-none ul.small {
    font-size: 0.85rem;
  }

  .mobile-cards + .d-md-none p.small {
    font-size: 0.85rem;
  }
}

/* ============================================
   MENU DÉROULANT NAVBAR - ACTIVITÉS
   ============================================ */

/* Conteneur du menu déroulant */
.nav-dropdown {
  position: relative;
}

/* Lien parent avec flèche */
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

/* Rotation de la flèche au hover */
.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Menu déroulant */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

/* Affichage du menu au hover sur desktop */
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Items du menu déroulant */
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid var(--light-gray);
}

.nav-dropdown-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.nav-dropdown-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom: none;
}

.nav-dropdown-item:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.nav-dropdown-item.active {
  background-color: var(--light-color);
  color: var(--primary-color);
  font-weight: 600;
}

.nav-dropdown-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Responsive - Mobile */
@media (max-width: 968px) {
  /* Sur mobile, le menu déroulant devient un accordéon */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: var(--light-color);
    margin-top: 0;
    margin-left: 1rem;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  /* Affichage du sous-menu sur mobile au clic */
  .nav-dropdown.active .nav-dropdown-menu {
    max-height: 500px;
  }

  /* Rotation de la flèche sur mobile */
  .nav-dropdown.active .nav-dropdown-toggle svg {
    transform: rotate(180deg);
  }

  .nav-dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .nav-dropdown-item i {
    font-size: 1rem;
  }
}

/* ============================================
   TABLEAU COMPARATIF PARTENARIATS
   ============================================ */
.partnership-comparison {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.partnership-comparison h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
}

.partnership-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;
  min-width: 700px;
}

.partnership-table thead {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
}

.partnership-table th {
  padding: 1.2rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.partnership-table th:first-child {
  text-align: left;
  border-top-left-radius: 10px;
}

.partnership-table th:last-child {
  border-right: none;
  border-top-right-radius: 10px;
}

.partnership-table .tier-amount {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 0.3rem;
  opacity: 0.9;
}

.partnership-table tbody tr {
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

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

.partnership-table tbody tr:last-child {
  border-bottom: none;
}

.partnership-table td {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--light-gray);
}

.partnership-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark-color);
  border-right: 2px solid var(--light-gray);
}

.partnership-table td:last-child {
  border-right: none;
}

.partnership-table .check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Texte détaillé à côté du check - plus discret */
.partnership-table .check-detail {
  font-size: 0.8rem;
  font-weight: 400;
  color: #999;
  margin-left: 0.2rem;
}

.partnership-table .no-check {
  color: var(--gray);
  opacity: 0.4;
  font-size: 1.2rem;
}

/* Responsive pour le tableau comparatif */
@media (max-width: 968px) {
  .partnership-comparison h3 {
    font-size: 1.5rem;
  }

  .partnership-table {
    font-size: 0.9rem;
  }

  .partnership-table th,
  .partnership-table td {
    padding: 0.8rem 0.6rem;
  }

  .partnership-table th {
    font-size: 0.9rem;
  }

  .partnership-table .tier-amount {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .partnership-comparison {
    margin-top: 2rem;
  }

  .partnership-comparison h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .comparison-table-wrapper {
    margin-bottom: 1.5rem;
  }

  .partnership-table {
    font-size: 0.85rem;
    min-width: 650px;
  }

  .partnership-table th,
  .partnership-table td {
    padding: 0.7rem 0.5rem;
  }

  .partnership-table .check,
  .partnership-table .no-check {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .partnership-comparison h3 {
    font-size: 1.2rem;
  }

  .partnership-table {
    font-size: 0.8rem;
    min-width: 600px;
  }

  .partnership-table th,
  .partnership-table td {
    padding: 0.6rem 0.4rem;
  }

  .partnership-table th {
    font-size: 0.85rem;
  }

  .partnership-table .tier-amount {
    font-size: 0.7rem;
  }

  .partnership-table .check,
  .partnership-table .no-check {
    font-size: 1rem;
  }
}
