/* =========================
   Brand Design System
   Dhanshuk Ltd
   ========================= */

:root {
  /* =========================
     Font Families
     ========================= */
  --heading-font-family: 'Titillium Web', sans-serif;
  --body-font-family: 'Montserrat', sans-serif;

  /* =========================
     H1
     ========================= */
  --header-one-font-size: 7.5rem;
  --header-one-font-weight: 100;
  --header-one-line-height: 1.25;

  /* =========================
     H2
     ========================= */
  --header-two-font-size: 2.2rem;
  --header-two-font-weight: 600;
  --header-two-line-height: 1.3;

  /* =========================
     H3
     ========================= */
  --header-three-font-size: 1.75rem;
  --header-three-font-weight: 600;
  --header-three-line-height: 1.35;

  /* =========================
     H4
     ========================= */
  --header-four-font-size: 1.4rem;
  --header-four-font-weight: 500;
  --header-four-line-height: 1.4;

  /* =========================
     H5
     ========================= */
  --header-five-font-size: 1.1rem;
  --header-five-font-weight: 500;
  --header-five-line-height: 1.45;

  /* =========================
     H6
     ========================= */
  --header-six-font-size: 0.95rem;
  --header-six-font-weight: 400;
  --header-six-line-height: 1.5;

  /* =========================
     Paragraph
     ========================= */
  --paragraph-font-size: 0.95rem;
  --paragraph-font-weight: 400;
  --paragraph-line-height: 1.6;

  /* =========================
     Small Text
     ========================= */
  --small-font-size: 0.85rem;
  --small-font-weight: 400;
  --small-line-height: 1.5;



  /* Brand Colors */
  --color-dark: #373435;   /* Headers, footer, dark sections, dark text */
  --color-body-bg: #E6E5E5;
  --color-accent: #ED3237; /* Buttons / CTAs */
  --color-light: #FFFFFF;
}

/* =========================
   Global Type Rules
   ========================= */

h1, h2, h3, h4, h5, h6 {
  
  color: var(--color-dark);
}

p,
span:not(.material-symbols-outlined),
li,
a {
  font-family: var(--font-body);
  color: var(--color-dark);
}


h1 {
  font-family: var(--heading-font-family);
  font-size: var(--header-one-font-size);
  font-weight: var(--header-one-font-weight);
  line-height: var(--header-one-line-height);
}

h2 {
  font-family: var(--heading-font-family);
  font-size: var(--header-two-font-size);
  font-weight: var(--header-two-font-weight);
  line-height: var(--header-two-line-height);
}

h3 {
  font-family: var(--heading-font-family);
  font-size: var(--header-three-font-size);
  font-weight: var(--header-three-font-weight);
  line-height: var(--header-three-line-height);
}

h4 {
  font-family: var(--heading-font-family);
  font-size: var(--header-four-font-size);
  font-weight: var(--header-four-font-weight);
  line-height: var(--header-four-line-height);
}

h5 {
  font-family: var(--heading-font-family);
  font-size: var(--header-five-font-size);
  font-weight: var(--header-five-font-weight);
  line-height: var(--header-five-line-height);
}

h6 {
  font-family: var(--heading-font-family);
  font-size: var(--header-six-font-size);
  font-weight: var(--header-six-font-weight);
  line-height: var(--header-six-line-height);
}

p {
  font-family: var(--body-font-family);
  font-size: var(--paragraph-font-size);
  font-weight: var(--paragraph-font-weight);
  line-height: var(--paragraph-line-height);
}

small {
  font-size: var(--small-font-size);
  font-weight: var(--small-font-weight);
  line-height: var(--small-line-height);
}

/* =========================
   Base Backgrounds
   ========================= */

body {
  background-color: var(--color-body-bg);
  margin: 0;
  padding: 0;
}
.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-body-bg);
}

.logo img {
  height: 40px;      /* control logo size here */
  width: auto;
  display: block;
}

.explainer {
  position: relative;
  width: 100%;
}

.explainer-video {
  width: 100%;
  height: 75%;
  display: block; /* removes inline video whitespace */
}

/* Subtle pause button */
.video-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.5);
  color: var(--color-light);
  
  cursor: pointer;

  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.video-toggle:hover {
  opacity: 1;
}

/* CTA button */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 48px;
  border-radius: 50px;

  background-color: var(--color-accent);
  color: var(--color-light);
  text-decoration: none;

  font-family: var(--font-body);
  font-weight: 600;

  transition: all 0.25s ease;
}

