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

:root {
  --navy: #0f2b4a;
  --blue: #088eff;
  --blue-2: #269cff;
  --blue-3: #45aaff;
  --blue-4: #64b8ff;
  --teal: #14b8a6;
  --teal-light: #5eead4;
  --dark-text: #333333;
  --body-text: #555555;
  --text-mid: #6b7280;
  --text-light: #9ca3af;
  --light-bg: #f5f5f5;
  --bg-warm: #faf8f5;
  --bg-cool: #f0f4f8;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
  --radius: 4px;
  --radius-lg: 6px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--body-text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Raleway', 'Lato', sans-serif; color: var(--dark-text); }

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: #0670cc; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1170px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 20px; }

/* ==================== TOP BAR ==================== */
.top-bar {
  background: #333333;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-bar a { color: #ffffff; font-weight: 700; }
.top-bar a:hover { color: var(--blue-4); }
.top-bar-right { display: flex; gap: 20px; align-items: center; }

/* ==================== HEADER ==================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1000;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

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

.logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.logo .dot { display: none; }
.logo-sub {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--body-text);
  display: block;
  margin-top: -2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}
.nav-links a {
  color: var(--dark-text);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 10px 14px;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
}
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  margin-left: 8px;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #0670cc !important;
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-text);
  padding: 8px;
  line-height: 1;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--blue);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 100%);
}
.hero-bg::after { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero h1 .highlight {
  color: var(--white);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 0; }
.hero-stats { display: none; }
.hero-visual { display: none; }

.hero-page {
  min-height: auto;
  padding: 60px 0 70px;
}
.hero-page h1 { font-size: 2.2rem; }
.hero-page .hero-breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.hero-page .hero-breadcrumb a { color: rgba(255,255,255,0.9); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
}

.btn-glow {
  background: var(--blue);
  color: var(--white);
}
.btn-glow:hover {
  color: var(--white);
  background: #0670cc;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
  color: var(--white);
}

.btn-dark {
  background: var(--dark-text);
  color: var(--white);
}
.btn-dark:hover {
  background: #222222;
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}
.btn-white:hover {
  color: #0670cc;
  background: #f0f0f0;
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 0.95rem; }

/* ==================== SECTIONS ==================== */
section { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-label::before { display: none; }

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--body-text);
  max-width: 600px;
  line-height: 1.7;
}

.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.bg-warm { background: var(--light-bg); }
.bg-cool { background: var(--light-bg); }
.bg-navy { background: var(--blue); color: var(--white); }
.bg-navy .section-label { color: rgba(255,255,255,0.8); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-subtitle { color: rgba(255,255,255,0.8); }

/* ==================== INFO BOXES (4-column) ==================== */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.info-box {
  padding: 30px 20px;
  text-align: center;
  color: var(--white);
}
.info-box:nth-child(1) { background: var(--blue); }
.info-box:nth-child(2) { background: var(--blue-2); }
.info-box:nth-child(3) { background: var(--blue-3); }
.info-box:nth-child(4) { background: var(--blue-4); }
.info-box i {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.info-box h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.info-box p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* ==================== CARDS ==================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.card::before { display: none; }
.card:hover {
  box-shadow: var(--shadow);
  transform: none;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: rgba(8,142,255,0.08);
  color: var(--blue);
}

.card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-text);
}
.card p {
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.7;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  margin-top: 12px;
}
.card-link:hover { gap: 8px; }

/* ==================== GLASS CARD (simplified) ==================== */
.glass-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background var(--transition);
}
.glass-card:hover {
  background: rgba(255,255,255,0.15);
}
.glass-card h3 { color: var(--white); }
.glass-card p { color: rgba(255,255,255,0.8); }

/* ==================== STATS ==================== */
.stats-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number .teal { color: var(--blue); }
.stat-label {
  font-size: 0.85rem;
  color: var(--body-text);
  font-weight: 400;
}

