@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

/* ==========================================================================
   Design Tokens & Variables
   ========================================================================== */
:root {
  /* Color Palette */
  --color-primary: hsl(215, 28%, 17%);      /* Slate Steel */
  --color-primary-rgb: 31, 41, 55;
  --color-accent: hsl(28, 95%, 52%);         /* Ember Orange */
  --color-accent-hover: hsl(28, 95%, 45%);
  --color-dark: hsl(220, 25%, 8%);           /* Coal */
  --color-light: hsl(210, 30%, 97%);         /* Chalk */
  --color-white: hsl(0, 0%, 100%);
  --color-muted: hsl(210, 12%, 40%);
  --color-border: hsl(210, 14%, 89%);
  --color-card-bg: hsl(210, 20%, 99%);
  --color-shadow: hsla(215, 28%, 17%, 0.08);
  --color-shadow-hover: hsla(28, 95%, 52%, 0.12);

  /* Typography */
  --font-header: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing Grid (8px Base System) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  --space-huge: 96px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-width: 1280px;
  --header-height: 80px;
}

/* ==========================================================================
   CSS Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Typography Hierarchy
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem); /* Responsive font scaling */
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

p {
  color: var(--color-muted);
  margin-bottom: var(--space-md);
  /* text-align: justify; */
  max-width: 75ch;
  line-height: 1.75;
}

/* Ensure centered text containers center their paragraphs correctly */
.section-header p,
.text-center,
.text-center p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.text-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   Global Utilities & Layout components
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.section-padding {
  padding-top: var(--space-huge);
  padding-bottom: var(--space-huge);
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl);
  }
}

/* Grids & Flex */
.grid {
  display: grid;
  gap: var(--space-md);
}

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

/* Broken/Asymmetric Grid Layouts */
.grid-asymmetric-left {
  grid-template-columns: 1.4fr 0.8fr;
}

.grid-asymmetric-right {
  grid-template-columns: 0.8fr 1.4fr;
}

@media (max-width: 992px) {
  .grid-2, .grid-3, .grid-4, .grid-asymmetric-left, .grid-asymmetric-right {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 12px 28px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

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

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

.btn-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  z-index: 100;
  transition: var(--transition-normal);
}

.site-header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-header);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-primary);
  padding: 8px 12px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    padding: var(--space-lg) 0;
    gap: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  height: auto;
  min-height: auto;
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-top: calc(var(--header-height) + var(--space-xxl));
  padding-bottom: var(--space-xxl);
  overflow: hidden;
}

.hero-svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: var(--space-xl);
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}

.hero-content {
  max-width: 720px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: floatMoleculeContainer 8s ease-in-out infinite;
}

@media (max-width: 992px) {
  .hero-visual {
    display: none;
  }
}

.molecule-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(249, 115, 22, 0.15));
}

@keyframes floatMoleculeContainer {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes floatMolecule {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(10px, -15px) scale(1.05);
  }
}


.hero-subtitle {
  font-family: var(--font-header);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.hero-subtitle::before {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

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

.hero p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats {
  background-color: var(--color-light);
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-item {
  background: var(--color-white);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px var(--color-shadow);
  border: 1px solid rgba(229, 231, 235, 0.3);
  text-align: center;
  transition: var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px var(--color-shadow-hover);
  border-color: rgba(249, 115, 22, 0.15);
}

.stat-number {
  font-family: var(--font-header);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-title {
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Mission & Vision
   ========================================================================== */
.mission-vision {
  background-color: var(--color-white);
}

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

.mv-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  background-color: var(--color-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border);
}

.mv-card {
  background-color: var(--color-card-bg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 30px var(--color-shadow);
  position: relative;
  overflow: hidden;
}

.mv-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-accent);
}

/* ==========================================================================
   Compounding Process Storytelling
   ========================================================================== */
.process-story {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.process-story h2,
.process-story h3 {
  color: var(--color-white);
}

.process-grid {
  margin-top: var(--space-xxl);
}

.process-step {
  display: flex;
  gap: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-xxl);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 20px;
  width: 2px;
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.1);
}

.process-step:last-child::before {
  display: none;
}

.process-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 1.2rem;
  border: 4px solid var(--color-primary);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.process-info {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.process-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* ==========================================================================
   Product Category Showcase
   ========================================================================== */
.product-showcase {
  background-color: var(--color-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xxl);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  background-color: var(--color-accent);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--color-shadow);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px var(--color-shadow-hover);
  border-color: rgba(249, 115, 22, 0.2);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-primary);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  transition: transform var(--transition-normal);
}

.product-card:hover .product-img-placeholder {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-body p {
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.product-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.product-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   Testimonial Slider (Yorumlar)
   ========================================================================== */
.testimonials {
  background-color: var(--color-white);
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) 0;
}

.testimonial-slider {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  padding: 0 var(--space-md);
}

.testimonial-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  font-family: var(--font-header);
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
}

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

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

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

.slider-dots {
  display: flex;
  gap: var(--space-xs);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--color-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--color-accent);
  width: 20px;
}

