/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --color-primary: rgb(13, 118, 94);
  --color-primary-dark: rgb(10, 94, 75);
  --color-accent: rgb(13, 118, 94);
  --color-text: rgb(0, 0, 0);
  --color-text-light: rgb(60, 60, 60);
  --color-bg: rgb(255, 255, 255);
  --color-bg-light: rgb(250, 250, 250);
  
  /* Typography */
  --font-sans: "Open Sans Variable", "Open Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-heading: "Karma", sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Layout */
  --max-width: 1200px;
  --max-width-content: 800px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 48px;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-content {
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--color-accent);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--color-primary-dark);
  color: white;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: white;
}

/* Sections */
.section {
  padding: var(--spacing-2xl) 0;
}

.section-alt {
  background-color: var(--color-bg-light);
}

/* Header */
.header {
  background-color: transparent;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  transition: padding 0.3s ease;
}

.header.scrolled .header-content {
  padding: var(--spacing-xs) 0;
}

.header-left {
  flex: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  z-index: 101;
  padding-right: var(--spacing-lg);
}

body {
  padding-top: 0;
}


.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-logo {
  position: absolute;
  top: -460px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero-logo-img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}


.header-nav-buttons {
  display: flex;
  gap: var(--spacing-xs);
  align-items: center;
}

.header-nav-btn {
  padding: var(--spacing-xs) var(--spacing-md);
  background-color: transparent;
  color: rgb(255, 255, 255);
  border: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  font-family: "Open Sans Variable", "Open Sans", sans-serif;
}

.header-nav-btn:hover {
  color: var(--color-accent);
  opacity: 0.9;
}

.header.scrolled .header-nav-btn {
  color: var(--color-text);
}

.header.scrolled .header-nav-btn:hover {
  color: var(--color-accent);
}

