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

:root {
  --primary-teal: #2A9D8F;
  --accent-gold: #E9C46A;
  --secondary-orange: #F4A261;
  --text-dark: #264653;
  --cta-coral: #E76F51;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

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

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

@media (min-width: 768px) {
  .logo img {
    width: 180px;
  }
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-desktop a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-desktop a[aria-current="page"] {
  color: var(--primary-teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .search-toggle {
    display: block;
  }
}

.search-toggle:hover {
  color: var(--primary-teal);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-block;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  color: var(--primary-teal);
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
}

.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.mobile-menu-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
}

.mobile-menu-nav a:hover {
  color: var(--primary-teal);
}

.mobile-menu-cta {
  margin: 1rem 0;
  text-align: center;
}

/* Search Bar */
.search-bar {
  display: none;
  padding: 0.5rem 1rem;
  background: var(--light-gray);
  border-top: 1px solid #eee;
}

.search-bar.active {
  display: block;
}

.search-bar form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.search-bar input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--primary-teal);
}

.search-bar button {
  padding: 0.75rem 1.5rem;
  background: var(--primary-teal);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.search-bar button:hover {
  background: #238b7f;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--cta-coral);
  color: var(--white);
  border-color: var(--cta-coral);
}

.btn-primary:hover {
  background: #d65d3f;
  border-color: #d65d3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.4);
}

.btn-secondary {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

.btn-secondary:hover {
  background: #d9b25e;
  border-color: #d9b25e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 196, 106, 0.4);
}

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

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

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

.btn-teal:hover {
  background: #238b7f;
  border-color: #238b7f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 157, 143, 0.4);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .hero-content p {
    font-size: 1.35rem;
  }
}

.hero .btn {
  margin: 0.5rem;
}

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

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

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

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.bg-light {
  background: var(--light-gray);
}

.bg-teal {
  background: var(--primary-teal);
  color: var(--white);
}

.bg-teal .section-header h2 {
  color: var(--white);
}

.bg-teal .section-header p {
  color: rgba(255,255,255,0.9);
}

/* ==================== REGION CARDS ==================== */
.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

@media (min-width: 1024px) {
  .region-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.region-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.region-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.region-card:hover img {
  transform: scale(1.1);
}

.region-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
}

.region-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.region-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* ==================== CATEGORY CARDS ==================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

@media (min-width: 1024px) {
  category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
}

.category-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.category-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* ==================== WELCOME SECTION ==================== */
.welcome-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .welcome-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.welcome-content h2 {
  margin-bottom: 1.5rem;
}

.welcome-content p {
  color: var(--medium-gray);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.welcome-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.welcome-image img {
  width: 100%;
  height: auto;
}

/* ==================== FEATURED CAMPGROUNDS ==================== */
.featured-grid {
  display: grid;
  gap: 2rem;
}

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

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

.campground-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.campground-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.campground-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.campground-card:hover .campground-card-image img {
  transform: scale(1.05);
}

.campground-card-content {
  padding: 1.5rem;
}

.campground-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.campground-card-location {
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.campground-card-description {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.campground-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.amenity-tag {
  background: var(--light-gray);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ==================== DIRECTORY PROMO ==================== */
.directory-promo {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .directory-promo {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.directory-promo-content h2 {
  margin-bottom: 1rem;
}

.directory-promo-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.directory-promo-image {
  text-align: center;
}

.directory-promo-image img {
  max-width: 300px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

.footer-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

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

/* Email Signup */
.email-signup {
  margin-bottom: 1.5rem;
}

.email-signup form {
  display: flex;
  gap: 0.5rem;
}

.email-signup input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
}

.email-signup button {
  padding: 0.6rem 1rem;
  background: var(--primary-teal);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.email-signup button:hover {
  background: #238b7f;
}

.social-links {
  display: flex;
  gap: 1rem;
}

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

.social-links a:hover {
  background: var(--primary-teal);
  transform: scale(1.1);
}

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

.footer-contact {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.footer-contact a {
  color: var(--accent-gold);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

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

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

.footer-badge {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  background: linear-gradient(135deg, var(--primary-teal), var(--text-dark));
  color: var(--white);
  padding: 8rem 0 4rem;
  margin-top: 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3rem;
  }
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== SEARCH & FILTERS ==================== */
.search-filter-section {
  background: var(--light-gray);
  padding: 2rem 0;
}

.search-filter-form {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .search-filter-form {
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
  }
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
}

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

/* ==================== PARKS LIST ==================== */
.parks-grid {
  display: grid;
  gap: 2rem;
}

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

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

/* ==================== REGIONS PAGE ==================== */
.region-hero {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .region-hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.region-hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.region-hero-content h2 {
  margin-bottom: 1rem;
}

.region-hero-content p {
  color: var(--medium-gray);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.region-section {
  padding: 3rem 0;
  border-top: 1px solid #eee;
}

.region-section h2 {
  margin-bottom: 1.5rem;
}

/* ==================== ABOUT PAGE ==================== */
.about-section {
  padding: 3rem 0;
}

.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--medium-gray);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Why Choose Us */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

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

.testimonial-item {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.testimonial-quote {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-teal);
}

.testimonial-location {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

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

.testimonial-nav button:hover {
  background: var(--primary-teal);
  color: var(--white);
}

.testimonial-nav button svg {
  width: 20px;
  height: 20px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

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

.form-group-full {
  margin-bottom: 1rem;
}

.form-group-full label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group-full input,
.form-group-full textarea,
.form-group-full select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group-full input:focus,
.form-group-full textarea:focus,
.form-group-full select:focus {
  outline: none;
  border-color: var(--primary-teal);
}

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

.contact-info h3 {
  margin-bottom: 1.5rem;
}

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

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.contact-info-text a {
  color: var(--primary-teal);
}

.contact-map {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}

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

/* ==================== DIRECTORY PAGE ==================== */
.directory-hero {
  display: grid;
  gap: 3rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .directory-hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.directory-cover {
  text-align: center;
}

.directory-cover img {
  max-width: 280px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.directory-content h2 {
  margin-bottom: 1rem;
}

.directory-content > p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.directory-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.directory-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.directory-benefits li svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ==================== ACCESSIBILITY ==================== */
:focus-visible {
  outline: 2px solid var(--primary-teal);
  outline-offset: 2px;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==================== MOBILE OVERRIDES ==================== */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show-mobile-only {
    display: none !important;
  }
}