.primary-btn:hover {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
/* =========================
   Post Video CTA (Hero Text)
   ========================= */

.post-video-cta {
  width: 66vw;
  max-width: 960px;
  margin: 6rem auto 4rem;
  padding: 0 1.5rem;
  text-align: left;
}

.post-video-cta h2.hero-p {
  font-family: var(--body-font-family);
  font-size: calc(var(--paragraph-font-size) * 1.7);
  font-weight: 500;
  line-height: 2.1;
  color: var(--color-dark);
  margin-bottom: 3rem;
}
/* Make button look like the link */
/* Get Started Button */
.get-started-btn {
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--body-font-family);
}
.get-started-btn:hover {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
/* Contact Modal */
.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  animation: fadeIn 0.3s ease;

}

.contact-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(55, 52, 53, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  z-index: 10000;
  max-width: 650px;
  width: 90%;
  max-height: 90vh;     /* ✅ THIS IS THE KEY */
  overflow-y: auto;     /* ✅ scrolling now works */
  animation: slideUp 0.3s ease;
}


@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-accent);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--color-accent);
  transform: rotate(90deg);
}

.modal-close .material-symbols-outlined {
  color: var(--color-light);
  font-size: 24px;
}

.modal-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 1rem 2.5rem 1rem; /* Reduced vertical padding */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.modal-form-wrapper h2 {
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 0.75rem;
}

.modal-form-wrapper .form-subtitle {
  color: rgba(55, 52, 53, 0.7);
  text-align: center;
  margin-bottom: 2rem;
}

.modal-form-wrapper .form-group label {
  color: var(--color-dark);
  opacity: 0.8;
  font-weight: 600;
}

.modal-form-wrapper .form-group input {
  background: rgba(55, 52, 53, 0.05);
  border: 1.5px solid rgba(55, 52, 53, 0.2);
  color: var(--color-dark);
}

.modal-form-wrapper .form-group input:focus {
  border-color: var(--color-accent);
  background: rgba(55, 52, 53, 0.08);
  box-shadow: 0 0 0 4px rgba(237, 50, 55, 0.1);
  color: var(--color-dark);
}

.modal-form-wrapper .form-group input::placeholder {
  color: rgba(55, 52, 53, 0.4);
}
/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}
/* =========================
   Diagnostic Section
   ========================= */

.diagnostic-section {

  max-width: 960px;
  margin: 6rem auto;
  padding: 0 1.5rem;
}

.diagnostic-section .diagnostic {
  font-family: var(--body-font-family);
  font-size: calc(var(--paragraph-font-size) * 2);
  font-weight: var(--paragraph-font-weight);
  line-height: 3;
  color: var(--color-dark);
  margin-bottom: 3.5rem;
  text-align: center;
}

/* =========================
   Scroll Fade-in System
   ========================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.secondscroll{
  background-color: var(--color-light);
  
 
}

.secondscroll-content {
  display: flex;
  gap: 1%;
}
.secondscroll-text{
  flex: 1;
  text-align: left;
  padding: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secondscroll-text,
.secondscroll-media {
  flex: 1;
  text-align: right;
}

.secondscroll-media {
  background-image: url('/img/heroimg.png');
  background-size: cover;
  background-position: center;
}
/* ===== WHAT YOU GET SECTION ===== */

/* WHY US SECTION */
.why-us {
  padding: 6rem 1.5rem;
  background: var(--color-body-bg);
}

.whyus-heading h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3.5rem;
}

/* Card layout */
.whyus-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Individual card */
.whyus-item {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whyus-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* ICON — THIS IS THE IMPORTANT PART */
.whyus-icon {
  display: block;                 /* force it to behave like a block */
  font-size: 50px !important;     /* hard override */
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--color-accent);

  /* Material Symbols specific */
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
}

/* Text */
.whyus-item h3 {

  margin-bottom: 0.8rem;
}

/* HOW IT WORKS */
.how-it-works {
  height: 300vh;
  background: var(--color-light);
  scroll-margin-top: 80px;

}
.hiw-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.hiw-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Timeline animation logic */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--color-accent);
  transition: width 0.4s ease;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  background: var(--color-light);
  border: 2px solid var(--color-dark);
  transition: all 0.3s ease;
  z-index: 2;
}



.timeline-dot.active {
  opacity: 1;
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.2);
}


/* ===== SHARED GRID (TIMELINE + CONTENT) ===== */

.hiw-grid {
  width: 70%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  row-gap: 3rem;
}

/* TIMELINE ROW */
.hiw-timeline {
  grid-column: 1 / -1;
  position: relative;
  height: 20px;
}

/* Base line (static reference) */
.timeline-base {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-dark);
  opacity: 0.15;
}

