:root {
  /* BACKGROUNDS */
  --bg-main: #08101A;      /* entire website background */
  --bg-section: #08101A;  /* section / box backgrounds */
  --bg-card: #000000;     /* cards & containers */

  /* TEXT */
  --text-primary: #ffffff;
  --text-secondary: #c9d1d9;
  --text-muted: #8b949e;

  /* ACCENT */
  --accent: #C9D453;       /* main accent */
  --accent-hover: #b6c13f;

  /* SPECIAL ACCENT (CTA / FAQ Q / Sticky) */
  --highlight: #FF9429;

  /* UI */
  --border-soft: rgba(255,255,255,0.08);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.6);
}



/* GLOBAL */
body, html {
  margin: 0; padding: 0;
  font-family: 'Open Sans', sans-serif;
  scroll-behavior: smooth;
  background: var(--bg-main);
  color: var(--text-secondary);
}

#page-wrapper {
  background: var(--bg-main);
}

h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: #E8E16B}
a { text-decoration: none; }

/* HEADER */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;

  background: rgba(0, 0, 0, 0.01); /* thin dark overlay */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: 10px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav a {
  margin-left: 24px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.header-nav a:hover {
  color: var(--accent);
}


/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("headbackground.png");
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 0px;
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 40px 0;
}

.hero-content h1 {
  font-size: 64px;
  margin: 0;
  color: white; /* ADD THIS */
}

.hero-content h2 {
  font-size: 54px;
  margin: 10px 0;
  color: white
}

.hero-content p {
  font-size: 35px;
  margin: 20px 0;
}

/* HERO BRANDING */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-logo {
  height: 180px;
   width: 180px;
  max-width: 220px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  padding: 6px;
}

.hero-text h1 {
  font-size: 90px;
  margin: 0;
  color: white;
}

.hero-text h2 {
  font-size: 80px;
  margin: 0;
  color: white;
}


.hero-content p {
  margin-bottom: 30px;
}


.hero-content p {
  margin-bottom: 20px;
}

/* Full-viewport background for specific pages (applied by adding
   class="full-viewport-bg" to the <body> on a page) */
.full-viewport-bg {
  /* use the same color as section containers so background matches site sections */
  background: var(--bg-section);
  min-height: 100vh;
  color: var(--text-primary);
}

.full-viewport-bg #page-wrapper {
  background: transparent;
}

/* make section containers transparent so the page background shows through */
.full-viewport-bg .section-container {
  background: transparent;
  color: var(--text-primary);
}

/* expand the hero to the full viewport on desktop for these pages */
.full-viewport-bg .hero.small-hero {
  min-height: 100vh;
  padding: 120px 20px;
}

.logo-container { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.logo-img { height: 80px; width: auto; }
.logo-text { font-size: 52px; font-weight: 700; color: #E8E16B; }

.hero-subtitle {
  font-size: 30px;
  color: #E8E16B;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-btn {
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  background: #FF9429;
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

/* SECTIONS */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 30px; /* consistent spacing */
  text-align: center;
  background: var(--bg-section);
}

/* HEADINGS */
section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--accent);
}

/* SERVICES CARDS */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #e0f7fa;
  padding: 25px 20px;
  border-radius: 10px;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card h3 { font-size: 20px; margin-bottom: 12px; color: #E8E16B; }
.card p { font-size: 16px; color: #E8E16B; }

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* Steps container for continuous horizontal scroll */


/* Step boxes */
.step { flex: 0 0 auto; 
  width: 340px; 
  padding: 30px 28px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  background: #000000; 
  color: var(--text-primary); 
  border-radius: 10px; 
  box-shadow: 0 6px 18px rgba(0,0,0,0.08); 
  cursor: pointer; 
  transition: transform 0.3s ease; 
  position: relative; 
  z-index: 2; 
}


/* Zoom effect on hover */
.step:hover {
  transform: scale(1.05);
  z-index: 2;
}




.step p {
  font-size: 16px;
  color: #E8E16B;

  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* FAQ */
.faq {
  background: var(--bg-section);
   padding: 25px 20px 5px;
  margin: 0;
}

/* FAQ BOXES — CLEAN & COMPACT */
.faq-item {
  background: #000000;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  overflow: hidden; /* required for slide animation */
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.faq-item h3 {
color: #FF9429;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;  /* reduced from 20px to 12px to shrink vertical space */
}

.faq-item .arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-item p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--accent);
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active p {
  max-height: fit-content;      /* reduced from 500px → box now smaller vertically */
  opacity: 1;
  padding: 8px 20px;      /* reduced padding to shrink height */
}



/* BUSINESS HOURS */
.business-hours ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.business-hours li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #004d55;
}

/* CONTACT SECTION */
.contact-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  background: #000000; /* diesel cyan */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 1000px;
  margin: auto;
}

.contact form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 14px;
  font-size: 16px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: #000000;
   color: var(--text-primary);
}

