/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: #0fb4c3;
  --primary-light: #4dd0e1;
  --primary-dark: #0a7a8a;
  --secondary-color: #ff6b35;
  --secondary-light: #ff8a65;
  --accent-color: #f4f1e8;
  --accent-dark: #e8e2d5;

  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  /* Font Sizes */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;

  /* Font Weights */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Line Heights */
  --lh-tight: 1.25;
  --lh-snug: 1.375;
  --lh-normal: 1.5;
  --lh-relaxed: 1.625;
  --lh-loose: 2;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;

  /* Container */
  --container-max-width: 1200px;
  --container-padding: 1rem;
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-normal);
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-20) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--primary-color);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
}

.section__subtitle {
  font-size: var(--fs-lg);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  line-height: 1;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
}

.btn--primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn--primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.btn--secondary:hover {
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn--outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
  transition: var(--transition-normal);
  border-bottom: 1px solid var(--gray-200);
}

.header.scroll-header {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
}

.nav__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--primary-color);
  line-height: 1;
}

.nav__subtitle {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: 1;
}

.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  padding: var(--space-20) var(--space-6) var(--space-6);
  transition: var(--transition-normal);
  z-index: var(--z-modal);
}

.nav__menu.show-menu {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.nav__item {
  position: relative;
}

.nav__link {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  transition: var(--transition-fast);
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__dropdown-icon {
  font-size: var(--fs-sm);
  transition: var(--transition-fast);
}

.nav__dropdown.show-dropdown .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
  padding-left: var(--space-4);
}

.nav__dropdown.show-dropdown .nav__dropdown-menu {
  max-height: 200px;
  margin-top: var(--space-2);
}

.nav__dropdown-link {
  font-size: var(--fs-base);
  color: var(--gray-600);
  padding: var(--space-2) 0;
  display: block;
  transition: var(--transition-fast);
}

.nav__dropdown-link:hover {
  color: var(--primary-color);
  padding-left: var(--space-2);
}

.nav__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: var(--fs-2xl);
  color: var(--gray-800);
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav__close:hover {
  color: var(--primary-color);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: var(--space-2);
}

.nav__toggle-line {
  width: 25px;
  height: 3px;
  background-color: var(--gray-800);
  transition: var(--transition-fast);
  border-radius: var(--radius-full);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HOME SECTION ===== */
.home {
  padding-top: calc(80px + var(--space-20));
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--white) 100%
  );
}

.home__hero {
  display: grid;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-20);
}

.home__hero-content {
  text-align: center;
}

.home__title {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  color: var(--primary-color);
  margin-bottom: var(--space-6);
  line-height: var(--lh-tight);
}

