/* Header and Footer css only */

/* =====================================================
   WHF 2026 DESIGN SYSTEM
===================================================== */
:root {
    --green-main: #00C853;
    --green-dark: #009624;
    --green-light: #69F0AE;
    --dark: #07130D;
    --dark-2: #0B1F15;
    --white: #ffffff;
    --text-soft: #A8B8AF;
    --border: rgba(255, 255, 255, .12);
    --shadow: 0 25px 70px rgba(0, 0, 0, .45);
    --transition: .35s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    font-family: Inter, system-ui, sans-serif;
  }
  
  a {
    text-decoration: none;
  }
  
  /* =====================================================
     HEADER
  ===================================================== */
  .whf2026-header {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 70px);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 19, 13, .88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  
  /* LOGO */
  .whf2026-logo {
    display: flex;
    align-items: center;
  }
  
  .whf2026-logoImg {
    width: auto;
    height: 65px;
    border-radius: 50%;
  }
  
  .whf2026-logoText {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
  }
  
  /* =====================================================
     NAVIGATION
  ===================================================== */
  .whf2026-navList {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
  }
  
  .whf2026-navItem {
    position: static;
  }
  
  .whf2026-navLink {
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: .3s;
  }
  
  .whf2026-navLink:hover {
    background: rgba(0, 200, 83, .15);
    color: var(--green-light);
  }
  
  /* Make Tools button look like normal navigation text */
  .whf2026-megaTrigger {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: white;
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  /* =====================================================
     DESKTOP FULL WIDTH MEGA MENU
  ===================================================== */
  .whf2026-megaMenu {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translate(-50%, 20px);
    width: 100vw;
    max-width: 100%;
    padding: 40px clamp(20px, 8vw, 100px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, #0B1F15, #07130D);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
  }
  
  .whf2026-hasMega:hover .whf2026-megaMenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  
  .whf2026-megaHeading {
    color: var(--green-light);
    margin-bottom: 15px;
  }
  
  .whf2026-megaLink {
    display: block;
    color: var(--text-soft);
    padding: 8px 0;
    transition: .3s;
  }
  
  .whf2026-megaLink:hover {
    color: white;
    transform: translateX(8px);
  }
  
  /* =====================================================
     HAMBURGER
  ===================================================== */
  .whf2026-navToggle {
    display: none;
    background: none;
    border: 0;
  }
  
  .whf2026-navToggleBar {
    width: 28px;
    height: 3px;
    display: block;
    margin: 5px;
    background: white;
    border-radius: 20px;
  }
  
  /* =====================================================
     FOOTER
  ===================================================== */
  .whf2026-footer {
    background: radial-gradient(circle at top, #10351F, #050B07);
    padding: 70px clamp(20px, 5vw, 80px) 25px;
    color: white;
  }
  
  .whf2026-footerContainer {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
  }
  
  .whf2026-footerLogo {
    display: flex;
    align-items: center;
  }

  .whf2026-footerLogoImg {
    width: auto;
    height: 65px;
    border-radius: 50%;
  }
  
  .whf2026-footerBrandName {
    font-size: 1.4rem;
    font-weight: 700;
  }
  
  .whf2026-footerDesc {
    margin: 20px 0;
    line-height: 1.7;
    color: var(--text-soft);
  }
  
  /* SOCIAL */
  .whf2026-socialLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .whf2026-socialLink {
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    color: white;
    transition: .3s;
  }
  
  .whf2026-socialLink:hover {
    background: var(--green-main);
    transform: translateY(-4px);
  }
  
  .whf2026-footerHeading {
    color: var(--green-light);
    margin-bottom: 20px;
  }
  
  .whf2026-footerNav {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .whf2026-footerLink {
    color: var(--text-soft);
    transition: .3s;
  }
  
  .whf2026-footerLink:hover {
    color: white;
    transform: translateX(8px);
  }
  
  .whf2026-footerBottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
  }
  
  .whf2026-legalNav {
    display: flex;
    gap: 20px;
  }
  
  .whf2026-legalLink {
    color: var(--text-soft);
  }
  
  /* =====================================================
     MOBILE NAVIGATION + FOOTER
  ===================================================== */
  @media(max-width: 768px) {
    .whf2026-header {
      height: 75px;
      padding: 0 20px;
    }
    .whf2026-navToggle {
      display: block;
      width: 40px;
      height: 40px;
      position: relative;
      z-index: 2000;
    }
    .whf2026-navToggleBar {
      width: 28px;
      height: 3px;
      margin: 6px auto;
      transition: .35s ease;
    }
    .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(2) {
      opacity: 0;
    }
    .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    .whf2026-nav {
      position: fixed;
      top: 75px;
      left: 0;
      width: 85%;
      height: calc(100vh - 75px);
      background: linear-gradient(160deg, #0B1F15, #07130D);
      transform: translateX(-100%);
      transition: .45s ease;
      overflow-y: auto;
      z-index: 1500;
      border-right: 1px solid var(--border);
    }
    .whf2026-nav.active {
      transform: translateX(0);
    }
    .whf2026-navList {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 5px;
      padding: 25px;
    }
    .whf2026-navLink {
      width: 100%;
      justify-content: space-between;
      padding: 15px 10px;
      border-radius: 10px;
    }
    .whf2026-navLink:hover {
      background: none;
    }
    .whf2026-hasMega {
      position: relative;
    }
    .whf2026-megaTrigger {
      width: 100%;
      justify-content: space-between;
    }
    .whf2026-megaTrigger::after {
      content: "›";
      font-size: 22px;
      transition: .3s;
    }
    .whf2026-hasMega.active .whf2026-megaTrigger::after {
      transform: rotate(90deg);
    }
    .whf2026-megaMenu {
      position: static;
      width: 100%;
      padding: 10px 15px;
      display: none;
      grid-template-columns: 1fr;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: none;
    }
    .whf2026-hasMega:hover .whf2026-megaMenu {
      transform: none;
    }
    .whf2026-megaMenu {
      left: auto;
      top: auto;
      transform: none !important;
      width: 100%;
    }
    .whf2026-hasMega.active .whf2026-megaMenu {
      display: block;
    }
    .whf2026-megaCol {
      margin-bottom: 20px;
    }
    .whf2026-megaHeading {
      font-size: .9rem;
    }
    .whf2026-footer {
      padding: 50px 20px 25px;
    }
    .whf2026-footerContainer {
      grid-template-columns: 1fr;
      gap: 35px;
    }
    .whf2026-footerBrand,
    .whf2026-footerDesc,
    .whf2026-footerCol,
    .whf2026-addressLine,
    .whf2026-footerBottom {
      text-align: center;
    }
    .whf2026-footerLogo,
    .whf2026-socialLinks,
    .whf2026-footerNav,
    .whf2026-footerBottom {
      align-items: center;
      justify-content: center;
    }
    .whf2026-footerBottom {
      flex-direction: column;
      gap: 20px;
    }
    .whf2026-legalNav {
      flex-direction: column;
      gap: 12px;
    }
  }
  
  /* =====================================================
     SEO TOOLS HOMEPAGE SECTION
  ===================================================== */
  .seo-tools-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 25px 50px;
    text-align: center;
  }
  
  .seo-tools-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    font-weight: 800;
    color: #071a0f;
    margin-bottom: 25px;
  }
  
  .seo-tools-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
  }
  
  /* =====================================================
     SEO TOOLS SECTION
  ===================================================== */
  .seo-tools-section {
    max-width: 1200px;
    margin: auto;
    padding: 50px 25px 80px;
  }
  
  .seo-tools-section h2,
  .seo-benefits h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 750;
    color: var(--dark);
    margin-bottom: 45px;
  }
  
  /* =====================================================
     SEO TOOL CARDS GRID
  ===================================================== */
  .seo-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  /* =====================================================
     TOOL CARD
  ===================================================== */
  .seo-tool-card {
    background: var(--dark-2);
    border-radius: 20px;
    padding: 35px 30px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(105, 240, 174, .18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .seo-tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 200, 83, .18);
  }
  
  /* =====================================================
     CARD CONTENT
  ===================================================== */
  .seo-tool-card h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 0 0 18px;
    color: var(--green-light);
  }
  
  .seo-tool-card p {
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.75;
    margin: 0;
  }
  
  /* =====================================================
     CARD BUTTON
  ===================================================== */
  .seo-tool-card a {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 12px 22px;
    background: var(--green-main);
    color: var(--dark);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: background var(--transition), transform var(--transition);
  }
  
  .seo-tool-card a:hover {
    background: var(--green-light);
    transform: translateY(-2px);
  }
  
  /* =====================================================
     BENEFITS SECTION
  ===================================================== */
  .seo-benefits {
    max-width: 900px;
    margin: auto;
    padding: 50px 25px 100px;
    text-align: center;
  }
  
  .seo-benefits p {
    color: #55635b;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .seo-benefits ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
  }
  
  .seo-benefits li {
    background: #f8fcf9;
    border-left: 4px solid var(--green-main);
    padding: 18px;
    text-align: left;
    border-radius: 12px;
    color: var(--dark);
  }
  
  /* =====================================================
     RESPONSIVE DESIGN
  ===================================================== */
  @media(max-width: 1000px) {
    .seo-tools-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media(max-width: 600px) {
    .seo-tools-grid {
      grid-template-columns: 1fr;
    }
    .seo-benefits ul {
      grid-template-columns: 1fr;
    }
    .seo-tools-section h2,
    .seo-benefits h2 {
      font-size: 1.6rem;
    }
    .seo-tool-card {
      padding: 35px 30px;
      min-height: 300px;
    }
    .seo-tool-card h3 {
      margin: 0;  
    }
    .seo-tool-card a {
      margin: 0;
    }
  }
  
  /* =====================================================
     ONE TIME FOCUS SHINE EFFECT
  ===================================================== */
  .shine-on-load,
  .shine-card {
    position: relative;
    overflow: hidden;
  }
  
  .shine-once::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-25deg);
    animation: shineEffect 1.8s cubic-bezier(.4, 0, .2, 1) forwards;
  }
  
  @keyframes shineEffect {
    from { left: -120%; }
    to { left: 150%; }
  }



  /* ==========================================
   REPORT PROCESS SECTION
========================================== */

