@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-red: #C8102E;
  --primary-blue: #002868;
  --white: #FFFFFF;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #F5F5F5;
  --primary-blue-hover: #001D4C;
  --primary-blue-active: #001330;
  --primary-red-hover: #9E0D24;
  --primary-red-active: #750A1B;
  --header-height: 70px;
  --header-height-scrolled: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Arial', 'Helvetica', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  color: var(--medium-gray);
}

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

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

/* ========================================
   HEADER STYLES
   ======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--white);
  z-index: 1000;
  transition: height 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.2s ease, font-weight 0.2s ease;
  position: relative;
}

nav a:hover {
  color: var(--primary-blue);
  font-weight: 600;
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-utility {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-utility a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  transition: background 0.2s ease;
}

.header-utility a:hover {
  background: var(--primary-blue);
}

.header-utility a:hover svg {
  fill: var(--white);
}

.header-utility svg {
  width: 18px;
  height: 18px;
  fill: var(--dark-gray);
  transition: fill 0.2s ease;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-gray);
  margin: 3px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-contact-icon {
  display: none;
}

@media (max-width: 1023px) {
  .header-utility {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  
  .mobile-contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--dark-gray);
  }
}

@media (min-width: 1280px) {
  .header-utility {
    display: flex;
  }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 1001;
  padding: 80px 30px 30px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close::before,
.mobile-nav-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--dark-gray);
}

.mobile-nav-close::before {
  transform: rotate(45deg);
}

.mobile-nav-close::after {
  transform: rotate(-45deg);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-gray);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-nav .cta-button {
  margin-top: 30px;
}

/* ========================================
   BUTTON STYLES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-blue-hover);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
  background: var(--primary-blue-active);
  transform: translateY(1px);
}

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

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

.btn-secondary:active {
  background: var(--primary-blue-hover);
  transform: translateY(1px);
}

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

.btn-accent:hover {
  background: var(--primary-red-hover);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-accent:active {
  background: var(--primary-red-active);
  transform: translateY(1px);
}

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

.btn-full {
  width: 100%;
}

@media (max-width: 768px) {
  .btn-full-mobile {
    width: 100%;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 40, 104, 0.85) 0%, rgba(0, 40, 104, 0.7) 100%);
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 40px 20px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-content .btn {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero .btn-primary {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 40, 104, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 40, 104, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content h1,
  .hero-content p,
  .hero-content .btn {
    animation: none;
    opacity: 1;
  }
  
  .hero .btn-primary {
    animation: none;
  }
}

/* ========================================
   ABOUT SECTION (Brief)
   ======================================== */
.about-brief {
  background: var(--white);
}

.about-brief .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-brief-content h2 {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.about-brief-content p {
  margin-bottom: 20px;
}

.about-brief-content .btn {
  margin-top: 10px;
}

.about-brief-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about-brief .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-brief-image img {
    height: 300px;
  }
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  background: var(--light-gray);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card svg {
  width: 48px;
  height: 48px;
  fill: var(--primary-blue);
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.benefit-card p {
  font-size: 0.95rem;
}

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

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FIND A SHOP CTA SECTION
   ======================================== */
.find-shop-cta {
  background: var(--primary-blue);
  padding: 60px 0;
}

.find-shop-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.find-shop-cta-content h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.find-shop-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.find-shop-cta .btn-accent {
  flex-shrink: 0;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(200, 16, 46, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.6);
  }
}

@media (max-width: 768px) {
  .find-shop-cta .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   EVENTS & NEWS SECTION
   ======================================== */
.events-news {
  background: var(--white);
}

.events-news h2 {
  text-align: center;
  margin-bottom: 50px;
}

.events-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.event-card,
.news-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover,
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.event-card-content,
.news-card-content {
  padding: 25px;
}

.event-date {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.event-card h3,
.news-card h3 {
  margin-bottom: 10px;
}

.event-card p,
.news-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .events-news-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  background: var(--light-gray);
  overflow: hidden;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-content {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
  font-size: 1.25rem;
  color: var(--dark-gray);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-red);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--medium-gray);
}

.testimonial-author-info h4 {
  color: var(--dark-gray);
  margin-bottom: 3px;
}

.testimonial-author-info p {
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.testimonial-nav button:hover {
  background: var(--primary-blue);
}

.testimonial-nav button:hover svg {
  fill: var(--white);
}

.testimonial-nav svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-blue);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--medium-gray);
  cursor: pointer;
  transition: background 0.2s ease;
}