.home__description {
  font-size: var(--fs-lg);
  color: var(--gray-600);
  margin-bottom: var(--space-8);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

.home__hero-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.home__img {
  width: max-width;
  height: 100%;
  object-fit: cover;
}

.home__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  text-align: center;
  margin-top: var(--space-8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.home__stat {
  padding: var(--space-6);
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.home__stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.home__stat-number {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--primary-color);
  margin-bottom: var(--space-2);
  line-height: 1;
}

.home__stat-text {
  font-size: var(--fs-base);
  color: var(--gray-600);
  font-weight: var(--fw-medium);
}

/* ===== HERO SLIDESHOW ===== */
.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  margin-bottom: var(--space-16);
}

.hero__slideshow {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero__slide.active {
  opacity: 1;
  z-index: 2;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero Content Overlay */
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
  padding: var(--space-6);
}

.hero__content-inner {
  text-align: center;
  max-width: 800px;
  color: var(--white);
  padding: var(--space-4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-6);
  line-height: var(--lh-tight);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__description {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-8);
  line-height: var(--lh-relaxed);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-8);
}

/* Navigation controls removed for cleaner auto-fade experience */

/* Responsive Design for Hero */
@media screen and (max-width: 1024px) {
  .hero__slideshow {
    height: 50vh;
    min-height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .hero__slideshow {
    height: 45vh;
    min-height: 300px;
  }

  .hero__title {
    font-size: var(--fs-4xl);
  }

  .hero__description {
    font-size: var(--fs-base);
  }

  .hero__buttons {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero__content {
    padding: var(--space-4);
  }

  .home__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media screen and (max-width: 480px) {
  .hero__slideshow {
    height: 40vh;
    min-height: 280px;
  }

  .hero__title {
    font-size: var(--fs-3xl);
  }

  .hero__content {
    padding: var(--space-3);
  }

  .hero__buttons {
    gap: var(--space-3);
  }

  .home__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

@media screen and (max-width: 320px) {
  .hero__slideshow {
    height: 35vh;
    min-height: 250px;
  }

  .hero__title {
    font-size: var(--fs-2xl);
  }

  .hero__description {
    font-size: var(--fs-sm);
  }

  .home__stats {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .home__stat {
    padding: var(--space-4);
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: var(--gray-50);
}

.about__content {
  display: grid;
  gap: var(--space-8);
}

.about__card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about__card-image {
  height: 250px;
  overflow: hidden;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about__card:hover .about__img {
  transform: scale(1.05);
}

.about__card-content {
  padding: var(--space-6);
}

.about__card-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-4);
}

.about__card-text {
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
}

/* ===== AMENITIES SECTION ===== */
.amenities {
  background-color: var(--white);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.amenities__item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background-color: var(--gray-50);
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
}

.amenities__item:hover {
  background-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.amenities__icon {
  font-size: var(--fs-5xl);
  margin-bottom: var(--space-4);
  display: block;
}

.amenities__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-3);
}

.amenities__text {
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
}

/* ===== SCHOOLS SECTION ===== */
.schools {
  background-color: var(--gray-50);
}

.schools__content {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

.schools__text {
  text-align: center;
}

.schools__list {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-4);
}

.schools__item {
  background-color: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.schools__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-1);
}

.schools__distance {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

.schools__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.schools__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ===== LOCATION SECTION ===== */
.location {
  background-color: var(--white);
}

.location__content {
  display: grid;
  gap: var(--space-12);
}

.location__highlights {
  display: grid;
  gap: var(--space-8);
}

.location__highlight {
  text-align: center;
  padding: var(--space-6);
  background-color: var(--gray-50);
  border-radius: var(--radius-xl);
}

.location__highlight-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-3);
}

.location__highlight-text {
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
}

.location__map {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
}

.location__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.location__address {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-1);
}

.location__coords {
  font-size: var(--fs-base);
  margin-bottom: var(--space-6);
  opacity: 0.9;
}

/* ===== CALENDAR SECTION ===== */
.calendar {
  background-color: var(--gray-50);
}

.calendar__content {
  max-width: 800px;
  margin: 0 auto;
}

.calendar__notice {
  background-color: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.calendar__notice-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-4);
}

.calendar__notice-text {
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.calendar__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

/* ===== COVENANTS SECTION ===== */
.covenants {
  background-color: var(--white);
}

.covenants__content {
  display: grid;
  gap: var(--space-12);
  max-width: 800px;
  margin: 0 auto;
}

.covenants__card {
  background-color: var(--gray-50);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
}

.covenants__icon {
  font-size: var(--fs-5xl);
  margin-bottom: var(--space-4);
  display: block;
}

.covenants__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-4);
}

.covenants__text {
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.covenants__highlights {
  background-color: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.covenants__highlights-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-4);
}

.covenants__list {
  display: grid;
  gap: var(--space-2);
}

.covenants__item {
  color: var(--gray-600);
  padding-left: var(--space-4);
  position: relative;
}

.covenants__item::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: var(--fw-bold);
}

/* ===== ACR SECTION ===== */
.acr {
  background-color: var(--gray-50);
}

.acr__content {
  max-width: 800px;
  margin: 0 auto;
}

.acr__info {
  display: grid;
  gap: var(--space-8);
}

.acr__card {
  background-color: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.acr__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.acr__icon {
  font-size: var(--fs-5xl);
  margin-bottom: var(--space-4);
  display: block;
}

.acr__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-4);
}

.acr__text {
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

/* ===== ACR FAQ SECTION ===== */
.acr-faq {
  background-color: var(--white);
}

.acr-faq__content {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background-color: var(--gray-50);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq__question:hover {
  background-color: var(--accent-color);
}

.faq__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
}

.faq__icon {
  font-size: var(--fs-xl);
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding: 0 var(--space-6) var(--space-6);
}

.faq__answer p {
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
}

/* ===== HELP SECTION ===== */
.help {
  background-color: var(--gray-50);
}

.help__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.help__card {
  background-color: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.help__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.help__icon {
  font-size: var(--fs-5xl);
  margin-bottom: var(--space-4);
  display: block;
}

.help__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-3);
}