.report-process-section > h2{

  max-width:900px;

  margin:0 auto 55px;

  text-align:center;

  font-size:2rem;

  line-height:1.25;

  font-weight:700;

  color:#07130D;

  letter-spacing:-0.5px;

}


.report-process-section{

  padding:50px 50px;
  background:#ffffff;

}

.report-process-container{

  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:70px;

  align-items:center;

}

/* ==========================================
 SLIDER
========================================== */

.report-slider{

  position:relative;

}

.report-slider-wrapper{

  position:relative;

  overflow:hidden;

  border-radius:18px;

  aspect-ratio:16/10;

  box-shadow:
      0 18px 45px rgba(0,0,0,.12);

  background:#f6f6f6;

}

.report-slide{

  position:absolute;

  inset:0;

  width:100%;
  height:85%;

  object-fit:cover;

  opacity:0;
  visibility:hidden;

  transition:
      opacity .45s ease,
      visibility .45s ease;

}

.report-slide.active{

  opacity:1;
  visibility:visible;

}

/* ==========================================
 BUTTONS
========================================== */

.report-slider-btn{

  position:absolute;

  top:50%;

  transform:translateY(-50%);

  width:52px;
  height:52px;

  border:none;

  border-radius:50%;

  background:#ffffff;

  color:#07130D;

  font-size:24px;

  cursor:pointer;

  box-shadow:
      0 10px 25px rgba(0,0,0,.15);

  transition:.25s;

  z-index:10;

}

