/* ==========================================================================
   Roller Bug — CSS Premium & Minimaliste
   ========================================================================== */

:root {
  /* Colors - "Apple" Palette */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F5F7;
  --bg-accent: #FFFBEA;
  
  --text-primary: #1D1D1F;
  --text-secondary: #86868B;
  --text-light: #A1A1A6;
  
  --accent: #FCD116;
  --accent-hover: #E6BB05;
  --border-color: rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-width: 1280px;
  --section-padding: 5rem 0;
  
  /* Transitions & Shadows */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
  
  --radius: 12px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

.bg-light { background-color: var(--bg-secondary); }
.bg-accent { background-color: var(--bg-accent); }
.bg-dark { background-color: #1A1A1A; }

/* Utility colors */
.text-white { color: #FFFFFF !important; }
.text-yellow { color: var(--accent) !important; }
.text-light-gray { color: #ADB5BD !important; }
.border-light { border-top: 1px solid rgba(255, 255, 255, 0.1) !important; }

/* Typography Basics */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.accent { 
  background: linear-gradient(135deg, var(--accent) 0%, #FFB300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent); /* fallback */
  display: inline-block;
}
.text-dark { color: #1A1A1A !important; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background-color: var(--accent);
  color: #1A1A1A;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

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

.bg-dark .btn-outline {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-outline:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  transform: scale(1.02);
}

.bg-dark .btn-outline:hover {
  background-color: #FFFFFF;
  color: #1A1A1A;
}

.btn-dark {
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.btn-dark:hover {
  background-color: #000000;
  transform: scale(1.02);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  margin-left: 12rem;
}

.nav-logo-img {
  max-height: 50px;
  width: auto;
  transition: var(--transition);
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

.mobile-only-btn {
  display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 120px 2rem 4rem;
  gap: 4rem;
}

.hero-content .subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.stats-row {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
}

.hero-logo {
  max-width: 80%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: scrollLeft 100s linear infinite;
}

.marquee span.dot {
  color: var(--accent);
  margin: 0 2rem;
}

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

/* ==========================================================================
   Layouts & Sections
   ========================================================================== */
.section-header {
  margin-bottom: 2rem;
}

.section-header.center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header .section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.grid-2.align-center {
  align-items: center;
}

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

/* ==========================================================================
   Cards & Elements
   ========================================================================== */
.card {
  background: var(--bg-primary);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(252, 209, 22, 0.5); /* subtle yellow border on hover */
  transform: scale(1.02);
}

.card-icon {
  margin-bottom: 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
}

.card-icon img {
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Text block for History */
.text-block p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.feature {
  margin-bottom: 2.5rem;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature h3::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--accent);
  border-radius: 50%;
}

.feature p {
  color: var(--text-secondary);
  padding-left: 1.5rem;
}

/* ==========================================================================
   Hockey Tables
   ========================================================================== */
.table-container {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.table-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
  display: block;
  width: fit-content;
}

.table-subtitle {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  margin: 2.5rem 0 1rem;
}

.table-subtitle::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-left: 1rem;
}

.table-container .table-subtitle:first-of-type {
  margin-top: 1rem;
}

.clean-list li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.clean-list li:last-child {
  border-bottom: none;
}

.clean-list li span:nth-child(2) {
  color: var(--text-secondary);
  font-family: var(--font-heading);
}

.encadrement {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  height: fit-content;
}

.encadrement p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.coaches-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.coaches-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px dashed rgba(0,0,0,0.05);
  line-height: 1.5;
}

.coaches-list li:last-child {
  border-bottom: none;
}

.coaches-list strong {
  color: var(--text-primary);
  margin-right: 0.5rem;
  display: inline-block;
}

/* ==========================================================================
   Gallery (Results)
   ========================================================================== */
.gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 400px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   Inscriptions (Cards)
   ========================================================================== */
.dark-list {
  margin-bottom: 2rem;
}

.dark-list li {
  color: #1A1A1A;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.dark-list li::before {
  content: '✓';
  font-weight: bold;
}

.download-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dl-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.dl-card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

.dl-card h3 {
  margin-bottom: 0;
}

/* ==========================================================================
   Bureau (Grid)
   ========================================================================== */
.bureau-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.bureau-member {
  text-align: center;
}

.bureau-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--bg-secondary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background-color: var(--bg-secondary); /* Fallback */
}

.bureau-member:hover img {
  border-color: var(--accent);
  transform: scale(1.05);
}

.fallback-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: bold;
  font-size: 2rem;
}
.fallback-img::after { content: '?'; }

.bureau-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.bureau-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4 {
  color: var(--bg-primary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links a {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-email {
  font-weight: bold;
  color: var(--accent);
  font-family: var(--font-heading);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
  .brand {
    margin-left: 0;
  }
  
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    gap: 2rem;
  }
  
  .hero-content .lead {
    margin: 0 auto 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .stats-row {
    justify-content: center;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-btn {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  /* Hamburger to X Animation */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile Menu Open State */
  .navbar.mobile-open {
    background: var(--bg-primary);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  
  .navbar.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 80px);
    background: var(--bg-primary);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease forwards;
    gap: 1.5rem;
    overflow-y: auto;
    transform: none;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Typography & Spacing adjustments */
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .contact-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  
  .hero {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .hero-image {
    margin-bottom: 0px;
  }

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

  .section-header .title {
    font-size: 2.2rem;
  }

  /* Grid & Flex adjustments */
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .stats-row .stat-item:last-child {
    grid-column: span 2;
    text-align: center;
    align-items: center;
  }

  .dl-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .card, .table-container, .encadrement {
    padding: 1.5rem;
  }
  
  .clean-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: 
      "title price"
      "desc price";
    column-gap: 1rem;
    row-gap: 0.25rem;
    align-items: center;
  }
  
  .clean-list li span:first-child {
    grid-area: title;
    font-weight: 600;
  }
  
  .clean-list li strong {
    grid-area: price;
    margin-left: 0;
  }
  
  .clean-list li span:nth-child(2) {
    grid-area: desc;
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .bureau-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
  }
  
  .bureau-member img {
    width: 100px;
    height: 100px;
  }

  /* Contact page specific mobile adjustments */
  .classic-contact-container {
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-header .title {
    font-size: 1.8rem;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
  }
  
  .stats-row .stat-item:last-child {
    grid-column: auto;
  }
}

/* ==========================================================================
   Carousel Derniers Résultats
   ========================================================================== */
.results-slider {
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  touch-action: pan-y;
}

.slides {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px; height: 42px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.8);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.slider-btn:hover { background: var(--accent); color: #fff; }
.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }

.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 1.5rem 0 0.5rem;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-color);
  cursor: pointer; transition: all 0.2s;
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ==========================================================================
   Premium Classic Contact Page
   ========================================================================== */
.contact-section {
  padding-top: 110px;
  padding-bottom: 100px;
}

.classic-contact-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .classic-contact-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
  }
  
  .classic-form-card {
    flex: 1.5;
  }
  
  .classic-info-card {
    flex: 1;
  }
}

.classic-form-card,
.classic-info-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-weight: 700;
  padding-bottom: 0.5rem;
}

.clean-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

@media (max-width: 600px) {
  .clean-form .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.classic-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background-color: var(--bg-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.classic-input:focus {
  outline: none;
  background-color: var(--bg-primary);
  border-color: var(--accent);
}

.classic-input::placeholder {
  color: var(--text-light);
}

/* Custom Select Dropdown */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem;
  background-color: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.custom-select-trigger span {
  color: var(--text-light);
}

.custom-select-trigger.selected span {
  color: var(--text-primary);
}

.custom-select-wrapper.open .custom-select-trigger {
  background-color: var(--bg-primary);
  border-color: var(--accent);
}

.custom-select-trigger .arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-primary);
  border-bottom: 2px solid var(--text-primary);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s;
}

.custom-select-wrapper.open .custom-select-trigger .arrow {
  transform: translateY(2px) rotate(-135deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background-color: var(--bg-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}

.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  display: block;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.2s;
}

.custom-option:hover {
  background-color: var(--bg-secondary);
  color: var(--accent);
}

/* Submit Button Override */
.btn-submit-contact {
  width: 100%;
  margin-top: 1rem;
  padding: 1.2rem;
  font-size: 1.1rem;
  border-radius: 12px;
}

.btn-submit-contact:hover {
  transform: none !important;
  box-shadow: none !important;
  background-color: var(--accent-hover) !important;
}

/* Info Items with Color */
.info-item-color {
  border-left: 4px solid var(--accent);
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.info-item-color:last-child {
  margin-bottom: 0;
}

.info-item-color h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.info-item-color p, .info-item-color a {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  text-decoration: none;
}

.info-item-color a:hover {
  color: var(--accent);
}