/* Dot positions — locked to grid */
.timeline-dot[data-step="0"] { left: 0%; }
.timeline-dot[data-step="1"] { left: 50%; }
.timeline-dot[data-step="2"] { left: 100%; }

/* CONTENT */
.hiw-step {
  text-align: center;
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 1.5rem;
  background: var(--color-body-bg);
}

.comparison-container {
  max-width: 900px;
  margin: 0 auto;
}

.comparison-container h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-table {
  background: var(--color-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(55, 52, 53, 0.1);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: var(--color-dark);
}

.comparison-header .comparison-cell {
  color: var(--color-light);
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-cell {
  padding: 1.5rem 2rem;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: var(--paragraph-font-size);
}

.comparison-cell.label {
  font-weight: 600;
  text-align: left;
  background: rgba(55, 52, 53, 0.03);
}

.comparison-cell.highlight {
  background: rgba(237, 50, 55, 0.05);
  font-weight: 600;
  color: var(--color-accent);
}
/* Contact Form Section */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  
  /* Background image */
  background-image: url('/img/pexels-ron-pedersen-115813525-9765261.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

/* Dark overlay for better contrast */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
}

/* Glass effect wrapper */
.glass-form-wrapper {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 28px;
  padding: 4rem 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glass-form-wrapper h2 {
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 2.5rem;
  font-weight: 600;
}

.form-subtitle {
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  color:var(--color-dark);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  color: var(--color-dark);
  font-family: var(--body-font-family);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  opacity: 0.9;
}

.form-group input, .form-group textarea {
  padding: 1rem 1.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  font-family: var(--body-font-family);
  font-size: 1rem;
  color: var(--color-dark);
  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
  color: var(--color-dark);
}

.form-group input:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 0 0 4px rgba(237, 50, 55, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Submit button */
.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  padding: 1.1rem 3rem;
  box-shadow: 0 4px 16px rgba(237, 50, 55, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Status message */
.form-status {
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1rem;
  min-height: 1.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-status.success {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
}

.form-status.error {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}
/* Add to styles.css */

/* Services Section */
.services-section {
  padding: 6rem 1.5rem;
  background: var(--color-light);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-container h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(55, 52, 53, 0.7);
  margin-bottom: 4rem;
}

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

.service-card {
  background: var(--color-body-bg);
  padding: 2.5rem 2rem;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-icon {
  display: block;
  font-size: 48px !important;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
}

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

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(55, 52, 53, 0.8);
}

/* Industries Carousel - Replace in styles.css */
.industries-carousel {
  padding: 3rem 0;
  background: var(--color-body-bg);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(55, 52, 53, 0.08);
  border-bottom: 1px solid rgba(55, 52, 53, 0.08);
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-item {
  font-family: var(--body-font-family);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  white-space: nowrap;
  padding: 0.75rem 2rem;
  background: var(--color-light);
  border-radius: 8px;
  border: 1px solid rgba(55, 52, 53, 0.1);
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}
/* FAQ Section */
.faq-section {
  padding: 6rem 1.5rem;
  background: var(--color-body-bg);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--color-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--heading-font-family);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(237, 50, 55, 0.03);
}

.faq-icon {
  color: var(--color-accent);
  transition: transform 0.3s ease;
  font-size: 28px !important;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(55, 52, 53, 0.8);
}
/* Footer */
/* =========================
   Landing Page Footer
   ========================= */

/* ===================================
   ENHANCED FOOTER
   =================================== */

.site-footer {
  background: var(--color-dark);
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 45px;
  width: auto;
}

.footer-tagline {
  font-family: var(--body-font-family);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-light);
  transform: translateY(-2px);
}

.footer-social .material-symbols-outlined {
  font-size: 20px;
}

/* Footer Links Grid */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-column h4 {
  font-family: var(--heading-font-family);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-about {
  font-family: var(--body-font-family);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul li a {
  font-family: var(--body-font-family);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

/* Footer Stats */
.footer-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--heading-font-family);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-light);
}

.stat-label {
  font-family: var(--body-font-family);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Contact Info */
.footer-contact-info {
  font-family: var(--body-font-family);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-contact-info strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
   color: var(--color-light);
}

.footer-bottom p {
  font-family: var(--body-font-family);
  font-size: 0.9rem;
  color: var(--color-light);
  margin: 0;
}

/* FOOTER VISIBILITY SAFETY NET */
.site-footer,
.site-footer p,
.site-footer a,
.site-footer li,
.footer-about,
.footer-contact-info,
.stat-number, .stat-label {
  color: rgba(255, 255, 255, 0.85) !important;
}

.footer-column h4 {
  color: #ffffff;
}
