:root {
  --surface: #f7f9fb;
  --surface-dim: #d8dadc;
  --surface-bright: #f7f9fb;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f2f4f6;
  --surface-container: #eceef0;
  --surface-container-high: #e6e8ea;
  --surface-container-highest: #e0e3e5;
  --on-surface: #191c1e;
  --on-surface-variant: #2c3135;
  --inverse-surface: #2d3133;
  --inverse-on-surface: #eff1f3;
  --outline: #727781;
  --outline-variant: #c2c6d1;
  --surface-tint: #2a609e;
  --primary: #003768;
  --on-primary: #ffffff;
  --primary-container: #104e8b;
  --on-primary-container: #96c0ff;
  --inverse-primary: #a5c8ff;
  --secondary: #346b08;
  --on-secondary: #ffffff;
  --secondary-container: #b1f183;
  --on-secondary-container: #386f0e;
  --tertiary: #4300a0;
  --on-tertiary: #ffffff;
  --tertiary-container: #5b22c5;
  --on-tertiary-container: #c9b2ff;
  --error: #ba1a1a;
  --on-error: #ffffff;
  --error-container: #ffdad6;
  --on-error-container: #93000a;
  --primary-fixed: #d4e3ff;
  --primary-fixed-dim: #a5c8ff;
  --on-primary-fixed: #001c3a;
  --on-primary-fixed-variant: #014784;
  --secondary-fixed: #b4f485;
  --secondary-fixed-dim: #99d76c;
  --on-secondary-fixed: #0a2000;
  --on-secondary-fixed-variant: #245100;
  --tertiary-fixed: #e9ddff;
  --tertiary-fixed-dim: #d0bcff;
  --on-tertiary-fixed: #23005c;
  --on-tertiary-fixed-variant: #5516be;
  --background: #f7f9fb;
  --on-background: #191c1e;
  --amber: #92400e;
  --amber-container: rgba(254, 200, 140, 0.45);

  --font-heading: 'Lexend', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --spacing-base: 8px;
  --spacing-xs: 4px;
  --spacing-sm: 12px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  --gutter: 20px;
  --margin-mobile: 16px;
  --margin-desktop: 48px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--on-surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: max(884px, 100dvh);
}

h1, h2, h3, h4, h5, h6, .heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: inherit; /* Allow sections to define their own heading colors */
}

h1:not([class*="text-"]), h2:not([class*="text-"]), .heading {
  color: var(--primary);
}

.bg-primary h1, .bg-primary h2, .bg-primary h3, 
.venue h2, .hero-content h1 {
  color: white;
}

.heading-xl {
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.heading-lg {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

.heading-md {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
}

.label-bold {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
}

/* Utility: Hide Scrollbar */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Global Form Focus Utility */
/* Utility: Backgrounds */
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-container { background-color: var(--primary-container) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-surface { background-color: var(--surface) !important; }
.bg-surface-container { background-color: var(--surface-container) !important; }

.form-input-focus:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 55, 104, 0.1);
}



.container {
  width: 100%;
  padding-left: var(--margin-mobile);
  padding-right: var(--margin-mobile);
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--margin-desktop);
    padding-right: var(--margin-desktop);
  }
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 55, 104, 0.08);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

@media (min-width: 992px) {
  .header-inner {
    height: 84px;
  }
}

.header-left, .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-desktop { display: none; }
.logo-mobile { display: block; }
.header-right .btn-primary { display: none; }

@media (min-width: 992px) {
  .logo-desktop { display: block; }
  .logo-mobile { display: none; }
  .header-right .btn-primary { display: inline-flex; }
  .header-left #menu-toggle { display: none; }
}

.header-logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

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

/* Desktop Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 992px) {
  .desktop-nav { display: flex; }
}

.desktop-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--on-surface-variant);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 0;
}

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

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
  border-radius: var(--radius-full);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.desktop-nav a.active {
  color: var(--primary);
}

/* On mobile, hide desktop nav and full register button */
.header-end nav,
.header-end .btn-primary {
  display: none;
}

/* Mobile compact register pill */
.btn-register-mobile {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-container);
  color: var(--on-primary);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-register-mobile:active {
  opacity: 0.85;
}

@media (min-width: 992px) {
  .desktop-nav { display: flex; }
  .header-right .btn-primary { display: inline-flex; }
}

