* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fefcf5;
  color: #1a2c3e;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  --rotary-blue: #003366;
  --rotary-gold: #c8a84e;
  --rotary-gold-light: #e3c778;
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(200, 168, 78, 0.25);
  --shadow-sm: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 25px 40px -14px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: var(--rotary-gold);
}

.btn-primary {
  background: var(--rotary-blue);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 3rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 5px 12px rgba(0, 51, 102, 0.2);
}

.btn-primary:hover {
  background: #002244;
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--rotary-blue);
  color: var(--rotary-blue);
  padding: 0.8rem 1.8rem;
  border-radius: 3rem;
  font-weight: 500;
  transition: 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--rotary-blue);
  color: white;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 20% 30%, rgba(0, 51, 102, 0.08), rgba(200, 168, 78, 0.05));
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.2) 0%, rgba(0, 51, 102, 0) 70%);
  top: -20%;
  left: -20%;
  animation: floatGlow 12s infinite alternate;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translate(5%, 5%) scale(1.1);
    opacity: 0.7;
  }
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
  color: var(--rotary-blue);
  font-size: 1.8rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.profile-card {
  background: white;
  border-radius: 1.8rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(200, 168, 78, 0.2);
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 36px -12px rgba(0, 51, 102, 0.2);
  border-color: var(--rotary-gold);
}

.avatar {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #e9eef3, #d4dce6);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--rotary-blue);
  border: 3px solid var(--rotary-gold-light);
}

.insta-link {
  color: var(--rotary-blue);
  font-weight: 500;
  text-decoration: none;
  margin: 0.5rem 0;
  display: inline-block;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--rotary-blue);
  padding: 0.5rem 1.8rem;
  border-radius: 2rem;
  font-weight: 500;
  transition: 0.2s;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--rotary-blue);
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--rotary-blue);
}

.map-premium-section {
  background: linear-gradient(145deg, #f8f6f0 0%, #f0ede5 100%);
  border-radius: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.search-club-wrapper {
  flex: 2;
  min-width: 240px;
}

.search-club-wrapper input {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 3rem;
  border: 1px solid #ddd;
  background: white;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
}

.search-club-wrapper input:focus {
  outline: none;
  border-color: var(--rotary-gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.2);
}

.zone-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
  flex: 1;
}

.zone-chip {
  background: white;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rotary-blue);
  border: 1px solid var(--rotary-gold);
  cursor: pointer;
  transition: 0.2s;
}

.zone-chip:hover,
.zone-chip.active-zone-chip {
  background: var(--rotary-blue);
  color: white;
  border-color: var(--rotary-blue);
  transform: translateY(-2px);
}

#interactiveMap {
  height: 550px;
  width: 100%;
  border-radius: 1.8rem;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(255, 255, 240, 0.6);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 245, 0.8);
  padding: 0.8rem 1rem;
  border-radius: 2rem;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.club-marker-custom {
  background: var(--rotary-blue);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rotary-gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  color: white;
}

.premium-popup .leaflet-popup-content-wrapper {
  border-radius: 1.5rem;
  background: white;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
  border-left: 6px solid var(--rotary-gold);
}

.club-popup-content {
  max-width: 280px;
  font-family: 'Inter', sans-serif;
}
.club-popup-content h3 {
  color: var(--rotary-blue);
  margin-bottom: 8px;
  font-weight: 800;
}    
.popup-detail-btn {
  background: var(--rotary-blue);
  color: white;
  border: none;
  border-radius: 2rem;
  padding: 0.3rem 1rem;
  margin-top: 8px;
  cursor: pointer;
  font-size: 0.75rem;
}
.modal {
  display: none;
  position: fixed;
  top:0;left:0;width:100%;height:100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: white;
  max-width: 550px;
  width: 90%;
  border-radius: 2rem;
  padding: 2rem;
  max-height: 85vh;
  overflow-y: auto;
  animation: fadeUp 0.3s;
}
@keyframes fadeUp {
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1;}
}
h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
h2:after {
  content: '';
  width: 60px;
  height: 4px;
  background: var(--rotary-gold);
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 4px;
}
section {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  #interactiveMap { height: 450px; }
  .map-header { flex-direction: column; align-items: stretch; }
  .zone-badge-list { justify-content: center; }
}

/* ---------- CNIT WALL ---------- */
#cnitWall {
  padding: 5rem 0;
}