.help__text {
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--white);
}

.contact__content {
  display: grid;
  gap: var(--space-12);
  max-width: 1000px;
  margin: 0 auto;
}

.contact__info {
  display: grid;
  gap: var(--space-6);
}

.contact__method {
  background-color: var(--gray-50);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
}

.contact__icon {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-4);
  display: block;
}

.contact__method-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-2);
}

.contact__method-text {
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
}

.contact__form {
  background-color: var(--gray-50);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
}

.form__group {
  margin-bottom: var(--space-6);
}

.form__label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form__input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-base);
  font-family: inherit;
  color: var(--gray-800);
  background-color: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
}

.form__input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: var(--space-20) 0 var(--space-8);
}

.footer__content {
  display: grid;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer__section {
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.footer__logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--white);
}

.footer__subtitle {
  font-size: var(--fs-base);
  color: var(--gray-400);
}

.footer__description {
  color: var(--gray-300);
  line-height: var(--lh-relaxed);
}

.footer__section-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer__info,
.footer__list {
  display: grid;
  gap: var(--space-2);
}

.footer__text,
.footer__item {
  color: var(--gray-300);
  line-height: var(--lh-relaxed);
}

.footer__link {
  color: var(--gray-300);
  transition: var(--transition-fast);
}

.footer__link:hover {
  color: var(--primary-light);
}

.footer__bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: var(--space-8);
  text-align: center;
}

.footer__entrances {
  margin-bottom: var(--space-6);
}

.footer__entrances-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.footer__entrances-list {
  display: grid;
  gap: var(--space-1);
  font-size: var(--fs-sm);
  color: var(--gray-400);
}

.footer__copyright {
  color: var(--gray-400);
  font-size: var(--fs-sm);
}

.footer__disclaimer {
  margin-top: var(--space-2);
  font-size: var(--fs-xs);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-lg);
}

.scroll-top.show-scroll {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .home__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .calendar__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .amenities__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .help__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  :root {
    --fs-5xl: 3.5rem;
    --fs-6xl: 4rem;
  }

  .container {
    --container-padding: 2rem;
  }

  .section {
    padding: var(--space-24) 0;
  }

  .section__title {
    font-size: var(--fs-5xl);
  }

  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
  }

  .nav__list {
    flex-direction: row;
    gap: var(--space-8);
  }

  .nav__link {
    font-size: var(--fs-base);
    padding: var(--space-2) 0;
  }

  .nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2);
    min-width: 200px;
    z-index: var(--z-dropdown);
  }

  .nav__dropdown-link {
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
  }

  .nav__dropdown-link:hover {
    background-color: var(--gray-50);
    padding-left: var(--space-3);
  }

  .nav__close,
  .nav__toggle {
    display: none;
  }

  .home__hero {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }

  .home__hero-content {
    text-align: left;
  }

  .home__buttons {
    justify-content: flex-start;
  }

  .home__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
  }

  .about__content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-12);
  }

  .about__card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .schools__content {
    grid-template-columns: 1fr 1fr;
  }

  .schools__text {
    text-align: left;
  }

  .location__content {
    grid-template-columns: 2fr 1fr;
  }

  .contact__content {
    grid-template-columns: 1fr 1fr;
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .home__title {
    font-size: var(--fs-6xl);
  }

  .about__content {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .amenities__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .help__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__content {
    grid-template-columns: 2fr repeat(4, 1fr);
    text-align: left;
  }

  .footer__brand {
    align-items: flex-start;
  }

  .footer__section {
    text-align: left;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  :root {
    --container-max-width: 1400px;
  }

  .section {
    padding: var(--space-32) 0;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav__link:focus,
.form__input:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --gray-600: #000000;
    --gray-800: #000000;
  }
}

/* Print styles */
@media print {
  .header,
  .nav__toggle,
  .scroll-top,
  .btn {
    display: none !important;
  }

  .home {
    padding-top: 0;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section__title {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
}
