/* --- VARIABLES & RESET --- */
:root {
    --primary-orange: #F94C1B;
    --dark-orange: #e64a19;
    --btn-red: #d32f2f;
    --bg-cream: #FFFEF2;
    --text-dark: #333;
    --font-oswald: 'Oswald', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-poppins);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

ul { list-style: none; }
a { text-decoration: none; }

/* --- HERO SECTION --- */
.hero-section {
    background: url(../assets/Activonbanner.png) no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-wrapper {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 120px; /* navbar space */
}

/* Background Pattern */

.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    background: rgba(255,255,255,0.85);
    padding: 8px 30px;
    border-radius: 50px;
    display: flex;
    margin-bottom: 100px;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-links.left, .nav-links.right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1; 
}
.nav-links.right { justify-content: flex-end; }

.nav-links a {
    color: #444;
    font-weight: 700;
    font-size: 13px;
    margin: 0 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary-orange); }

.nav-links.left {
  gap: 25px;
}
/* Logo hanging adjustment */
.nav-logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.main-logo { height: 75px; }

.btn-buy-nav {
    background-color: var(--btn-red);
    color: white !important;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}
.btn-buy-nav:hover{
  transform: translateY(-3px);background: url(../assets/everygi.png)no-repeat center right / cover; color: #fff ; background-color: #D70F14; transition: 0.3s;
}

.lang-selector {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #333;
    margin-left: 15px;
}

/* ===============================
   NAVBAR PRODUCTS DROPDOWN
================================ */

/* Wrapper */
.products-dropdown {
  position: relative;
}

/* Toggle (SMALL + CLEAN) */
.dropdown-toggle {
  padding: 8px 15px;
  font-weight: 700;
  font-size: 14px;
  color: #ff4a17;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

/* Arrow */
.arrow {
  font-size: 12px;
  transition: transform 0.35s ease;
}

/* Rotate Arrow */
.products-dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  width: 260px;
  background: #fffffff2;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(.17,.67,.83,.67);
}

/* Show */
.products-dropdown.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Items */
.dropdown-item {
  display: block;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 15px;
  background: #FEEDE8;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  color: #5a4c48;
  text-decoration: none;
  transition: 0.3s ease;
  border: 6px solid #fff8f4;
}

/* Active */
.dropdown-item.active {
  background: #ff4a17;
  color: white;
  /* box-shadow: 0 8px 18px rgba(255,74,23,0.35); */
}
.dropdown-item.active:hover{
  color: white;
}
/* Hover */
.dropdown-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  border: none;
  transition: 0.5ms ease-in-out;
}
/* --- HERO CONTENT --- */
.hero-content {
    flex: 1;
    color: white;
}

.hero-content-heading-activon {
  position: relative;
    font-family: var(--font-oswald);
    font-size: 4.2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 280px;
    left: 40px;
}

.hero-subtext {
  position: relative;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    bottom: 270px;
    left: 40px;
}

/* RIGHT PRODUCT IMAGE */
.hero-products-activon {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-products-activon img {
    width: 75%;
    max-width: 450px;
    height: auto;
}
.hero-buttons { margin-bottom: 10px; }

.btn-white {
    background: white;
    color: var(--text-dark);
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-3px);background: url(../assets/everygi.png)no-repeat center right / cover; color: #fff; background-color: #D70F14;transition: 0.3s;}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 1px solid white;
}
.dot.active { background: white; }
.red .dot { border-color: #ccc; background: #ccc; }
.red .dot.active { background: var(--primary-orange); border-color: var(--primary-orange); }


/* SECTION BACKGROUND */
.why-activon,
.benefits {
  padding: 100px 8%;
  background-color: var(--bg-cream);
  font-family: 'Poppins', sans-serif;
}

/* ================= WHY SECTION ================= */

.why-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.why-image img {
  width: 110%;
  /* min-height: 40%; */
  max-width: 600px;
  border-radius: 25px;
  transition: transform 0.6s ease;
}

.why-image img:hover {
  transform: scale(1.03);
}

.why-content {
  max-width: 550px;
}

.why-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.why-content span {
  color: #ff5722;
}

.why-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* ================= BENEFITS ================= */

/* ================= BENEFITS SECTION ================= */

.benefits {
  padding: 100px 5%;
  text-align: center;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 80px;
  color: #3b332b;
}

.section-title span {
  color: #ff5722;
}

/* GRID LAYOUT */
.benefits-wrapper {
  display: grid;
  /* grid-template-columns: 1fr 600px 1fr; */
  grid-template-rows: auto auto;
  align-items: center;
  gap: 40px;
  position: relative;
}

/* CENTER IMAGE */
.benefit-center {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-center img {
  width: 100%;
  max-width: 550px;
  transition: transform 0.5s ease;
}

.benefit-center:hover img {
  transform: scale(1.05);
}

/* BENEFIT BLOCKS */
.benefit {
  max-width: 350px;
}

.benefit.left {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  justify-self: end;
}

.benefit.right.top {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

.benefit.right.bottom {
  grid-column: 3;
  grid-row: 2;
  text-align: left;
}

/* ICON CIRCLE */
.icon-circle {
  width: 70px;
  height: 70px;
  background: #b71c1c;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.benefit:hover .icon-circle {
  transform: scale(1.1);
}

/* TEXT */
.benefit h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: #ff5722;
  margin-bottom: 15px;
}

.benefit p {
  font-size: 1rem;
  color: #4e463f;
  line-height: 1.6;
}
/* carosol */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 1px solid white;
}
.dot.active { background: white; }
.red .dot { border-color: #ccc; background: #ccc; }
.red .dot.active { background: var(--primary-orange); border-color: var(--primary-orange); }


/* ================= BOOST SECTION ================= */
.boost-section {
  padding: 100px 5%;
  text-align: center;
}

.boost-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;

}

.boost-title span {
  color: #ff5722;
}
.boost-p{
        margin-bottom: 60px;
}
/* SLIDER WRAPPER */
.boost-slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
  height: 450px;
}