.wall-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.wall-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  display: inline-block;
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.wall-card {
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wall-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.wall-card:hover {
  transform: translateY(-8px);
}

.wall-card:hover img {
  transform: scale(1.05);
}

.wall-card .photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wall-card:hover .photo-overlay {
  opacity: 1;
}

/* Responsive Wall */
@media (max-width: 768px) {
  .wall-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .wall-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  #cnitWall {
    padding: 3rem 0;
  }
  
  .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .wall-header h2 {
    font-size: 1.6rem;
  }
  
  .wall-card .photo-overlay {
    padding: 1rem 0.6rem 0.6rem;
  }
}

/* ---------- PROFILE CARDS ---------- */
.profile-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(200, 168, 78, 0.25);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -10px rgba(0, 51, 102, 0.15);
  border-color: var(--rotary-gold);
}

.profile-card .avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f5f7fa, #e8ecef);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--rotary-blue);
  border: 3px solid var(--rotary-gold);
}

.profile-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rotary-blue);
  margin: 0.5rem 0 0.25rem;
}

.profile-card p {
  color: #6b7a85;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.profile-card .insta-link {
  color: var(--rotary-blue);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0.5rem 0;
  padding: 0.25rem 0.8rem;
  border-radius: 2rem;
  background: rgba(200, 168, 78, 0.1);
  transition: all 0.2s;
}

.profile-card .insta-link i {
  font-size: 0.9rem;
  color: #e4405f;
}

.profile-card .insta-link:hover {
  background: rgba(200, 168, 78, 0.2);
}

.profile-card .btn-outline {
  background: transparent;
  border: 1.5px solid var(--rotary-blue);
  color: var(--rotary-blue);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.profile-card .btn-outline:hover {
  background: var(--rotary-blue);
  color: white;
}

/* ---------- FILTER BUTTONS ---------- */
.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--rotary-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s;
  cursor: pointer;
  color: var(--rotary-blue);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--rotary-blue);
  color: white;
}

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 1px solid rgba(200, 168, 78, 0.25);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--rotary-gold);
}

/* ---------- ABOUT SECTION ---------- */
#about {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fefcf5 0%, #fff9ef 100%);
}

.about-wrapper {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1.5;
  min-width: 280px;
}

.about-image {
  flex: 1;
  min-width: 280px;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.about-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 55px -15px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2rem;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.2), rgba(200, 168, 78, 0.1));
  border-radius: 2rem;
  pointer-events: none;
}

.about-description {
  max-width: 800px;
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2c3e4e;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.about-card {
  padding: 1.8rem;
  text-align: center;
  background: white;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 168, 78, 0.2);
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: var(--rotary-gold);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.about-card i {
  font-size: 2.2rem;
  color: var(--rotary-gold);
  margin-bottom: 1rem;
}

.about-card h3 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rotary-blue);
}

.about-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5a6e7c;
}

@media (max-width: 968px) {
  .about-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- TROPHY CABINET ---------- */
.trophy-cabinet-section {
  background: #fefcf5;
  padding: 3rem 0;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.trophy-cabinet-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trophy-cabinet-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rotary-blue, #003366);
  position: relative;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.trophy-cabinet-section h2:after {
  content: '';
  width: 50px;
  height: 3px;
  background: var(--rotary-gold, #c8a84e);
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 3px;
}

.cabinet-subtitle {
  color: #5a6874;
  font-size: 0.9rem;
  margin-top: 0.8rem;
  margin-bottom: 1.5rem;
}

.cabinet-wooden-frame {
  background: linear-gradient(135deg, #e8dcc8 0%, #d4c4a8 100%);
  border-radius: 1.5rem;
  padding: 1.2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.5);
  border: 1px solid rgba(200, 168, 78, 0.4);
}

.shelf-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shelf-year {
  position: relative;
  margin-bottom: 1rem;
}

.shelf-year:last-child {
  margin-bottom: 0;
}

.year-label {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--rotary-blue, #003366);
  letter-spacing: 3px;
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.15), rgba(200, 168, 78, 0.05));
  padding: 0.6rem 0.2rem;
  border-radius: 1.5rem;
  border-left: 2px solid var(--rotary-gold, #c8a84e);
  border-right: 2px solid var(--rotary-gold, #c8a84e);
}

.wooden-shelf {
  background: linear-gradient(180deg, #c4b28a 0%, #a8946a 100%);
  border-radius: 0.5rem;
  padding: 0.6rem;
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.3);
}

.wooden-shelf::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 5px);
  pointer-events: none;
  border-radius: 0.5rem;
}

.wooden-shelf::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(180deg, #8a7650, #6b5a3e);
  border-radius: 0 0 0.5rem 0.5rem;
}

.trophies-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 1.2rem;
  padding: 0.8rem 0.5rem;
  min-height: 180px;
}