/* ==========================================================================
   FAQ Section (SSS)
   ========================================================================== */
.faq {
  background-color: var(--color-light);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-primary);
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-answer p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 20px;
}

.faq-icon {
  stroke: var(--color-primary);
  transition: transform var(--transition-normal);
}

.faq-item.active {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 4px 20px var(--color-shadow);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  stroke: var(--color-accent);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding-top: var(--space-xxl);
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: var(--space-xl);
}

.footer-logo-desc p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-sm);
  font-size: 0.9rem;
}

.footer-title {
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.contact-icon {
  flex-shrink: 0;
  color: var(--color-accent);
}

.footer-bottom {
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  transition: var(--transition-fast);
}

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

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
}

/* ==========================================================================
   Products Page Specific Elements
   ========================================================================== */
.page-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 120px 0 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.filter-wrapper {
  margin-bottom: var(--space-xl);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.filter-btn {
  padding: 8px 24px;
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-header);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

/* Product Detail Cards Layout on grid */
.tech-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-md);
  font-size: 0.85rem;
}

.tech-specs-table th,
.tech-specs-table td {
  padding: var(--space-xs) var(--space-sm);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.tech-specs-table th {
  font-family: var(--font-header);
  font-weight: 600;
  color: var(--color-primary);
  background-color: var(--color-light);
}

/* ==========================================================================
   Contact Page Specific Elements
   ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xxl);
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

.contact-card-info {
  background-color: var(--color-light);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  color: var(--color-dark);
}

.contact-card-info .contact-info-list li {
  color: var(--color-dark);
}

.contact-hours-list {
  margin-top: var(--space-md);
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-muted);
}

.contact-form-box {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px var(--color-shadow);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-header);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-control-error {
  border-color: hsl(0, 75%, 50%);
}

.form-error-msg {
  color: hsl(0, 75%, 50%);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-success-box {
  display: none;
  background-color: hsl(140, 60%, 95%);
  border: 1px solid hsl(140, 60%, 85%);
  color: hsl(140, 70%, 25%);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  text-align: center;
}

.map-wrapper {
  margin-top: var(--space-xxl);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px var(--color-shadow);
}

.map-iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.scroll-path-svg {
  position: absolute;
  top: 520px; /* starts exactly below the compacted hero section */
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: calc(100% - 520px - 450px); /* spans the page height minus hero and footer */
  pointer-events: none;
  z-index: 6; /* sits above section backgrounds to remain visible */
  opacity: 0.6;
}

.scroll-path-svg path {
  stroke: var(--color-accent);
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;
  transition: stroke-dashoffset 0.1s ease-out;
}


.section-bg-svg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: var(--color-primary);
  opacity: 0.12; /* increased from 0.03 to make it clearly visible */
}

/* Set relative position and overflow hidden for watermark container sections */
.mission-vision {
  position: relative;
  overflow: hidden;
}

.faq {
  position: relative;
  overflow: hidden;
}