/* ==================== CONTACT CARDS (home page) ==================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-card i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.contact-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.6;
}
.contact-card a {
  color: var(--blue);
  font-weight: 700;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-section { overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testimonial-stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  color: var(--dark-text);
  font-size: 0.85rem;
}
.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: center;
}
.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark-text);
  transition: all var(--transition);
}
.testimonial-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--body-text);
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ==================== LOCATIONS ==================== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.location-card:hover {
  box-shadow: var(--shadow);
}
.location-card-img {
  height: 180px;
  background: var(--blue);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.location-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 0;
}
.location-card-img .city-name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.location-card-img .state-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 3px 12px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}
.location-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #28a745;
  color: var(--white);
  padding: 3px 12px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}
.location-card-body { padding: 20px; }
.location-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.location-detail {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--body-text);
  align-items: flex-start;
}
.location-detail .icon { flex-shrink: 0; width: 18px; text-align: center; }
.location-card-footer {
  padding: 0 20px 20px;
}

/* ==================== FAQ ==================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
  font-family: inherit;
  line-height: 1.4;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-left: 16px;
  transition: all var(--transition);
  color: var(--body-text);
}
.faq-item.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 18px;
  color: var(--body-text);
  line-height: 1.8;
  font-size: 0.9rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}
.cta-section::before { display: none; }
.cta-section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 28px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== BENEFITS ==================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.benefit-item:hover {
  box-shadow: var(--shadow-sm);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(8,142,255,0.08);
}
.benefit-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--dark-text);
}
.benefit-item p {
  font-size: 0.85rem;
  color: var(--body-text);
}

.positions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.position-tag {
  background: rgba(8,142,255,0.06);
  color: var(--blue);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(8,142,255,0.15);
  transition: all var(--transition);
}
.position-tag:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ==================== VALUES ==================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.value-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark-text);
}
.value-card p {
  font-size: 0.9rem;
  color: var(--body-text);
}

/* ==================== CONTACT FORM ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--dark-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--dark-text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(8,142,255,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-text);
}
.contact-info-block p {
  color: var(--body-text);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

/* ==================== RESOURCE CARDS ==================== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow var(--transition);
}
.resource-card:hover {
  box-shadow: var(--shadow);
}
.resource-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-text);
}
.resource-card p {
  font-size: 0.85rem;
  color: var(--body-text);
}

/* ==================== LOCATION PAGE ==================== */
.location-hero-map {
  height: 280px;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.location-hero-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.info-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.info-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 16px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--body-text);
}
.info-row:last-child { border-bottom: none; }
.info-row strong { color: var(--dark-text); }

/* ==================== AMENITY TAGS ==================== */
.amenity-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--body-text);
}
.amenity-tag i { color: var(--blue); }

/* ==================== FOOTER ==================== */
.site-footer {
  background: #333333;
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 12px;
  opacity: 0.8;
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col-locations ul { columns: 2; column-gap: 24px; }
.footer-col-locations li { break-inside: avoid; white-space: nowrap; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: #ffffff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #ffffff; }

/* ==================== SERVICE AREA ==================== */
.service-area { background: var(--light-bg); }
.service-area-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-top: 32px; }
.service-area-card h3 { font-size: 1.1rem; color: var(--blue); margin-bottom: 12px; }
.service-area-card p { font-size: 0.95rem; color: var(--body-text); line-height: 1.8; }
@media (max-width: 768px) { .service-area-grid { grid-template-columns: 1fr; } }

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.15s; }
.reveal-delay-3 { transition-delay: 0.2s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .info-boxes { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 12px; }
  .mobile-toggle { display: block; z-index: 1001; }
  .top-bar { display: none; }

  .hero { min-height: auto; padding: 50px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-page h1 { font-size: 1.6rem; }

  section { padding: 40px 0; }
  .section-title { font-size: 1.5rem; }

  .card-grid, .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; }
  .info-boxes { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; margin-top: -24px; padding: 24px; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .location-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 280px; }

  .cta-section { padding: 36px 20px; }
  .cta-section h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .info-boxes { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px; }
  .stat-number { font-size: 1.8rem; }
}