@media (max-width: 991px) {
  .header-right .btn-primary { display: none; }
  .btn-register-mobile { display: none; } /* Removed as requested */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

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

.btn-primary {
  background-color: var(--primary-container);
  color: var(--on-primary);
}

.btn-secondary {
  background-color: var(--secondary-fixed);
  color: var(--on-secondary-fixed);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-outline {
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--on-primary);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: min(80vh, 750px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideshow 18s infinite;
}

.hero-bg img:nth-child(1) { animation-delay: 0s; }
.hero-bg img:nth-child(2) { animation-delay: 6s; }
.hero-bg img:nth-child(3) { animation-delay: 12s; }

@keyframes slideshow {
  0% { opacity: 0; transform: scale(1.05); }
  5% { opacity: 1; transform: scale(1); }
  33% { opacity: 1; transform: scale(1); }
  38% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.05); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary), rgba(0,55,104,0.4), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: var(--spacing-xl);
}

.hero-logo {
  height: 48px;
  margin-bottom: var(--spacing-mobile);
}

.hero-title {
  color: var(--on-primary);
  margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
  color: var(--on-primary);
  margin-bottom: var(--spacing-md);
  max-width: 450px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* Page Hero (Standard for subpages) */
.page-hero {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary); /* Solid Brand Color Fallback */
  color: white;
  text-align: center;
  z-index: 1;
}

@media (min-width: 768px) {
  .page-hero {
    height: 400px;
  }
}

.page-hero-bg, .hero-bg-2, .hero-bg-3 {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero-bg img, .hero-bg-2 img, .hero-bg-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  display: block;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 55, 104, 0.2), rgba(0, 55, 104, 0.8));
}

.page-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 var(--margin-mobile);
  max-width: 800px;
}

/* Intro Section */
.intro {
  padding: var(--spacing-xl) 0;
  background-color: var(--surface);
  text-align: center;
}

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

.intro-eyebrow {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.intro-title {
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.intro-text {
  color: var(--on-surface-variant);
}

/* Venue Section */
.venue {
  padding: var(--spacing-xl) 0;
  background-color: var(--primary-container);
  color: var(--on-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.venue-bg-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.venue-badge {
  background-color: var(--secondary);
  color: var(--on-primary);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  font-size: 12px;
}

.venue-quote {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  margin-top: var(--spacing-lg);
}

/* 5v5 Section */
.format {
  padding: var(--spacing-xl) 0;
  background-color: var(--surface-container-lowest);
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .format-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.format-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.format-list {
  list-style: none;
  margin-top: var(--spacing-md);
}

.format-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.format-list .icon {
  color: var(--secondary);
}

/* Values Bento */
.values {
  padding: var(--spacing-xl) 0;
  background-color: var(--surface-container-low);
}

.values-title {
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--spacing-lg);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-card {
  padding: var(--spacing-md);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.bento-card-1 {
  background-color: rgba(212, 227, 255, 0.3); /* primary-fixed */
}
.bento-card-1 .bento-icon { background-color: var(--primary-container); color: var(--on-primary); }
.bento-card-1 .heading-md { color: var(--primary); }

.bento-card-2 {
  background-color: rgba(177, 241, 131, 0.3); /* secondary-container */
}
.bento-card-2 .bento-icon { background-color: var(--secondary); color: var(--on-primary); }
.bento-card-2 .heading-md { color: var(--secondary); }

.bento-card-3 {
  background-color: rgba(233, 221, 255, 0.3); /* tertiary-fixed */
  grid-column: span 2;
}
@media (min-width: 768px) { .bento-card-3 { grid-column: span 1; } }
.bento-card-3 .bento-icon { background-color: var(--tertiary); color: var(--on-primary); }
.bento-card-3 .heading-md { color: var(--tertiary); }

.bento-card-4 {
  background-color: var(--surface-container-lowest);
  border: 1px solid var(--surface-container);
}
.bento-card-4 .bento-icon { background-color: var(--on-surface-variant); color: var(--on-primary); }
.bento-card-4 .heading-md { color: var(--primary); }

.bento-card-5 {
  background-color: var(--primary-container);
  color: var(--on-primary);
}
.bento-card-5 .bento-icon { background-color: var(--surface-container-lowest); color: var(--primary); }
.bento-card-5 p { color: var(--on-primary-container); }

.bento-card-6 {
  background-color: var(--amber-container);
  grid-column: span 2;
}
@media (min-width: 768px) { .bento-card-6 { grid-column: span 1; } }
.bento-card-6 .bento-icon { background-color: var(--amber); color: var(--on-primary); }
.bento-card-6 .heading-md { color: var(--amber); }

/* Featured */
.featured {
  padding: var(--spacing-xl) 0;
  background-color: var(--surface-container-lowest);
}

.featured-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: var(--surface-container-lowest);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--surface-container);
}

.featured-img-wrapper {
  height: 250px;
  position: relative;
}

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

.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--secondary-container);
  color: var(--on-secondary-container);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.featured-body {
  padding: var(--spacing-md);
}

.featured-body .heading-md {
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.featured-body p {
  color: var(--on-surface-variant);
  margin-bottom: var(--spacing-md);
}

.btn-full {
  width: 100%;
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-full:active, .btn-full:hover {
  background-color: var(--primary);
  color: var(--on-primary);
}

/* Footer */
.footer {
  background-color: var(--surface-container-low);
  padding: var(--spacing-xl) var(--margin-mobile);
  margin-bottom: 80px; /* space for bottom nav */
  border-top: 1px solid var(--surface-container);
  color: var(--on-surface-variant);
}

@media (min-width: 768px) {
  .footer {
    padding: var(--spacing-xl) var(--margin-desktop);
    margin-bottom: 0;
  }
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--on-surface);
  margin-bottom: var(--spacing-md);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.footer-links a {
  color: var(--on-surface-variant);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

/* Bottom Nav */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--surface-container);
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-around;
  padding: 12px 8px;
  z-index: 50;
  box-shadow: 0 -4px 16px rgba(16,78,139,0.1);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--on-surface-variant);
  text-decoration: none;
  flex: 1;
  transition: all 0.2s ease;
  position: relative;
}

.nav-item .material-symbols-outlined {
  font-size: 24px;
  transition: transform 0.2s ease;
}

.nav-item:active .material-symbols-outlined {
  transform: scale(0.85);
}

.nav-item.active {
  color: var(--primary);
}

.nav-register-icon {
  background: var(--primary);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
  box-shadow: 0 8px 20px rgba(0, 55, 104, 0.3);
  border: 4px solid white;
  transition: all 0.2s ease;
}

.nav-item:hover .nav-register-icon {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 55, 104, 0.4);
}

@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}

@media (min-width: 992px) {
  .site-header nav { display: flex; gap: 32px; align-items: center; font-weight: 600; }
  .site-header nav a { color: var(--on-surface-variant); text-decoration: none; transition: color 0.2s; }
  .site-header nav a:hover, .site-header nav a.active { color: var(--primary); }
}

/* Menu Button Styles */
#menu-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: opacity 0.2s ease;
}