.trophy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.2);
  position: relative;
  width: 120px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.trophy-item:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 10px rgba(200, 168, 78, 0.4));
}

.trophy-item:hover .trophy-icon-wrapper {
  animation: floatTrophy 0.6s ease-in-out infinite;
}

@keyframes floatTrophy {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

.trophy-icon-wrapper {
  background: linear-gradient(145deg, #e8c86a, #c8a84e);
  width: 80px;
  height: 96px;
  border-radius: 50% 50% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2), inset 0 2px 3px rgba(255,255,255,0.4);
}

.trophy-icon-wrapper i {
  font-size: 2.8rem;
  color: #fff5e0;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.trophy-icon-wrapper .fa-trophy {
  font-size: 3rem;
}

.trophy-icon-wrapper::after {
  content: '';
  position: absolute;
  top: 5%;
  left: 10%;
  width: 30%;
  height: 20%;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), transparent);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.trophy-item:hover .trophy-icon-wrapper::after {
  opacity: 0.8;
  animation: shine 0.5s ease;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(10deg); opacity: 0; }
  50% { opacity: 0.7; }
  100% { transform: translateX(100%) rotate(10deg); opacity: 0; }
}

.trophy-plate {
  margin-top: 0.7rem;
  background: linear-gradient(145deg, #b8962e, #9a7820);
  padding: 0.35rem 0.4rem;
  border-radius: 0.4rem;
  text-align: center;
  width: 100%;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 2px 4px rgba(0,0,0,0.2);
  border-bottom: 1px solid #e6c87e;
}

.plate-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: #1a0f08;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display', serif;
}

.plate-club {
  font-size: 0.55rem;
  color: #2a1a0e;
  font-weight: 500;
  margin-top: 2px;
}

.trophy-item.future {
  opacity: 0.8;
  cursor: pointer;
}