.boost-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* STACKED SLIDES */
.boost-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8ss ease;
}

/* ACTIVE SLIDE */
.boost-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Background */
.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: all 0.8s ease;
}

/* PRODUCT OVERLAY */
.slide-product {
  position: absolute;
  left: 50%;
  bottom: -20px;
transform: translateX(-80%) translateY(0);
  height: 70vh;
  z-index: 5;
  transition: transform 0.8s ease;
}

/* Slide active product animation */
.boost-slide.active .slide-product {
  transform: translateX(-50%) translateY(0);
}

/* TEXT */
.slide-content {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) translateX(40px);
  width: 35%;
  color: white;
  opacity: 0;
  transition: all 0.8s ease;
  text-align: left;
}

.boost-slide.active .slide-content {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.slide-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.slide-content button {
  margin-top: 20px;
  padding: 12px 35px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.slide-content button:hover{
  transform: translateY(-3px);background: url(../assets/everygi.png)no-repeat center right / cover; color: #fff; background-color: #D70F14;
}
.boost-arrows {
  position: absolute;
  top: 50%;
  left: -35px;
  width: 107%;
    transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}



.arrow-right{
  border-radius: 50%;
  padding: 18px;
    background-color: #FFCC04;
    border: none;
}
.arrow-right:hover {
    background-color: #efbf00;
  transform: scale(1.1);
}
.arrow-left{
  border-radius: 50%;
  padding: 18px;
    background-color: #f6f2e3;
    border: none;
}
.arrow-left:hover {
    background-color: #d5d3cd;
  transform: scale(1.1);
}

/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 100px 5%;
}

.faq-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1400px;
  margin: auto;
}

/* LEFT SIDE */
.faq-left {
  width: 45%;
}

/* VIDEO CARD */
.video-card {
  position: relative;
  width: 85%;
  height: 368px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
  cursor: pointer;
}

/* IMAGE */
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* VERY IMPORTANT */
  border-radius: 20px;
  transition: transform 0.6s ease;
}