@media (min-width: 992px) {
  #menu-toggle {
    display: none !important;
  }
}

#menu-toggle:hover {
  opacity: 0.7;
}

#menu-toggle:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Navigation Drawer Overlay */
#drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  justify-content: flex-start;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, visibility 0.4s;
  pointer-events: none;
  visibility: hidden;
}

#drawer.open {
  display: flex;
  background: rgba(0, 55, 104, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
  visibility: visible;
}

/* Drawer Panel */
.drawer-panel {
  background: var(--surface-container-lowest);
  height: 100%;
  width: 320px;
  max-width: 85vw;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transform: translateX(-100%); /* Start off-screen to the left */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  background: var(--surface-container-lowest);
}

.drawer-brand img {
  height: 48px;
  width: auto;
}

.drawer-close {
  background: var(--surface-container);
  border: none;
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.drawer-close:hover {
  background: var(--primary);
  color: white;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 0;
}

.drawer-nav-section {
  padding: 16px 20px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  font-family: var(--font-heading);
}

.drawer-nav a {
  color: #1f2937;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.15s, color 0.15s;
  font-family: var(--font-heading);
  border-radius: 0;
}

.drawer-nav a:hover {
  background: #f3f4f6;
  color: var(--primary);
}

.drawer-nav a .material-symbols-outlined {
  font-size: 20px;
  color: #6b7280;
  transition: color 0.15s;
  flex-shrink: 0;
}

.drawer-nav a:hover .material-symbols-outlined {
  color: var(--primary);
}

.drawer-nav-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 8px 0;
}

.drawer-cta {
  padding: 16px 20px 24px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.drawer-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 14px 20px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.drawer-cta a:hover {
  background: var(--primary-container);
}

.drawer-cta a:active {
  transform: scale(0.98);
}

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

/* Focus visible styles - only for form elements */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* WhatsApp floating widget */
.whatsapp-widget {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-widget:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}
@media (min-width: 1024px) {
  .whatsapp-widget {
    bottom: 32px;
    right: 32px;
  }
}