.report-slider-btn:hover{

  background:#009624;

  color:#ffffff;

  transform:translateY(-50%) scale(1.08);

}

.report-slider-btn.prev{

  left:-26px;

}

.report-slider-btn.next{

  right:-26px;

}

/* ==========================================
 CONTENT
========================================== */

/* ==========================================
   CONTENT
========================================== */

.report-content h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #07130D;
  line-height: 1.3;
}

.report-content-ol {
  margin: 0;
  padding-left: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.report-content-ol li {
  color: #4B5B53;
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 6px;
}

.report-content-ol li::marker {
  color: #009624;
  font-weight: 700;
}

/* ==========================================
 RESPONSIVE
========================================== */

@media (max-width:1000px){

  .report-process-container{

      grid-template-columns:1fr;

      gap:45px;

  }

  .report-content{

      text-align:center;

  }

  .report-steps li{

      text-align:left;

  }

}

@media (max-width:768px){

  .report-process-section{

      padding:70px 20px;

  }
  .report-process-section h2{

    font-size: 1.6rem;

  }

  .report-content h2{

      font-size:30px;

  }

  .report-slider-btn{

      width:44px;
      height:44px;

      font-size:20px;

  }

  .report-slider-btn.prev{

      left:10px;

  }

  .report-slider-btn.next{

      right:10px;

  }

  .report-steps li{

      font-size:16px;

  }

}







/* ==========================================================================
   Small Changes, Big Difference Section
   Isolated styles — does not affect other sections
   ========================================================================== */

   .small-changes-section {
    background: #FFFFFF;
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.small-changes-section #small-changes-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.small-changes-section > p {
    color: #55635b;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px auto;
}

.small-changes-section > p b {
    color: var(--dark);
    font-weight: 600;
}

/* Grid of issue-severity cards */
.small-changes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.issue-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(7, 19, 13, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.issue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(7, 19, 13, 0.1);
    border-color: var(--green-main);
}

/* Severity badge / accent bar */
.issue-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green-light);
    transition: background 0.35s ease;
}

.issue-card.severity-medium::before {
    background: var(--green-main);
}

.issue-card.severity-high::before {
    background: var(--green-dark);
}

.issue-card .issue-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--green-dark);
    background: rgba(0, 200, 83, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.issue-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.issue-card p {
    color: #55635b;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Closing statement */
.small-changes-note {
    background: var(--dark-2);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
}

.small-changes-note p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.small-changes-note b {
    color: var(--green-light);
}

/* ---- One-time shine on viewport entry (reuses your shine-card pattern) ---- */
.issue-card.shine-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
}

.issue-card.shine-card.in-view::after {
    animation: shineSweep 1.4s ease-in-out forwards;
}

@keyframes shineSweep {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

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

@media (max-width: 640px) {
    .small-changes-section {
        padding: 44px 18px;
    }

    .small-changes-section #small-changes-heading {
        font-size: 1.6rem;
    }

    .small-changes-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .issue-card {
        padding: 22px 20px;
    }

    .small-changes-note {
        padding: 20px 20px;
    }
}