/* =============================================
   AC BREE — Modern Website Stylesheet
   ============================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a6b28;
  --primary-dark: #125020;
  --accent: #f0a500;
  --accent-light: #f7c040;
  --green: #1a6b28;
  --light: #f8f9fa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-900: #212529;
  --white: #ffffff;
  --dark: #0f1e30;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

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

a:hover {
  color: var(--accent-light);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--accent);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 107, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
}

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.14);
}
.navbar.scrolled .hamburger span {
  background: var(--white);
}

.logo-default { display: block; }
.logo-scrolled { display: none; }
.navbar.scrolled .logo-default { display: none; }
.navbar.scrolled .logo-scrolled { display: block; }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  height: 68px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white) !important;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 4px 0;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.1rem;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  color: var(--primary) !important;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background: rgba(26, 107, 40, 0.1);
}

.chevron {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 196px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--gray-900) !important;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.dropdown a:hover {
  background: var(--gray-100);
  color: var(--accent) !important;
  padding-left: 1.3rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =====================
   NEWS ALERT BAR
   ===================== */
.news-alert {
  background: var(--accent);
  color: var(--white);
  padding: 0.7rem 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.news-alert a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

/* =====================
   HERO
   ===================== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1f8c30 55%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 6rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(232, 93, 4, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
}

.hero-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 60px,
    transparent 60px,
    transparent 80px
  );
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overline {
  display: inline-block;
  background: rgba(232, 93, 4, 0.2);
  border: 1px solid rgba(232, 93, 4, 0.4);
  color: var(--accent-light);
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.hero .overline {
  background: rgba(232, 93, 4, 0.25);
  color: #ffb380;
}

.hero-text h1 {
  font-size: 3.8rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.08;
  font-weight: 900;
}

.hero-text h1 span {
  color: var(--accent-light);
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  max-width: 500px;
}

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

.hero-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232, 93, 4, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.35);
}

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

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}



/* =====================
   SECTIONS
   ===================== */
section {
  padding: 5rem 0;
}

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

.section-title .overline {
  color: var(--accent);
  background: rgba(232, 93, 4, 0.1);
  border-color: rgba(232, 93, 4, 0.25);
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.9rem;
  margin-top: 0.75rem;
}

.section-title p {
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
}

/* =====================
   NEWS CARDS
   ===================== */
.news-section {
  background: var(--gray-100);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.news-card-header {
  padding: 1.75rem 1.75rem 1rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.news-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.news-card-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.35;
}

.news-card-body {
  padding: 1.4rem 1.75rem;
  flex-grow: 1;
}

.news-card-body p {
  color: var(--gray-600);
  font-size: 0.935rem;
  line-height: 1.7;
}

.news-card-footer {
  padding: 0.75rem 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.news-tag {
  display: inline-block;
  background: var(--gray-200);
  color: var(--gray-600);
  padding: 0.22rem 0.7rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-tag.event {
  background: #d1e7dd;
  color: #0f5132;
}

.news-tag.alert {
  background: #fff3cd;
  color: #664d03;
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-sm:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* =====================
   INFO CARDS
   ===================== */
.info-section {
  background: var(--white);
}

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

.info-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card .icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.info-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =====================
   SPONSORS
   ===================== */
.sponsors-section {
  background: var(--primary);
  padding: 3.5rem 0;
}

.sponsors-section .section-title h2 {
  color: var(--white);
}

.sponsors-section .section-title .overline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
}

.sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.sponsor-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.1rem 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sponsor-item:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* =====================
   USEFUL LINKS
   ===================== */
.links-section {
  background: var(--gray-100);
  padding: 4rem 0;
}

.links-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.link-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.75rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-size: 0.95rem;
}

.link-item:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* =====================
   SITE BANNER (3D render)
   ===================== */
.site-banner {
  width: 100%;
}

.site-banner-img-wrap {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  display: block;
}

.site-banner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  max-height: 520px;
}

.site-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.72) 0%,
    rgba(10, 22, 40, 0.45) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 3rem 4rem;
}

.site-banner-label {
  max-width: 480px;
  color: #fff;
}

.site-banner-label h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0.5rem 0 0.75rem;
  line-height: 1.2;
}

.site-banner-label p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .site-banner-overlay {
    padding: 2rem 1.5rem;
    background: linear-gradient(
      to top,
      rgba(10, 22, 40, 0.78) 0%,
      rgba(10, 22, 40, 0.3) 60%,
      transparent 100%
    );
    align-items: flex-end;
  }

  .site-banner-label h2 { font-size: 1.4rem; }
  .site-banner-img-wrap,
  .site-banner-img-wrap img { max-height: 280px; }
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem;
}

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