/* Navigation */
.nav {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-link {
  color: white;
  font-weight: 500;
  padding: var(--spacing-xs) 0;
  position: relative;
  transition: color 0.3s ease;
}

.header.scrolled .nav-link {
  color: var(--color-text);
}

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

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

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

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

/* Hero Header */
.hero-header {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: left;
  padding: 0;
  margin-top: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem 1.25rem 1rem;
  gap: 2rem;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-brand-logo {
  display: block;
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

.hero-bottom {
  margin-top: auto;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-title-line {
  width: 60px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  align-self: center;
  flex-shrink: 0;
}

.hero-header h1 {
  font-size: clamp(1.75rem, 2.4vw + 1rem, 3.2rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
}
/* Breadcrumbs */
.breadcrumb {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  z-index: 3;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.breadcrumb-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.breadcrumb[data-variant="light"] .breadcrumb-list {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb[data-variant="light"] .breadcrumb-link:hover {
  opacity: 1;
  color: white;
}

.breadcrumb[data-variant="light"] .breadcrumb-page {
  color: white;
  font-weight: 600;
}

.breadcrumb[data-variant="dark"] .breadcrumb-list {
  color: var(--color-text-light);
}

.breadcrumb[data-variant="dark"] .breadcrumb-link:hover {
  color: var(--color-primary);
}

.breadcrumb[data-variant="dark"] .breadcrumb-page {
  color: var(--color-text);
  font-weight: 600;
}

.breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  color: inherit;
  opacity: 0.7;
}

.breadcrumb-sep-char {
  user-select: none;
}

/* Breadcrumb in first block below hero (top-left of section) */
.intro-section,
.contact-form-section,
.timeline-section,
.testimonial-detail-section {
  position: relative;
}

.breadcrumb-block-wrap {
  position: absolute;
  top: 1rem;
  left: var(--spacing-md);
  z-index: 1;
}

.intro-section > .container-content,
.intro-section > .container-large,
.contact-form-section > .container-medium,
.testimonial-detail-section > .container-medium {
  padding-top: 3.5rem;
}

.timeline-section .timeline-container {
  padding-top: 2.5rem;
}

.breadcrumb-block-wrap .breadcrumb {
  position: static;
  bottom: auto;
  left: auto;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background-color: white;
  text-align: center;
  width: 100%;
}

.cta-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.cta-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-light);
  font-family: var(--font-sans);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 5rem 0;
  }
  
  .cta-heading {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Breadcrumb bar (for pages without hero) */
.breadcrumb-bar {
  background-color: #fbf8f1;
  padding: 0.5rem var(--spacing-md);
  border-bottom: 1px solid rgba(13, 118, 94, 0.1);
}

.breadcrumb-bar .breadcrumb {
  position: static;
  bottom: auto;
  left: auto;
}

.breadcrumb-bar .breadcrumb-list {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Newsletter & Footer Wrapper */
.newsletter-footer-wrapper {
  background-image: url('/images/camper-van-on-the-beach.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

/* Footer */
.footer {
  background-color: transparent;
  background-image: none;
  color: white;
  padding: 4rem 0 1.5rem;
  margin-top: 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 20%, 
    rgba(255, 255, 255, 0.6) 50%, 
    rgba(255, 255, 255, 0.3) 80%, 
    transparent 100%
  );
  z-index: 2;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

.footer-grid-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.footer-logo-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 0;
}

.footer-section h3 {
  color: rgb(13, 118, 94);
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 0.75rem;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer-section a:hover {
  color: white;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  padding-top: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-bottom p {
  margin: 0;
}

/* Blur effect for body when menu is open */
body.menu-open {
  overflow: hidden;
}

body.menu-open main,
body.menu-open .hero {
  filter: blur(5px);
  transition: filter 0.3s ease;
}

/* Navigation Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(0px);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
  backdrop-filter: blur(8px);
}

/* Navigation Menu Container */
.nav-menu-container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 800px;
  max-width: 95vw;
  height: 100vh;
  z-index: 1000;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .nav-menu-container {
    width: 900px;
  }
}

@media (min-width: 1280px) {
  .nav-menu-container {
    width: 1000px;
  }
}

/* Navigation Menu */
.nav_menu {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  transform: translate3d(100%, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
}

.nav_menu.open {
  transform: translate3d(0%, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.nav_menu-links-container {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 0;
  overflow-y: auto;
  height: 100%;
  flex: 1;
}

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

.nav_menu-link-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav_menu-link-wrapper.is-last-menu-item {
  border-bottom: none;
}

.menu_link {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
  padding: var(--spacing-md) 0;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: block;
  position: relative;
}

.menu_link:hover {
  color: var(--color-accent);
  padding-left: var(--spacing-sm);
}

/* Burger Menu Styles */
.nav-burger-container {
  position: relative;
  z-index: 1001;
}

.nav-burger {
  position: relative;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-burger-dark,
.nav-burger-white {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-burger-white {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-burger.active .nav-burger-white {
  opacity: 1;
}

.nav-burger.active .nav-burger-dark {
  opacity: 0;
}

.nav-burger-t-line {
  width: 28px;
  height: 3px;
  background-color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-burger-t-line.white {
  background-color: var(--color-text);
}

.header.scrolled .nav-burger-t-line {
  background-color: var(--color-text);
}

.nav-burger.active .nav-burger-t-line.is-1 {
  transform: translate3d(0px, 11px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.nav-burger.active .nav-burger-t-line.is-2 {
  opacity: 0;
}

.nav-burger.active .nav-burger-t-line.is-3 {
  transform: translate3d(0px, -11px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.nav_burger-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1002;
}

.header-logo-img-small {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease, height 0.3s ease;
  filter: none;
  opacity: 1;
  pointer-events: auto;
}

.header-logo-link {
  display: inline-block;
  padding-left: var(--spacing-lg);
}

@media (max-width: 768px) {
  .header-logo-img-small {
    height: 44px;
  }
  
  .header-logo-link {
    padding-left: var(--spacing-md);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .header-nav-buttons {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-nav-buttons {
    display: none;
  }
  
  .nav {
    width: 100%;
    max-width: 100vw;
  }
  
  .header-content {
    position: relative;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-logo {
    width: 120px;
    height: 120px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

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

.hero h1 {
  margin-bottom: var(--spacing-md);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
  color: var(--color-primary);
  text-shadow: 
    0 0 1px rgba(255, 255, 255, 0.9),
    0 0 2px rgba(255, 255, 255, 0.8),
    1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.hero .hero-subtitle {
  font-size: 1.05rem;
  max-width: 620px;
  white-space: normal;
  line-height: 1.5;
  margin: 0 auto var(--spacing-lg);
}

.hero .btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-accent);
  border: 2px solid white;
}

.hero .btn-secondary:hover {
  background-color: white;
  color: var(--color-primary-dark);
}

.hero-cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

/* Home Logo top-left */
.hero-brand-top-left {
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  z-index: 10;
}

.hero-brand-top-left .hero-logo-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

@media (max-width: 768px) {
  .hero-brand-top-left .hero-logo-img {
    height: 90px;
  }
}

/* Grid */

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

/* Newsletter Section */
.newsletter-section {
  padding: 8rem 0;
  background-color: transparent;
  color: white;
  position: relative;
  background-image: none;
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.newsletter-container {
  position: relative;
  z-index: 2;
}

.newsletter-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-text h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 48px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: var(--font-sans);
}

.newsletter-form {
  margin-top: 2rem;
}

.newsletter-input-group {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  max-width: 400px;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-sans);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  width: 100%;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
}

.newsletter-input:focus {
  outline: none;
  border-color: white;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  background-color: white;
  color: var(--color-primary);
  border: 2px solid white;
  white-space: nowrap;
  min-width: 140px;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.newsletter-btn:hover {
  background-color: transparent;
  color: white;
}

.newsletter-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-family: var(--font-sans);
}

@media (min-width: 600px) {
  .newsletter-input-group {
    flex-direction: row;
    justify-content: center;
  }

  .newsletter-input {
    width: auto;
  }
}

/* Newsletter Section responsive fix */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 3rem 0;
  }

  .newsletter-text h2 {
    font-size: 2.5rem;
  }

  .newsletter-text p {
    font-size: 1rem;
  }
}

/* Card */
.card {
  background-color: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: var(--spacing-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-bottom: var(--spacing-sm);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

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


.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: var(--spacing-md);
}

.about-image {
  width: 100%;
  max-width: 500px;
  margin: var(--spacing-lg) auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}


.hero-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

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

/* Text Utilities */
.text-color-secondary {
  color: var(--color-accent);
}

.text-size-medium {
  font-size: 1.125rem;
}

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

.margin-bottom-small {
  margin-bottom: var(--spacing-sm);
}

/* About Section */
.section-about {
  padding: var(--spacing-2xl) 0;
}

/* Image Grid Links */
.section-image-grid {
  padding: var(--spacing-2xl) 0;
}

.image-grid-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.image-grid-link {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.image-grid-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.image-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: background 0.3s ease;
}

.image-grid-text {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  right: var(--spacing-lg);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.image-grid-link:hover .image-grid-image {
  transform: scale(1.05);
}

.image-grid-link:hover .image-grid-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

/* Info Feature */
.section-info-feature {
  padding: var(--spacing-2xl) 0;
}

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

@media (min-width: 768px) {
  .info-feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
  }
}

.info-feature-left {
  display: flex;
  flex-direction: column;
}

.info-feature-left h2 {
  margin-bottom: 0;
}

.info-feature-right {
  display: flex;
  flex-direction: column;
}

.info-feature-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

/* Full Image Feature */
.section-full-image {
  position: relative;
  min-height: 80vh;
  margin: var(--spacing-2xl) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-image-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.full-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.full-image-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.full-image-content h2 {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.text-color-secondary-light {
  color: rgba(255, 255, 255, 0.95);
}

/* About Image Section */
.section-about-image {
  padding: var(--spacing-2xl) 0;
}

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

@media (min-width: 768px) {
  .about-image-grid {
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
  }
}

.about-image-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-image-feature {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper {
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  border-radius: 8px;
  margin-left: auto;
}

@media (min-width: 768px) {
  .about-image-wrapper {
    max-width: 280px;
    margin-left: 0;
  }
}

/* CTA Section */
.section-cta {
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-bg-light);
}

/* Gallery Section */
.section-gallery {
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-bg);
}

.gallery-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.gallery-slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.gallery-slide {
  min-width: 100%;
  flex-shrink: 0;
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-image {
    height: 400px;
  }
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--color-text);
}

.gallery-nav:hover {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
  left: var(--spacing-md);
}

.gallery-next {
  right: var(--spacing-md);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: var(--color-text);
  transition: all 0.3s ease;
  z-index: 1001;
}

.lightbox-close:hover {
  background-color: white;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-text);
}

.lightbox-nav:hover {
  background-color: white;
  transform: scale(1.1);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 20px;
  }
  
  .lightbox-next {
    right: 20px;
  }
  
  .lightbox-nav {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .image-grid-links {
    grid-template-columns: 1fr;
  }
}

/* Timeline Component Styles */
.timeline-wrapper {
  width: 100%;
}

.timeline-container {
  width: 100%;
  background-color: white;
  font-family: var(--font-sans);
  padding: 0 2.5rem;
}

@media (prefers-color-scheme: dark) {
  .timeline-container {
    background-color: rgb(10, 10, 10);
  }
}

.timeline-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem 0;
}

.timeline-main-title {
  font-size: clamp(1.125rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
  color: black;
  max-width: 56rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

@media (prefers-color-scheme: dark) {
  .timeline-main-title {
    color: white;
  }
}

.timeline-main-description {
  color: rgb(64, 64, 64);
  font-size: clamp(0.875rem, 2vw, 1rem);
  max-width: 24rem;
}

@media (prefers-color-scheme: dark) {
  .timeline-main-description {
    color: rgb(163, 163, 163);
  }
}

.timeline-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  padding-top: 2.5rem;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-top: 10rem;
  }
}

.timeline-sticky-wrapper {
  position: sticky;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 10rem;
  align-self: flex-start;
  max-width: 20rem;
  width: 100%;
  z-index: 10;
  background-color: white;
}

@media (min-width: 768px) {
  .timeline-sticky-wrapper {
    flex-direction: row;
  }
}

.timeline-dot-wrapper {
  position: absolute;
  left: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: white;
}

@media (min-width: 768px) {
  .timeline-dot-wrapper {
    left: 0.75rem;
  }
}

@media (prefers-color-scheme: dark) {
  .timeline-dot-wrapper {
    background-color: black;
  }
}

.timeline-dot {
  width: 1rem;
  height: 1rem;
  padding: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgb(212, 212, 212);
  background-color: rgb(229, 229, 229);
}

@media (prefers-color-scheme: dark) {
  .timeline-dot {
    border-color: rgb(64, 64, 64);
    background-color: rgb(38, 38, 38);
  }
}

.timeline-title {
  display: none;
  font-size: clamp(1.15rem, 3.25vw, 2.25rem);
  font-weight: 700;
  padding-left: 5rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

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

@media (prefers-color-scheme: dark) {
  .timeline-title {
    color: var(--color-primary);
  }
}

.timeline-title-mobile {
  display: block;
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

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

@media (prefers-color-scheme: dark) {
  .timeline-title-mobile {
    color: var(--color-primary);
  }
}

.timeline-item-content {
  position: relative;
  padding-left: 5rem;
  padding-right: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .timeline-item-content {
    padding-left: 1rem;
  }
}

.timeline-step-description {
  color: rgb(38, 38, 38);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .timeline-step-description {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }
}

@media (prefers-color-scheme: dark) {
  .timeline-step-description {
    color: rgb(229, 229, 229);
  }
}

.timeline-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.5rem;
}

.timeline-image {
  border-radius: 0.5rem;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: none;
  box-shadow: 
    0 0 24px rgba(34, 42, 53, 0.06), 
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(34, 42, 53, 0.04), 
    0 0 4px rgba(34, 42, 53, 0.08), 
    0 16px 68px rgba(47, 48, 55, 0.05), 
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.timeline-step-cta {
  margin-top: 4.5rem;
  margin-bottom: 1rem;
  margin-left: -22.5rem;
  width: calc(100% + 22.5rem);
  max-width: none;
  text-align: center;
}

@media (max-width: 767px) {
  .timeline-step-cta {
    margin-left: -5rem;
    width: calc(100% + 5rem);
  }
}

.timeline-cta-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 2px 8px rgba(13, 118, 94, 0.2);
  transform: translateY(2.0rem);
}

.timeline-cta-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(calc(0.75rem - 2px));
  box-shadow: 0 4px 12px rgba(13, 118, 94, 0.3);
}

.timeline-line {
  position: absolute;
  left: 2rem;
  top: 0;
  overflow: hidden;
  width: 2px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgb(229, 229, 229) 0%, 
    rgb(229, 229, 229) 99%, 
    transparent 100%
  );
  mask-image: linear-gradient(to bottom, 
    transparent 0%, 
    black 10%, 
    black 90%, 
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(to bottom, 
    transparent 0%, 
    black 10%, 
    black 90%, 
    transparent 100%
  );
}

@media (min-width: 768px) {
  .timeline-line {
    left: 2rem;
  }
}

@media (prefers-color-scheme: dark) {
  .timeline-line {
    background: linear-gradient(to bottom, 
      transparent 0%, 
      rgb(64, 64, 64) 0%, 
      rgb(64, 64, 64) 99%, 
      transparent 100%
    );
  }
}

.timeline-line-progress {
  position: absolute;
  inset: 0;
  width: 2px;
  background: linear-gradient(to top, 
    transparent 0%, 
    var(--color-primary) 0%, 
    var(--color-primary) 10%, 
    transparent 10%
  );
  border-radius: 9999px;
}

/* Interactive Hover Links Component */
.interactive-links-section {
  background-color: var(--color-bg);
  padding: 2rem 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .interactive-links-section {
    padding: 3rem 4rem;
  }
}

.interactive-links-container {
  margin: 0 auto;
  max-width: 80rem;
}

.interactive-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.5s;
  text-decoration: none;
  color: inherit;
}

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

.interactive-link:hover {
  border-color: var(--color-text);
}

.interactive-link-heading {
  position: relative;
  z-index: 10;
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: rgb(115, 115, 115);
  transition: color 0.5s;
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .interactive-link-heading {
    font-size: 3.75rem;
  }
}

.interactive-link:hover .interactive-link-heading {
  color: var(--color-text);
}

.interactive-link-subheading {
  position: relative;
  z-index: 10;
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: rgb(115, 115, 115);
  transition: color 0.5s;
  font-family: var(--font-sans);
}

.interactive-link:hover .interactive-link-subheading {
  color: var(--color-text);
}

.interactive-link-image {
  position: absolute;
  z-index: 0;
  height: 8rem;
  width: 10rem;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

@media (min-width: 768px) {
  .interactive-link-image {
    height: 14rem;
    width: 20rem;
  }
}

@media (min-width: 1024px) {
  .interactive-link-image {
    height: 16rem;
    width: 24rem;
  }
}

.interactive-link-arrow-wrapper {
  overflow: hidden;
}

.interactive-link-arrow {
  position: relative;
  z-index: 10;
  padding: 1rem;
}

.interactive-link-arrow-icon {
  width: 2rem;
  height: 2rem;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .interactive-link-arrow-icon {
    width: 3rem;
    height: 3rem;
  }
}

/* Card Stack Component */
.card-stack-wrapper {
  width: 100%;
}

.card-stack-stage {
  position: relative;
  width: 100%;
}

.card-stack-stage:focus {
  outline: none;
}

.card-stack-spotlight-top {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  top: 1.5rem;
  margin-inline: auto;
  height: 12rem;
  width: 70%;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.05);
  filter: blur(48px);
}

.card-stack-spotlight-bottom {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin-inline: auto;
  height: 10rem;
  width: 76%;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.1);
  filter: blur(48px);
}

.card-stack-perspective {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card-stack-card {
  position: absolute;
  bottom: 0;
  border-radius: 1rem;
  border: 4px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  will-change: transform;
  user-select: none;
}

.card-stack-card-active {
  cursor: grab;
}

.card-stack-card-active:active {
  cursor: grabbing;
}

.card-stack-card-inactive {
  cursor: pointer;
}

.card-stack-card-inner {
  height: 100%;
  width: 100%;
}

.card-stack-card-content {
  position: relative;
  height: 100%;
  width: 100%;
}

.card-stack-card-image {
  position: absolute;
  inset: 0;
}

.card-stack-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.card-stack-no-image {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-light);
  font-size: 0.875rem;
  color: rgb(115, 115, 115);
}

.card-stack-card-gradient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
}

.card-stack-card-text {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.card-stack-card-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  font-family: var(--font-heading);
}

.card-stack-card-description {
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-sans);
}

.card-stack-dots {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.card-stack-dots-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-stack-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  padding: 0;
}

.card-stack-dot-active {
  background-color: var(--color-text);
}

.card-stack-dot-inactive {
  background-color: rgba(0, 0, 0, 0.3);
}

.card-stack-dot-inactive:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.card-stack-link {
  color: rgb(115, 115, 115);
  transition: color 0.2s;
  text-decoration: none;
}

.card-stack-link:hover {
  color: var(--color-text);
}

.card-stack-link-icon {
  width: 1rem;
  height: 1rem;
}

.card-stack-demo {
  width: 100%;
}

.card-stack-demo-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 80rem;
  padding: 2rem;
}