.contact button {
  background: var(--accent);
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact button:hover {
  background: var(--accent-hover);
  color: #000000;
  transform: scale(1.05);
}

.contact-info-box {
  flex: 1 1 300px;
  background: var(--bg-card); /* darker cyan instead of white */
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: left;
  color: #ffffff; /* white text for contrast */
}

.contact-info-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent); /* match text */
}

.contact-info-box p {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text-secondary); /* slightly lighter cyan for readability */
  display: flex;
  align-items: center;
}

.contact-info-box i {
  margin-right: 8px;
    color: var(--accent); /* icon color */
  font-size: 18px;
}

.sticky-cta {
  position: fixed;       /* keeps it on screen while scrolling */
  bottom: 25px;
  right: 25px;
  background: #FF9429;
  color: #000000;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  opacity: 0;            /* hidden initially */
  pointer-events: none;  /* unclickable when hidden */
  transition: all 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
}

.sticky-cta.show {
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta:hover {
  background: #e68320;
  transform: scale(1.05);
}



/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .cards, .steps, .contact-box {
    flex-direction: column;
    align-items: center;
  }

  section h2 {  
    font-size: 38px;
    margin-bottom: 40px;
 }

  .card, .step, .contact form, .contact-info-box { max-width: 90%; }
}

.logo-img {
  height: 80px; /* keep your current size */
  width: auto;
  border: 3px solid #ffffff; /* white border to make it pop */
  border-radius: 12px; /* rounded corners */
  padding: 5px; /* optional inner spacing for a "badge" look */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* subtle shadow for depth */
  background: #006d77; /* optional background if logo is transparent */
}

/* POP-UP MESSAGE */
.popup-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--accent);
  color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}


.popup-message.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

#popupCloseBtn {
  margin-top: 20px;
  background: #004d55;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#popupCloseBtn:hover {
  background: #006d77;
  transform: scale(1.05);
}



.card {
  cursor: pointer;
}

.card::after {
  content: "→";
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  bottom: 15px;
  right: 20px;
}

.card:hover::after {
  opacity: 1;
  transform: translateX(5px);
}

.learn-more {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  font-size: 15px;
  color: #E8E16B;
  transition: transform 0.3s ease, color 0.3s ease;
}

.card:hover .learn-more {
  transform: translateX(6px);
  color: #004d55;
}

.card:hover {
  background: #d2f3f7;
}

/* CONTACT PAGE LAYOUT */
.contact-page-box {
  display: flex;
  gap: 40px;
  background: var(--bg-card);
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  max-width: 1100px;
  margin: auto;
}

/* FORM LEFT */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: #000000;
  color: var(--text-primary);
}

.contact-form textarea {
  min-height: 130px;
  resize: none;
}

.contact-form button {
  background: var(--accent);
  color: white;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-page-box {
    flex-direction: column;
  }
}

/* PAGE LOAD ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: pageFadeIn 0.8s ease forwards;
}

@keyframes pageFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BACK BUTTON */
.back-link {
  display: inline-block;
  margin-bottom: 25px;
  font-weight: 600;
  color: #006d77;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-link:hover {
  transform: translateX(-6px);
  color: var(--accent-hover);
}

/* PAGE TRANSITIONS */
#page-wrapper {
  opacity: 0;
  transform: translateY(40px);
}

#page-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}


/* FOOTER */
.site-footer {
  background: #000000;
  border-top: 1px solid var(--border-soft);
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Open Sans', sans-serif;
}