.footer-brand h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--accent-light);
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary), #1f8c30);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(232, 93, 4, 0.1) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
  font-weight: 900;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb span { color: var(--accent-light); }

/* =====================
   TABLES
   ===================== */
.table-container {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

thead {
  background: var(--primary);
  color: var(--white);
}

thead th {
  padding: 1rem 1.4rem;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 600;
}

tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s;
}

tbody tr:hover { background: var(--gray-100); }
tbody tr:last-child { border-bottom: none; }

tbody td {
  padding: 0.95rem 1.4rem;
  font-size: 0.92rem;
}

.day-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.day-badge.ma { background: #dce8ff; color: #1e3a8a; }
.day-badge.wo { background: #d1fae5; color: #065f46; }
.day-badge.do { background: #fef3c7; color: #78350f; }
.day-badge.vr { background: #fce7f3; color: #831843; }
.day-badge.za { background: #ede9fe; color: #4c1d95; }

/* =====================
   CARDS
   ===================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body { padding: 2rem; }

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

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--primary), #2a5298);
}

.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 0.22rem 1rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-card h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.pricing-card.featured h3 { color: var(--white); }

.pricing-card .subtitle {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .subtitle { color: rgba(255, 255, 255, 0.65); }

.price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin: 1rem 0;
  line-height: 1;
}

.pricing-card.featured .price { color: #ffb380; }

.price-note {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .price-note { color: rgba(255, 255, 255, 0.6); }

.pricing-card ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--gray-600);
}

.pricing-card.featured ul li { color: rgba(255, 255, 255, 0.8); }

.pricing-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pricing-card.featured ul li::before { color: #ffb380; }

/* =====================
   CATEGORIES
   ===================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent);
  transition: var(--transition);
}

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

.category-card .emoji { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.category-card h4 { color: var(--primary); font-size: 1rem; margin-bottom: 0.4rem; }
.category-card p { font-size: 0.8rem; color: var(--gray-600); }

/* =====================
   TRAINER/PERSON CARDS
   ===================== */
.persons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem;
}

.person-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

.person-avatar {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

.person-info { padding: 1.4rem; }
.person-info h3 { color: var(--primary); margin-bottom: 0.2rem; font-size: 1.05rem; }

.person-role {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.person-groups {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--gray-600);
}

/* =====================
   CONTACT / MAP
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { }

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

.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.contact-item p, .contact-item a {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
  background: var(--gray-200);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =====================
   ALERT BOX
   ===================== */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert-info {
  background: #dbeafe;
  color: #1e3a8a;
  border-left: 4px solid #3b82f6;
}

.alert-warning {
  background: #fef3c7;
  color: #78350f;
  border-left: 4px solid #f59e0b;
}

/* =====================
   PHOTO GALLERY
   ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary), #2a5298);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 3rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

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

.gallery-item .gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: white;
  padding: 1.5rem 1rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =====================
   VALUES
   ===================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-card .v-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 { margin-bottom: 0.6rem; }
.value-card p { color: var(--gray-600); font-size: 0.9rem; }

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   SECTION ALTERNATING
   ===================== */
.section-alt { background: var(--gray-100); }

/* =====================
   MISC
   ===================== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--gray-600); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

hr.divider {
  border: none;
  border-top: 2px solid var(--gray-200);
  margin: 3rem 0;
}

.highlight-bar {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.highlight-bar p { font-size: 1rem; font-weight: 500; }
.highlight-bar strong { font-size: 1.1rem; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-logo-wrap { display: none; }

  .hero-text p { max-width: 100%; }
  .hero-buttons { justify-content: center; }

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

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.15rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

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

  .nav-link {
    width: 100%;
    padding: 0.7rem 1rem;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    margin-top: 0.2rem;
    border-radius: var(--radius-sm);
    padding: 0.25rem;
  }

  .dropdown a { color: rgba(255, 255, 255, 0.78) !important; font-size: 0.85rem; }
  .dropdown a:hover { background: rgba(255, 255, 255, 0.1); color: var(--white) !important; }

  .nav-item.open .dropdown { display: block; }
  .hamburger { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-title h2 { font-size: 1.85rem; }
  section { padding: 3.5rem 0; }

  .persons-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero { padding: 4rem 0 3rem; }
  .hero-text h1 { font-size: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2rem; }
}
