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

:root {
  --primary-dark: #080f1d;
  --primary-mid: #0f1c3f;
  --primary-light: #16295c;
  --accent-gold: #c5a880;
  --accent-gold-hover: #e5cda8;
  --accent-teal: #0f766e;
  --accent-teal-hover: #14b8a6;
  --bg-light: #f8fafc;
  --surface-light: #ffffff;
  --text-dark: #0f172a;
  --text-light: #ffffff;
  --text-muted: #64748b;
  --text-muted-light: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-light: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(197, 168, 128, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-teal {
  background-color: var(--accent-teal);
  color: var(--text-light);
}

.btn-teal:hover {
  background-color: var(--accent-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

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

.btn-outline-dark:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

.section {
  padding: 8rem 0;
}

.section-dark {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-dark .section-subtitle {
  color: var(--text-muted-light);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(12px);
  background-color: rgba(8, 15, 29, 0.75);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  color: var(--accent-gold);
}

.logo span {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-gold);
}

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

.nav-link.active {
  color: var(--accent-gold);
}

.nav-link.active::after {
  width: 100%;
}

.navbar-cta .btn {
  padding: 0.65rem 1.75rem;
  font-size: 0.9rem;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-logo {
  display: none !important;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 70% !important;
  min-width: 0 !important;
  height: 100vh !important;
  transform: translateX(100%);
  background-color: var(--surface-light);
  z-index: 1002;
  box-shadow: var(--shadow-lg);
  padding: 3rem 2rem;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  transition: var(--transition-smooth);
}

.mobile-menu-drawer.active {
  transform: translateX(0);
}

.mobile-menu-header {
  width: 100% !important;
  display: flex !important;
  justify-content: flex-end !important;
  margin-bottom: 2rem !important;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
  color: var(--accent-gold);
}

.mobile-nav-list {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  align-items: center !important;
  width: 100% !important;
}

.mobile-nav-link {
  font-family: var(--font-headings) !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: var(--primary-dark) !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--accent-gold) !important;
}

.mobile-menu-drawer .btn {
  margin-top: 3rem !important;
  align-self: center !important;
  width: 80% !important;
  max-width: 250px !important;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 15, 29, 0.95) 0%, rgba(15, 28, 63, 0.8) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: var(--accent-gold);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted-light);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(197, 168, 128, 0.15);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted-light);
}

.trusted-section {
  padding: 3rem 0;
  background-color: var(--surface-light);
  border-bottom: 1px solid var(--border-color-light);
}

.trusted-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trusted-wrap p {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.trusted-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 3rem;
  flex-wrap: wrap;
}

.trusted-logo {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.trusted-logo:hover {
  opacity: 1;
  color: var(--primary-dark);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-image {
  position: relative;
}

.about-image-inner {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 4px solid var(--surface-light);
}

.about-floating-box {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-width: 260px;
}

.about-floating-box h4 {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.about-floating-box p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

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

.about-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.about-feature-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.category-card {
  background-color: var(--surface-light);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 168, 128, 0.4);
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: rgba(15, 118, 110, 0.08);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
  background-color: var(--accent-teal);
  color: var(--text-light);
}

.category-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.category-link {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.category-link:hover {
  color: var(--accent-teal-hover);
}

.why-card {
  background-color: var(--surface-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  display: flex;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(197, 168, 128, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.why-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.roadmap-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.roadmap-timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: rgba(255, 255, 255, 0.15);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.roadmap-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
  margin-bottom: 2rem;
}

.roadmap-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.roadmap-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.roadmap-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  border: 4px solid var(--primary-dark);
  top: 2.5rem;
  z-index: 2;
}

.roadmap-item:nth-child(odd) .roadmap-marker {
  right: -12px;
}

.roadmap-item:nth-child(even) .roadmap-marker {
  left: -12px;
}

.roadmap-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.roadmap-card:hover {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

.roadmap-step {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.roadmap-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.roadmap-card p {
  color: var(--text-muted-light);
  font-size: 0.95rem;
}

.showcase-card {
  background-color: var(--surface-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  transition: var(--transition-smooth);
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.showcase-image-box {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.showcase-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--primary-dark);
  color: var(--accent-gold);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.showcase-info {
  padding: 2rem;
}

.showcase-info h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.showcase-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.showcase-metrics {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color-light);
  padding-top: 1.25rem;
}

.showcase-metric {
  text-align: center;
}

.showcase-metric span {
  display: block;
}

.showcase-metric-val {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.showcase-metric-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.insight-card {
  background-color: var(--surface-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.insight-img-box {
  height: 200px;
}

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

.insight-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.insight-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.insight-body h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.insight-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.insight-link {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.insight-link:hover {
  color: var(--accent-gold);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  opacity: 0.3;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-name {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.testimonial-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted-light);
}

.newsletter-box {
  background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary-dark) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4.5rem 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.newsletter-box p {
  color: var(--text-muted-light);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.modern-form {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-glow);
}

.form-control::placeholder {
  color: transparent;
}

.form-label {
  position: absolute;
  left: 1.25rem;
  top: 1.1rem;
  color: var(--text-muted-light);
  font-size: 1rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: -0.65rem;
  left: 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  background-color: var(--primary-dark);
  padding: 0 0.5rem;
}

.light-form .form-control {
  background-color: var(--surface-light);
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--text-dark);
}

.light-form .form-control:focus {
  border-color: var(--accent-teal);
  background-color: var(--surface-light);
  box-shadow: 0 0 15px rgba(15, 118, 110, 0.1);
}

.light-form .form-label {
  color: var(--text-muted);
}

.light-form .form-control:focus ~ .form-label,
.light-form .form-control:not(:placeholder-shown) ~ .form-label {
  color: var(--accent-teal);
  background-color: var(--bg-light);
}

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

textarea.form-control ~ .form-label {
  top: 1.1rem;
}

.form-submit-btn {
  width: 100%;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
}

.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  color: var(--text-light);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 15, 29, 0.96) 0%, rgba(15, 118, 110, 0.8) 100%);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-container p {
  font-size: 1.25rem;
  color: var(--text-muted-light);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-info p {
  color: var(--text-muted-light);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-light);
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: var(--text-muted-light);
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-newsletter p {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

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

.footer-newsletter-input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.footer-newsletter-input:focus {
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-newsletter-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  border: none;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-newsletter-btn:hover {
  background-color: var(--accent-gold-hover);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copyright {
  color: var(--text-muted-light);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-link {
  color: var(--text-muted-light);
  font-size: 0.85rem;
}

.footer-bottom-link:hover {
  color: var(--accent-gold);
}

.footer-disclaimer {
  width: 100%;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: var(--text-muted-light);
  text-align: justify;
  line-height: 1.5;
}

.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 12rem 0 8rem 0;
  color: var(--text-light);
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 15, 29, 0.95) 0%, rgba(8, 15, 29, 0.8) 100%);
  z-index: 1;
}

.page-hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--text-muted-light);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.guide-category-card {
  background-color: var(--surface-light);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  text-align: center;
  transition: var(--transition-smooth);
}

.guide-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.guide-category-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.08);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition-smooth);
}

.guide-category-card:hover .guide-category-icon {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.guide-category-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.guide-category-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.guide-category-link {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.guide-category-link:hover {
  color: var(--accent-gold-hover);
}

.guide-featured-card {
  background-color: var(--surface-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 4rem;
}

.guide-featured-img {
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

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

.guide-featured-content {
  padding: 4rem;
}

.guide-featured-badge {
  display: inline-block;
  background-color: rgba(15, 118, 110, 0.08);
  color: var(--accent-teal);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.guide-featured-content h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.guide-featured-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--border-color-light);
  top: 0;
  bottom: 0;
  left: 30px;
}

.timeline-node {
  position: relative;
  padding-left: 80px;
  margin-bottom: 4rem;
}

.timeline-dot {
  position: absolute;
  left: 17px;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--surface-light);
  border: 4px solid var(--accent-gold);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.timeline-node-card {
  background-color: var(--surface-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  transition: var(--transition-smooth);
}

.timeline-node-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.timeline-number {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-node-card h3 {
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.timeline-node-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--surface-light);
  border-radius: 16px;
  border: 1px solid var(--border-color-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-item[open] {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--transition-smooth);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.faq-answer {
  padding: 0 2rem 2.0rem 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
  border-top-color: var(--border-color-light);
  padding-top: 1.25rem;
}

.strategies-dashboard {
  background-color: var(--primary-dark);
  border-radius: 28px;
  padding: 4rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  color: var(--text-light);
  margin-bottom: 6rem;
}

.dashboard-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.dashboard-heading h3 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.dashboard-heading p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.dashboard-badge {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.dashboard-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dashboard-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.chart-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chart-bar-info {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
}

.chart-bar-label {
  color: var(--text-light);
}

.chart-bar-value {
  color: var(--accent-gold);
}

.chart-bar-outer {
  height: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.chart-bar-inner {
  height: 100%;
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-teal {
  background-color: var(--accent-teal);
  width: 55%;
}

.bar-gold {
  background-color: var(--accent-gold);
  width: 30%;
}

.bar-emerald {
  background-color: #10b981;
  width: 15%;
}

.dashboard-legend {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-teal { background-color: var(--accent-teal); }
.dot-gold { background-color: var(--accent-gold); }
.dot-emerald { background-color: #10b981; }

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.dashboard-stat-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 16px;
}

.dashboard-stat-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted-light);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.dashboard-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: block;
}

.dashboard-stat-trend {
  font-size: 0.8rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dashboard-stat-trend.down {
  color: #ef4444;
}

.allocation-card {
  background-color: var(--surface-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  transition: var(--transition-smooth);
}

.allocation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.allocation-header {
  padding: 2.5rem;
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.allocation-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.allocation-header p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.allocation-body {
  padding: 2.5rem;
}

.allocation-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color-light);
}

.allocation-item:last-child {
  border-bottom: none;
}

.allocation-name {
  font-weight: 600;
  color: var(--primary-dark);
}

.allocation-pct {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--accent-teal);
}

.risk-slider-container {
  margin-top: 2rem;
}

.risk-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.risk-bar {
  height: 8px;
  background-color: #e2e8f0;
  border-radius: 4px;
  position: relative;
}

.risk-fill {
  height: 100%;
  background-color: var(--accent-gold);
  border-radius: 4px;
}

.risk-fill.conservative { width: 25%; }
.risk-fill.balanced { width: 60%; background-color: var(--accent-teal); }
.risk-fill.aggressive { width: 90%; background-color: #e11d48; }

.case-card {
  background-color: var(--surface-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.case-img {
  height: 220px;
}

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

.case-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-badge {
  align-self: flex-start;
  background-color: rgba(197, 168, 128, 0.1);
  color: var(--accent-gold);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.case-body h3 {
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.case-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.case-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--border-color-light);
  padding-top: 1.5rem;
}

.case-result-val {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent-teal);
  display: block;
}

.case-result-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.resource-card {
  background-color: var(--surface-light);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-teal);
}

.resource-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-color: rgba(15, 118, 110, 0.08);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.resource-card h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.resource-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.resource-action-btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.resource-action-btn:hover {
  background-color: var(--accent-teal);
  transform: translateY(-2px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.video-card {
  background-color: var(--surface-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  transition: var(--transition-smooth);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.video-thumb-container {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.video-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 15, 29, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.video-card:hover .video-play-overlay {
  background-color: rgba(8, 15, 29, 0.6);
}

.video-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.video-card:hover .video-play-btn {
  transform: scale(1.1);
  background-color: var(--accent-gold-hover);
}

.video-info {
  padding: 1.5rem;
}

.video-info span {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent-teal);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.video-info h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  line-height: 1.4;
}

.glossary-wrap {
  background-color: var(--surface-light);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
}

.glossary-letters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.glossary-letter-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color-light);
  background-color: transparent;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.glossary-letter-btn:hover, .glossary-letter-btn.active {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.glossary-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.glossary-item {
  border-bottom: 1px solid var(--border-color-light);
  padding-bottom: 1.5rem;
}

.glossary-item:last-child {
  border-bottom: none;
}

.glossary-term {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.glossary-def {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card-item {
  background-color: var(--surface-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(197, 168, 128, 0.08);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card-details h4 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.contact-card-details p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form-panel {
  background-color: var(--surface-light);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color-light);
}

.contact-form-panel h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.contact-form-panel p {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.hours-section {
  margin-bottom: 6rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--surface-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
}

.hours-table th {
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-family: var(--font-headings);
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 2rem;
}

.hours-table td {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border-color-light);
  color: var(--text-dark);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-status {
  font-weight: 600;
  color: var(--accent-teal);
}

.hours-status.closed {
  color: #ef4444;
}

.map-placeholder {
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  margin-bottom: 6rem;
}

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

.map-overlay-box {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  background-color: var(--surface-light);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 90% !important;
  max-width: 320px;
  border: 1px solid var(--border-color-light);
  text-align: center;
}

.map-overlay-box h4 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.map-overlay-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.map-overlay-link {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-teal);
}

.map-overlay-link:hover {
  color: var(--accent-teal-hover);
}

.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(8, 15, 29, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.custom-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.custom-modal-box {
  background-color: var(--surface-light);
  border-radius: 24px;
  padding: 3.5rem;
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color-light);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.custom-modal-overlay.active .custom-modal-box {
  transform: translateY(0);
}

.custom-modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem auto;
}

.custom-modal-box h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.custom-modal-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.custom-modal-btn {
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.25rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .section {
    padding: 6rem 0;
  }
  .nav-menu, .navbar-cta {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .stats-grid {
    margin-top: 2rem;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .roadmap-timeline::after {
    left: 30px;
  }
  .roadmap-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    text-align: left;
  }
  .roadmap-item:nth-child(odd), .roadmap-item:nth-child(even) {
    left: 0;
  }
  .roadmap-item:nth-child(odd) .roadmap-marker, .roadmap-item:nth-child(even) .roadmap-marker {
    left: 17px;
    right: auto;
  }
  .guide-featured-card {
    grid-template-columns: 1fr;
  }
  .guide-featured-img {
    min-height: 260px;
  }
  .guide-featured-content {
    padding: 2.5rem;
  }
  .dashboard-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .glossary-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .guides-grid {
    grid-template-columns: 1fr;
  }
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-form-panel {
    padding: 2.5rem 1.5rem;
  }
  .glossary-wrap {
    padding: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hours-table th,
  .hours-table td {
    padding: 0.75rem 0.5rem !important;
    font-size: 0.85rem !important;
  }

  .about-content h2,
  .about-content > p {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.25rem;
  }
  .navbar {
    padding: 1rem 0;
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .about-floating-box {
    position: static;
    margin: 2rem auto 0 auto;
    max-width: 100%;
  }
  .newsletter-box {
    padding: 3rem 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
  .dashboard-legend {
    flex-direction: column;
    gap: 0.5rem;
  }
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .hours-table th,
  .hours-table td {
    padding: 0.6rem 0.35rem !important;
    font-size: 0.75rem !important;
  }
}

@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 1.85rem;
  }
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
}