.site-footer p,
.site-footer a {
  color: var(--text-muted);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-logo, .footer-links, .footer-contact {
  flex: 1 1 250px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

.footer-logo p {
  font-size: 16px;
  line-height: 1.5;
  color: #d0f0fa;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--accent);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ffffff;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.footer-contact p {
  margin: 6px 0;
}

/* footer-hours styles removed (reverting to previous layout) */

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #b0e0eb;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

/* MOBILE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo, .footer-links, .footer-contact {
    flex: 1 1 100%;
  }

  .footer-links ul li, .footer-contact p {
    margin-bottom: 12px;
  }
}


/* FOOTER LINK ANIMATIONS */
.footer-links ul li a,
.footer-contact a {
  position: relative;
  transition: color 0.3s ease;
}

.footer-links ul li a::after,
.footer-contact a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::after,
.footer-contact a:hover::after {
  width: 100%;
}

/* Fade-in animation for footer on scroll */
.site-footer {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.site-footer.visible {
  opacity: 1;
  transform: translateY(0);
}


.contact-us-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-us-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}


.hero-btn.small-btn {
  margin-top: 10px;
  background: #FF9429;
  font-size: 14px;
  padding: 10px 20px;
}

.hero-btn.small-btn:hover {
  background: #E8E16B;
  transform: scale(1.05);
}

.services {
  width: 100%;
  background: linear-gradient(
    180deg,
    #0e141b 0%,
    #101b24 100%
  );
  padding: 80px 0;
}


/* CONTACT BOX */
.wwd-contact {
  margin-top: 25px;
  padding: 20px 30px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: rgba(0, 194, 209, 0.08);
}

.learn-more-btn {
  color: #0e141b;
  background: var(--accent);
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.learn-more-btn:hover {
  background: var(--accent-hover);
}


/* ============================= */
/* FULL WIDTH HOW IT WORKS */
/* ============================= */

.workflow {
  width: 100%;
  padding: 10px 0 0 0;   /* remove bottom padding */
  margin: 0;
}

.workflow .section-container {
  max-width: 1200px;
  margin: auto;
  background-color: var(--bg-main);
}


/* =========================
   FAQ — FINAL OVERRIDE FIX
========================= */




@media (max-width: 768px) {
  .wwd-container {
    height: 520px;
  }

  .wwd-scroll {
    overflow: visible;
  }

  .wwd-item {
    height: auto;
  }
}



/* WHAT WE DO — NESTED SCROLL */
.what-we-do-section {
  min-height: auto;
  background: var(--bg-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
}

.wwd-title {
  font-size: 42px;
  color: #E8E16B;
  margin-bottom: 60px;
}

.wwd-container {
  flex: 0 0 48%;
  max-width: 48%;
  height: auto;
  border: 2px solid var(--accent);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.04);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    /* enables vertical scroll */
}


.wwd-item {
  height: auto;
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  text-align: center;
  color: white;
}

.wwd-item h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffffff;
}

.wwd-item p {
  font-size: 18px;
  color: #E8E16B;
  margin-bottom:1px;
}

.learn-more-btn {
  align-self: center;
  background: var(--accent);
  color: #0e141b;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.learn-more-btn:hover {
  background: var(--accent-hover);
}


@media (max-width: 768px) {
  .hero-brand {
    flex-direction: column;
    gap: 10px;
  }

  .hero-logo {
    height: 60px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text h2 {
    font-size: 36px;
  }
}

/* subtle gradient overlay for all sections */
section {
  position: relative;
  background: var(--bg-section);
  padding: 0;   /* reduce from 80px */
  margin: 0;
}

.workflow {
  padding-bottom: 0;
}

.badges-section {
  padding-top: 0;
}

/* fade-up animation for scroll appearance */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}


/* accent line under section headings */
.wwd-title::after,
.workflow h2::after,
.faq h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* floating accent shapes for depth */
.section-accent-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(201, 212, 83, 0.1);
  top: 20%;
  left: 10%;
  z-index: 0;
  pointer-events: none;
}


/* subtle text shadow for headers */
.hero h1, .hero h2, .wwd-title {
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}


/* FORCE ALL SECTION HEADINGS TO MATCH WHAT WE DO TITLE */
.wwd-title,
.hero-text h1,
.hero-text h2,
section h2,
.card h3,
.wwd-item h3,
.footer-links h4,
.footer-contact h4 {
  color: var(--accent);
}

.wwd-item h3 {
  color: #FF9429 !important; /* orange for box titles */
}



 .wwd-intro p,
.wwd-intro strong {
  color: #E8E16B;
}



.hero .logo-text {
  color: #E8E16B !important;
}



@keyframes scrollSteps {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;

  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 20px;
}

.steps:hover {
  animation-play-state: paused;
}



@media (max-width: 768px) {
  .steps {
    animation: none;
    overflow-x: auto;
  }
}

.no-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none !important;
}