/* HOVER ZOOM */
.video-card:hover img {
  transform: scale(1.05);
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.play-btn span {
  color: #ff5722;
  font-size: 20px;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* DOTS */
.video-dots {
  text-align: center;
  margin-top: 20px;
}

.video-dots .dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}

.video-dots .active {
  background: #ff5722;
}

/* RIGHT SIDE */

.faq-right {
  width: 55%;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
}

.highlight {
  color: #ff5722;
}

/* ACCORDION */

.faq-accordion {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 15px;
  /* background: white; */
  overflow: hidden;
  transition: 0.3s;
}

.faq-head {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-head h3 {
  font-size: 1.1rem;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: 0.4s ease;
}

.faq-item.active {
  background: #ff6a00;
  color: white;
}

.faq-item.active .faq-body {
  max-height: 150px;
  padding: 15px 25px 25px;
}

.faq-item.active i {
  transform: rotate(180deg);
}

/* --- SUBSCRIBE --- */
.subscribe-section { padding: 50px 2% 140px 2%; display: flex; justify-content: center; }
.subscribe-card {
    background: linear-gradient(90deg, #ff7043, #d32f2f);
    width: 96%;
    height: 30%;
    max-width: 1600px;
    border-radius: 30px;
    padding: 4%;
    position: relative;
    display: flex;
}
/* Chevron Background */
.subscribe-card::after {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
    border-radius: 0 30px 30px 0;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 40px, transparent 40px, transparent 80px);
    pointer-events: none;
}
.sub-text { width: 50%; position: relative; z-index: 2; color: white; }
.sub-text h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.sub-text form { display: flex; flex-direction: column; gap: 20px; }
.sub-text label { font-size: 13px; margin-bottom: 5px; opacity: 0.9; display: block; }
.sub-text input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 10px 0;
    color: white;
    outline: none;
}
.form-row { display: flex; gap: 30px; }
.form-group.full { width: 100%; }
.form-group { flex: 1; }
.btn-submit {
    background: white;
    color: #333;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    width: fit-content;
    margin-top: 20px;
    cursor: pointer;
}
.btn-submit:hover{
  transform: translateY(-3px);background: url(../assets/everygi.png)no-repeat center right / cover; color: #fff; background-color: #D70F14;
}
/* Runner Image popping out */
.sub-image {
    height: 600px;
    position: absolute;
    right: 80px;
    bottom: 30px;
    width: 690px;
    z-index: 5;
}
.sub-image img { width: 100%; display: block; }

/* --- FOOTER --- */
footer { padding-top: 60px; }
.footer-top {
    display: flex;
    justify-content: space-between;
    width: 96%;
    max-width: 1700px;
    margin: 0 auto 50px auto;
    padding: 0 2%;
}
.footer-col.left { flex: 1; display: flex; gap: 15px; color: #555; font-size: 14px; line-height: 1.5; }
.footer-col.left i { color: #e91e63; font-size: 22px; }
.footer-col.center { flex: 1; text-align: center;}
.footer-col.center img{
    height: 102px;
    width: 164px;
}
.footer-col.right { flex: 1; display: flex; justify-content: flex-end; gap: 30px; font-weight: 700; font-size: 14px; }
.footer-col.right a { color: #333; }
.footer-bottom {
    margin: 10px;
    background: var(--primary-orange);
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    border-radius: 50px;
}
.socials a { color: white; margin: 0 10px; font-size: 18px; }

.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #00c853;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 900px) {
    .navbar {
        width: 90%;
        padding: 15px 20px;
        flex-direction: column;
        height: auto;
    }
    .nav-left, .nav-right { display: none; }
    
    .shop-grid, .experience-grid, .blog-grid { grid-template-columns: 1fr; }
    .experience-grid { grid-template-columns: 1fr 1fr; }
    
    .video-card.pos-down { margin-top: 0; }
    
    .activon-upper, .activon-lower { height: auto; }
    .activon-lower { padding-bottom: 60px; }
    
    .subscribe-card { flex-direction: column; overflow: hidden; padding-bottom: 0; }
    .sub-text { width: 100%; margin-bottom: 20px; }
    .sub-image { position: relative; right: 0; bottom: 0; width: 80%; margin: 0 auto; }
    
    .footer-top { flex-direction: column; text-align: center; gap: 30px; }
    .footer-col.right { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}


/* ===============================
   SCROLL REVEAL BASE
================================ */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Left Slide */
.reveal-left {
  opacity: 0;
  transform: translateX(-680px);
  transition: all 1s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease;

}

/* Right Slide */
.reveal-right {
  opacity: 0;
  transform: translateX(550px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.5s ease;

}




/* WHERE TO BUY */


.where-buy {
  padding: 0 100px 100px 0 5%;
  text-align: center;
}

/* TITLE */
.where-title {
  font-family: 'Oswald', sans-serif;
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #3b332b;
}

.where-title span {
  color: #ff4d00;
}

/* SUBTITLE */
.where-subtitle {
  font-size: 1rem;
  color: #6b625a;
  margin-bottom: 60px;
}

/* CARDS WRAPPER */
.buy-platforms {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* INDIVIDUAL CARD */
.platform-card {
  width: 190px;
  height: 95px;
  background: #ffffff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 13px 12px 20px rgb(255 99 0 / 17%);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgb(255 99 0 / 17%);
}

/* IMAGE */
.platform-card img {
  /* max-width: 120px; */
  /* max-height: 50px; */
  object-fit: contain;
} 
.platform-card:nth-child(1) img{
  position: absolute;
  height: 140px;
  width: 168px;
}
.platform-card:nth-child(2) img{
  position: absolute;
  height: 140px;
  width: 114px;
}.platform-card:nth-child(3) img{
  position: absolute;
  height: 140px;
  width: 168px;
}.platform-card:nth-child(4) img{
  position: absolute;
  height: 140px;
  width: 168px;
}.platform-card:nth-child(5) img{
  position: absolute;
  height: 140px;
  width: 168px;
}