.trophy-item.future .trophy-icon-wrapper {
  background: linear-gradient(145deg, #b8a880, #9a8868);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
}

.trophy-item.future .trophy-icon-wrapper i {
  color: #d4c8a8;
}

.trophy-item.future:hover {
  transform: translateY(-5px);
  opacity: 1;
}

@media (max-width: 1100px) {
  .year-label {
    position: relative;
    left: 0;
    writing-mode: horizontal-tb;
    text-align: center;
    margin-bottom: 0.5rem;
    display: inline-block;
    width: auto;
    padding: 0.3rem 1rem;
    font-size: 1.1rem;
  }
  
  .shelf-year {
    margin-bottom: 1rem;
  }
  
  .trophies-row {
    gap: 1rem;
  }
  
  .trophy-item {
    width: 100px;
  }
  
  .trophy-icon-wrapper {
    width: 65px;
    height: 78px;
  }
  
  .trophy-icon-wrapper i {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .trophy-cabinet-section {
    padding: 2rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .trophies-row {
    gap: 0.8rem;
  }
  
  .trophy-item {
    width: 85px;
  }
  
  .trophy-icon-wrapper {
    width: 55px;
    height: 66px;
  }
  
  .trophy-icon-wrapper i {
    font-size: 1.8rem;
  }
  
  .plate-title {
    font-size: 0.5rem;
  }
  
  .plate-club {
    font-size: 0.45rem;
  }
}

/* ---------- TROPHY MODAL ---------- */
.trophy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.trophy-modal-content {
  background: white;
  border-radius: 1.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  animation: modalFadeIn 0.3s ease;
  border-top: 4px solid var(--rotary-gold, #c8a84e);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close-btn {
  position: sticky;
  top: 0.8rem;
  right: 0.8rem;
  float: right;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--rotary-gold, #c8a84e);
  color: white;
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
  clear: both;
}

.modal-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1rem 0;
}

.modal-detail-item {
  background: #f8f6f0;
  padding: 0.8rem;
  border-radius: 0.8rem;
}

.modal-detail-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--rotary-gold, #c8a84e);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.modal-detail-item .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rotary-blue, #003366);
  margin-top: 0.3rem;
}

.stats-preview {
  background: #f8f6f0;
  border-radius: 0.8rem;
  padding: 1rem;
  margin-top: 1rem;
}

.stats-preview h4 {
  color: var(--rotary-gold, #c8a84e);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.close-modal-btn {
  background: linear-gradient(135deg, var(--rotary-blue), #002244);
  color: white;
  border: 1px solid rgba(200, 168, 78, 0.5);
  padding: 0.8rem 2rem;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.close-modal-btn:hover {
  background: linear-gradient(135deg, var(--rotary-gold), #b8922e);
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(200, 168, 78, 0.3);
}

/* ---------- DISTINCTIONS ---------- */
#distinctions {
  padding: 4rem 0;
  background: #fefcf5;
}

#distinctions h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rotary-blue, #003366);
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

#distinctions h2:after {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--rotary-gold, #c8a84e);
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 3px;
}

.distinctions-subtitle {
  color: #5a6874;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trophy-card {
  background: white;
  border-radius: 1rem;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 168, 78, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trophy-card:hover {
  transform: translateY(-3px);
  border-color: var(--rotary-gold, #c8a84e);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.trophy-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, rgba(200, 168, 78, 0.15), rgba(200, 168, 78, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  transition: all 0.3s ease;
}

.trophy-card:hover .trophy-icon {
  background: linear-gradient(145deg, rgba(200, 168, 78, 0.25), rgba(200, 168, 78, 0.1));
  box-shadow: 0 0 12px rgba(200, 168, 78, 0.3);
}

.trophy-icon i {
  font-size: 1.5rem;
  color: var(--rotary-gold, #c8a84e);
}

.trophy-card.locked .trophy-icon i {
  color: #b0a890;
}

.trophy-year {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--rotary-blue, #003366);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.trophy-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a2c3e;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.trophy-club {
  font-size: 0.7rem;
  color: #7a8a9a;
  font-weight: 500;
}

.trophy-card.locked .trophy-title {
  color: #b0a890;
}

.trophy-card.locked .trophy-club {
  color: #c0b8a0;
}

@media (max-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  
  #distinctions {
    padding: 2rem 0;
  }
}

/* ---------- OBJECTIFS 2026 ---------- */
#objectifs-2026 {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
  position: relative;
  overflow: hidden;
}

#objectifs-2026::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(200,168,78,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.objectifs-header {
  text-align: center;
  margin-bottom: 3rem;
}

.header-badge-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-badge {
  background: linear-gradient(135deg, var(--rotary-gold, #c8a84e), #b8922e);
  color: #0a1622;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(200, 168, 78, 0.3);
}

#objectifs-2026 h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rotary-blue, #003366);
  position: relative;
  display: inline-block;
  margin: 0;
}

#objectifs-2026 h2:after {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--rotary-gold, #c8a84e);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.objectifs-subtitle {
  color: #5a6874;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.objectifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.8rem;
}

.goal-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1.2rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(200, 168, 78, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.goal-card:hover {
  transform: translateY(-6px);
  border-color: var(--rotary-gold, #c8a84e);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
}

.card-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 78, 0.08), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.goal-card:hover .card-glow {
  left: 100%;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.goal-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(145deg, rgba(200, 168, 78, 0.15), rgba(200, 168, 78, 0.05));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
  background: linear-gradient(145deg, rgba(200, 168, 78, 0.25), rgba(200, 168, 78, 0.1));
  transform: scale(1.02);
}

.goal-icon i {
  font-size: 1.6rem;
  color: var(--rotary-gold, #c8a84e);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.04);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.status-badge.status-active .status-dot {
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.status-badge.status-priority .status-dot {
  background: #eab308;
  box-shadow: 0 0 6px #eab308;
}

.status-badge.status-development .status-dot {
  background: #3b82f6;
  box-shadow: 0 0 6px #3b82f6;
}

.status-badge.status-active {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.status-badge.status-priority {
  background: rgba(234, 179, 8, 0.1);
  color: #a16207;
}

.status-badge.status-development {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}

.goal-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rotary-blue, #003366);
  margin-bottom: 0.5rem;
}

.goal-description {
  font-size: 0.8rem;
  color: #5a6874;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.progress-container {
  margin-bottom: 1rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 500;
  color: #6b7a85;
  margin-bottom: 0.4rem;
}

.progress-value {
  color: var(--rotary-gold, #c8a84e);
  font-weight: 700;
}

.progress-bar {
  height: 6px;
  background: rgba(200, 168, 78, 0.15);
  border-radius: 3rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--rotary-gold, #c8a84e), #e3c778);
  border-radius: 3rem;
  transition: width 1s ease-out;
}

.goal-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(200, 168, 78, 0.15);
  font-size: 0.7rem;
  color: #7a8a9a;
}

.goal-footer i {
  font-size: 0.7rem;
  color: var(--rotary-gold, #c8a84e);
}

@media (max-width: 768px) {
  #objectifs-2026 {
    padding: 3rem 0;
  }
  
  .objectifs-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .goal-card {
    padding: 1.2rem;
  }
}

/* ---------- FOOTER - FIXED ALIGNMENT ---------- */
footer {
  background: linear-gradient(135deg, #0a1622 0%, #0f1a2a 100%);
  color: #e0e0e0;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rotary-gold, #c8a84e), var(--rotary-blue, #003366), var(--rotary-gold, #c8a84e));
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

/* Footer Brand - fixed alignment */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 250px;
}

.footer-brand h3 {
  color: var(--rotary-gold, #c8a84e);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.footer-brand p {
  color: #b0b8c4;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

/* Social links - now properly aligned */
.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.5rem;
  width: 100%;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.03);
  width: fit-content;
  min-width: 160px;
}

.social-link i {
  font-size: 1.1rem;
  transition: transform 0.2s;
  width: 20px;
  text-align: center;
}

.social-link.instagram:hover {
  color: #e4405f;
  background: rgba(228, 64, 95, 0.15);
  transform: translateX(5px);
}

.social-link.facebook:hover {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.15);
  transform: translateX(5px);
}

.social-link.linkedin:hover {
  color: #0077b5;
  background: rgba(0, 119, 181, 0.15);
  transform: translateX(5px);
}

.social-link:hover i {
  transform: scale(1.1);
}

/* Footer links */
.footer-links {
  min-width: 180px;
}

.footer-links h4 {
  color: var(--rotary-gold, #c8a84e);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--rotary-gold, #c8a84e);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #b0b8c4;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a i {
  font-size: 0.6rem;
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: var(--rotary-gold, #c8a84e);
  transform: translateX(5px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Footer contact */
.footer-contact {
  min-width: 220px;
}

.footer-contact h4 {
  color: var(--rotary-gold, #c8a84e);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--rotary-gold, #c8a84e);
}

.contact-email, .contact-phone {
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: #b0b8c4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-email i, .contact-phone i {
  color: var(--rotary-gold, #c8a84e);
  width: 20px;
  text-align: center;
}

/* Instagram Feed */
.instagram-feed {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.2rem;
  margin-top: 2rem;
}

.feed-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.feed-header i {
  font-size: 1.5rem;
  color: #e4405f;
}

.feed-header span {
  font-weight: 500;
  color: #e0e0e0;
}

.follow-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: transform 0.2s;
  margin-left: auto;
}

.follow-btn:hover {
  transform: translateY(-2px);
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.feed-item {
  display: block;
  aspect-ratio: 1;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #1a1a2e;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.feed-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.feed-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .follow-btn {
    margin-left: 0;
  }
}

/* Divider */
.footer-divider {
  margin: 1.5rem 0;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 78, 0.3), transparent);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Footer responsive */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
  
  .social-links {
    align-items: center;
  }
  
  .social-link {
    width: fit-content;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-email, .contact-phone {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  
  .social-links {
    align-items: center;
  }
  
  .social-link {
    width: fit-content;
    min-width: 140px;
    justify-content: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .contact-email, .contact-phone {
    justify-content: center;
  }
}

/* ---------- SECRET BUTTON - COMPLÈTEMENT CACHÉ ---------- */
.secret-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

#secretTrigger.hidden-trigger {
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  pointer-events: auto;
  cursor: default;
}

/* ---------- PRIVATE PANEL ---------- */
.private-panel {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.private-link-item {
  background: #f2f6fc;
  padding: 1.2rem 1.8rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.private-link-item input {
  border: none;
  background: white;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  width: 160px;
  font-family: inherit;
  border: 1px solid #dce4ec;
}

.private-link-item button {
  background: var(--rotary-blue);
  color: white;
  border: none;
  padding: 0.6rem 1.6rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.private-link-item button:hover {
  background: #002244;
}

.hidden {
  display: none;
}

#secretRotaryLink {
  cursor: pointer !important;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

#secretRotaryLink:hover {
  color: #c8a84e !important;
  transform: translateX(5px);
}


.wall-card {
    aspect-ratio: 16 / 9;       
    width: 100%;
    overflow: hidden;
    background: #f0f3f8;
}

.wall-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;           
    display: block;
}

#secretRotaryLink:hover::after {
  opacity: 0.4;
}