.carousel {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* LEFT + RIGHT FADE OVERLAY */
.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px; /* controls fade width */
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

/* LEFT FADE */
.carousel::before {
  left: 0;
  background: linear-gradient(to right, #08101A 0%, transparent 100%);
}

/* RIGHT FADE */
.carousel::after {
  right: 0;
  background: linear-gradient(to left, #08101A 0%, transparent 100%);
}



.steps {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollSteps 30s linear infinite;
  align-items: stretch;
  position: relative;
  z-index: 1;
  will-change: transform;
}

.carousel:hover .steps {
  animation-play-state: paused;
}





/* ONLY for What We Do page spacing fix */
.full-viewport-bg .hero.small-hero {
  min-height: auto;          /* removes full screen height */
  padding: 90px 20px 30px;   /* tighter spacing */
}

.services {
  padding: 30px 0;           /* reduce big vertical gap */
}

.wwd-list {
  margin-top: -20px;         /* pulls content closer to hero */
}



.wwd-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto; /* centers everything */
}

.wwd-flex > .wwd-container:first-child {
  flex: 0 0 50%;
  max-width: 50%;
}

.wwd-flex {
  max-width: 1200px;
  margin: 0 auto;
}

.wwd-flex > * {
  min-width: 0;
}

.wwd-right {
  display: flex;
  flex-direction: column; /* keep stacked */
  gap: 30px;
  flex: 0 0 50%;
  max-width: 50%;
}

.wwd-right .wwd-container {
  width: 100%;
  max-width: 100%;
}











/* ============================= */
/* DESKTOP CINEMATIC SECTIONS */
/* ============================= */
@media (min-width: 1200px) {

 
  /* Section containers use wider width */
  .section-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 40px; 
  }

  /* Headings scale dramatically */
  section h2 {
    font-size: 52px;
    margin-bottom: 18px;
  }

  section p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 15px;
  }


 .wwd-container {
    flex: 0 0 48%;
  max-width: 48%;
  height: auto;
  min-height: 500px;
}

  .wwd-item h3 {
    font-size: 36px;
  }

  .wwd-item p {
    font-size: 22px;
  }

 

  /* slight tilt effect on hover */
.wwd-item:hover {
  transform: translateY(-10px) scale(1.02);
  transition: transform 0.3s ease;
}


  /* How It Works section */
  .workflow {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }


}

/* ============================= */
/* HOW IT WORKS – IMAGE BELOW STEP */
/* ============================= */


.step-image {
  width: 100%;       /* scales with the step box */
  max-width: 360px;  /* matches step width */
  border-radius: 12px;
  object-fit: cover;  /* ensures image scales nicely */
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

/* Optional: zoom image on hover like the step box */
.step-container:hover .step-image {
  transform: scale(1.05);
}


.step-list-item {
  margin-bottom: 80px;       /* space between steps */
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step-list-item h2 {
  font-size: 42px;
  color: #FF9429;   /* orange titles for steps */
  margin-bottom: 20px;
}

.step-list-item p {
  font-size: 20px;
  line-height: 1.6;
  color: #E8E16B;
  margin-bottom: 20px;
}


.step-list-item:hover .step-image {
  transform: scale(1.05);
}


.wwd-image {
  width: 100%;
  max-width: 600px;
  margin: 20px auto 0 auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}


img:not([src]), 
img[src=""] {
  display: none;
}


/* ============================= */
/* BADGES SECTION */
/* ============================= */

.badges-section {
  background: var(--bg-section);
  padding: 0px 20px 25px;
  margin-top: 0;              /* remove negative margin */
  text-align: center;
}

.badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.badges-row img {
  width: 160px;       /* controls size */
  height: 160px;      /* keeps them perfectly square */
  object-fit: contain;
  background: #000000;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.badges-row img:hover {
  transform: scale(1.08);
}


/* ============================= */
/* REMOVE GAP BETWEEN SECTIONS */
/* ============================= */


/* remove heading spacing pushing things apart */
.badges-section h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.badges-section {
  margin-bottom: 0;
  padding-bottom: 30px;
}

.workflow {
  margin-top: 0;
  padding-top: 30px;
}


/* reduce heading spacing inside both sections */
.badges-section h2,
.workflow h2 {
  margin-bottom: 12px !important;
}


.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}


.about-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--accent);
  font-size: 32px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}


.about-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-secondary);
}



/* ===================================== */
/* RIGHT SIDE BOX — CLEAN ORGANIZED UI */
/* ===================================== */

.wwd-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wwd-flex {
  align-items: stretch;
}

.wwd-right {
  display: flex;
  flex-direction: column;
}

.services-box,
.stats-box {
  flex: 1;
}