.testimonial-dot.active {
  background: var(--primary-blue);
}

/* ========================================
   CTA SECTION (Join Us)
   ======================================== */
.cta-join {
  background: var(--primary-red);
  position: relative;
  overflow: hidden;
}

.cta-join::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect width="60" height="60" fill="none"/><path d="M30 0L60 30L30 60L0 30z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 60px 60px;
  opacity: 0.5;
}

.cta-join .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-join h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-join p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-join .btn-primary {
  background: var(--white);
  color: var(--primary-red);
}

.cta-join .btn-primary:hover {
  background: var(--light-gray);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter {
  background: var(--white);
}

.newsletter h2 {
  text-align: center;
  margin-bottom: 15px;
}

.newsletter > .container > p {
  text-align: center;
  margin-bottom: 30px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.newsletter-form .form-group {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.newsletter-form-full {
  margin-bottom: 15px;
}

.newsletter-form-full input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.newsletter-form-full input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.newsletter-form .btn {
  width: 100%;
}

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

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-brand img {
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

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

.footer-newsletter h4 {
  margin-bottom: 20px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter-form input {
  padding: 12px 14px;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer-newsletter-form button {
  padding: 12px;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-newsletter-form button:hover {
  background: var(--primary-red-hover);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

.footer-social a:hover {
  background: var(--primary-blue);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

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

.footer-trust {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-trust p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Mobile Footer Accordion */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand img {
    margin: 0 auto 20px;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-links h4::after,
  .footer-contact h4::after {
    content: '+';
    font-size: 1.25rem;
    transition: transform 0.3s ease;
  }
  
  .footer-links h4.active::after,
  .footer-contact h4.active::after {
    transform: rotate(45deg);
  }
  
  .footer-links ul,
  .footer-contact ul {
    display: none;
    padding-top: 15px;
  }
  
  .footer-links ul.open,
  .footer-contact ul.open {
    display: flex;
  }
  
  .footer-newsletter {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ========================================
   PAGE HERO (Generic)
   ======================================== */
.page-hero {
  background: var(--primary-blue);
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 15px;
}

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

/* ========================================
   MISSION & VISION SECTION
   ======================================== */
.mission-vision {
  background: var(--white);
}

.mission-vision .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-vision-content h2 {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.mission-vision-content p {
  margin-bottom: 20px;
}

.mission-vision-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mission-vision .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mission-vision-image img {
    height: 300px;
  }
}

/* ========================================
   HISTORY SECTION
   ======================================== */
.history {
  background: var(--light-gray);
}

.history h2 {
  text-align: center;
  margin-bottom: 40px;
}

.history-content {
  max-width: 800px;
  margin: 0 auto;
}

.history-content > p {
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--primary-blue);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-red);
  border: 3px solid var(--white);
}

.timeline-item h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 0.95rem;
}

/* ========================================
   WHAT WE DO SECTION
   ======================================== */
.what-we-do {
  background: var(--white);
}

.what-we-do h2 {
  text-align: center;
  margin-bottom: 40px;
}

.what-we-do ul {
  max-width: 800px;
  margin: 0 auto;
}

.what-we-do li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.what-we-do li:hover {
  transform: translateX(10px);
}

.what-we-do li svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-red);
  flex-shrink: 0;
  margin-top: 3px;
}

.what-we-do li h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.what-we-do li p {
  font-size: 0.95rem;
}

/* ========================================
   TEAM GRID SECTION
   ======================================== */
.team-grid {
  background: var(--light-gray);
}

.team-grid h2 {
  text-align: center;
  margin-bottom: 50px;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-content {
  padding: 20px;
  text-align: center;
}

.team-card h3 {
  margin-bottom: 5px;
}

.team-card p {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .team-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-cards {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   MEMBERSHIP BENEFITS DETAIL
   ======================================== */
.membership-benefits {
  background: var(--white);
}

.membership-benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

.benefit-detail {
  margin-bottom: 50px;
}

.benefit-detail h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.benefit-detail h3 svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-red);
}

.benefit-detail ul {
  padding-left: 20px;
}

.benefit-detail li {
  margin-bottom: 10px;
  color: var(--medium-gray);
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */
.process-timeline {
  background: var(--light-gray);
}

.process-timeline h2 {
  text-align: center;
  margin-bottom: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: var(--primary-blue);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.process-step p {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-steps::before {
    display: none;
  }
}

/* ========================================
   MEMBERSHIP LEVELS
   ======================================== */
.membership-levels {
  background: var(--white);
}

.membership-levels h2 {
  text-align: center;
  margin-bottom: 50px;
}

.level-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.level-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.level-card.featured {
  border-color: var(--primary-red);
  position: relative;
}

.level-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-red);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.level-card h3 {
  margin-bottom: 15px;
}

.level-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.level-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--medium-gray);
}

.level-card ul {
  margin: 25px 0;
  text-align: left;
}

.level-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.level-card li svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-blue);
  flex-shrink: 0;
}

.level-card .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .level-cards {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  background: var(--light-gray);
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-gray);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary-blue);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 20px;
  font-size: 0.95rem;
}

/* ========================================
   SHOP SEARCH SECTION
   ======================================== */
.shop-search {
  background: var(--white);
}

.shop-search h2 {
  text-align: center;
  margin-bottom: 15px;
}

.shop-search > .container > p {
  text-align: center;
  margin-bottom: 30px;
}

.search-form {
  max-width: 700px;
  margin: 0 auto 40px;
}

.search-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.search-form .form-group {
  position: relative;
}

.search-form input,
.search-form select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background: var(--white);
}

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

.search-form .btn {
  width: 100%;
}

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

/* ========================================
   SHOP LISTINGS
   ======================================== */
.shop-listings {
  background: var(--light-gray);
}

.shop-listings h2 {
  text-align: center;
  margin-bottom: 40px;
}

.shop-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.shop-card {
  background: var(--white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-3px);
}

.shop-card h3 {
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.shop-card .address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.shop-card .address svg {
  width: 16px;
  height: 16px;
  fill: var(--medium-gray);
  flex-shrink: 0;
  margin-top: 3px;
}

.shop-card .phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.shop-card .phone svg {
  width: 16px;
  height: 16px;
  fill: var(--medium-gray);
}

.shop-card .services {
  margin-bottom: 15px;
}

.shop-card .services span {
  display: inline-block;
  background: var(--light-gray);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 5px;
  margin-bottom: 5px;
}

.shop-card .btn-secondary {
  width: 100%;
}

@media (max-width: 768px) {
  .shop-cards {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FOR SHOPS CTA
   ======================================== */
.for-shops-cta {
  background: var(--primary-red);
}

.for-shops-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.for-shops-cta-content h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.for-shops-cta-content p {
  color: rgba(255, 255, 255, 0.9);
}

.for-shops-cta .btn-primary {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .for-shops-cta .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   EVENT LIST
   ======================================== */
.event-list {
  background: var(--white);
}

.event-list h2 {
  text-align: center;
  margin-bottom: 40px;
}

.event-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.event-filter {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--primary-blue);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-blue);
  cursor: pointer;
  transition: all 0.2s ease;
}

.event-filter:hover,
.event-filter.active {
  background: var(--primary-blue);
  color: var(--white);
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.event-card-full {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.event-card-full-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.event-card-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-full-content {
  padding: 25px;
}

.event-card-full .event-date {
  margin-bottom: 15px;
}

.event-card-full h3 {
  margin-bottom: 10px;
}

.event-card-full .location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.event-card-full .location svg {
  width: 16px;
  height: 16px;
  fill: var(--medium-gray);
}

.event-card-full p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .event-cards {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PAST EVENTS GALLERY
   ======================================== */
.past-events {
  background: var(--light-gray);
}

.past-events h2 {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
}

.gallery-item-overlay h4 {
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.gallery-item-overlay p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-form-section {
  background: var(--white);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-gray);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

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

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

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

/* ========================================
   DIRECT CONTACT SECTION
   ======================================== */
.direct-contact {
  background: var(--light-gray);
}

.direct-contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-card svg {
  width: 40px;
  height: 40px;
  fill: var(--primary-blue);
  margin-bottom: 15px;
}

.contact-info-card h3 {
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 0.95rem;
}

.contact-info-card a {
  color: var(--primary-blue);
  font-weight: 500;
}

.contact-map {
  width: 100%;
  height: 350px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ANIMATIONS - Scroll Triggered
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