/* both right-side boxes */
.wwd-right .wwd-container {
  background: #000000;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);

  width: 100%;
  max-width: 100%;

  height: auto;
  min-height: unset;
}

/* each content block */
.wwd-right .wwd-item {
  padding: 24px 26px;
  text-align: left;
  transition: background 0.3s ease;
}

/* separator lines */
.wwd-right .wwd-item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* hover effect */
.wwd-right .wwd-item:hover {
  background: rgba(255,255,255,0.02);
}

/* top titles */
.wwd-right .wwd-item h4:first-child {
  font-size: 20px;
  font-weight: 700;
  color: #FF9429;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* description text */
.wwd-right .wwd-item p {
  font-size: 14px;
  font-weight: 400;
  color: #c9d1d9;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* feature list */
.symbol-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.symbol-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* feature rows */
.symbol-list li {
  display: flex;
  align-items: center;
  gap: 10px;

  list-style: none;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #E8E16B;

  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.04);

  transition: all 0.3s ease;
}

/* hover on feature rows */
.symbol-list li:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,0.06);
}
/* arrow icon */
.symbol-list span {
  color: #c05f11;
  font-size: 12px;
}

/* NEW LOWER BOX */
.wwd-right .wwd-container:last-child .wwd-item {
  text-align: center;
}

.wwd-right .wwd-container:last-child h3 {
  color: #FF9429;
  font-size: 24px;
  margin-bottom: 30px;
}

.wwd-right .wwd-container:last-child p {
  color: #c9d1d9;
  font-size: 15px;
  line-height: 1.6;
}



/* ============================= */
/* STATS BOX */
/* ============================= */

.stats-box {
  width: 100%;
  max-width: 100%;
  padding: 22px;
  background: #000000;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-sizing: border-box;
}

.stats-box h3 {
  margin-bottom: 30px;
}

.stats-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
}

.stat-item h3 {
  font-size: 36px;
  color: #FF9429;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item p {
  color: #E8E16B;
  font-size: 15px;
  margin: 0;
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stats-box h4 {
  color: #E8E16B;   /* same yellow as other text */
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;

  margin-top: 28px;
  margin-bottom: 0;

  text-align: center;

  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}



/* TRUSTPILOT ALIGNMENT FIX */
.badges-section h3 {
  margin-top: 35px;
  margin-bottom: 18px;
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
}

.badges-section .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 10px;
  padding: 14px 32px;

  font-size: 16px;
}




.step p::before {
  content: "⌬ ";
  color: #FF9429; /* same orange accent you already use */
  font-weight: 700;
  margin-right: 6px;
  font-size: 25px;
}



/* ============================= */
/* IMAGE SLIDE-IN FROM RIGHT (WWD ONLY) */
/* ============================= */

.wwd-item .wwd-image {
  opacity: 0;
  transform: translateX(80px); /* starts off-screen right */
  transition: all 0.8s ease;
}

/* when JS adds .show (you already do this) */
.wwd-item.fade-up.show .wwd-image {
  opacity: 1;
  transform: translateX(0);
}

/* ============================= */
/* WHAT WE DO: TEXT LEFT / IMAGE RIGHT */
/* ============================= */


/* text on left */
.wwd-item .text-content {
  flex: 1;
}

/* image on right */
.wwd-item .wwd-image {
  flex: 1;
  max-width: 450px;
  width: 100%;
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s ease;
}


@media (max-width: 768px) {
  .wwd-item {
    flex-direction: column;
    text-align: center;
  }

  .wwd-item .wwd-image {
    max-width: 100%;
  }
}


/* ============================= */
/* FINAL WWD LAYOUT (TEXT LEFT / IMAGE RIGHT) */
/* ============================= */

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  text-align: left;
  padding: 40px 20px;
  border-radius: 16px;

  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);

  margin-bottom: 40px;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* hover effect for modern feel */
.service-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.03);
}

/* LEFT TEXT */
.service-item .text-content {
  flex: 1;
}

/* RIGHT IMAGE */
.service-image {
  flex: 1;
  max-width: 450px;
  width: 100%;
  border-radius: 12px;

  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);

  transform: translateX(40px);
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

/* animation */
@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* HEADINGS INSIDE WWD */
.service-item h3 {
  font-size: 28px;
  color: #FF9429;
  margin-bottom: 12px;
}

/* TEXT STYLE */
.service-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #E8E16B;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    text-align: center;
  }

  .service-image {
    transform: none;
    animation: none;
    opacity: 1;
    max-width: 100%;
  }
}