/* ============================================
   AsNutritionLabs - Premium Fitness Supplements
   Main Stylesheet
   ============================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary: #ffd400;
  --primary-dark: #e6bf00;
  --primary-light: #ffe44d;
  --secondary: #ff3b30;
  --secondary-dark: #e0352b;
  --dark: #111111;
  --dark-light: #1a1a1a;
  --gray-900: #212529;
  --gray-800: #343a40;
  --gray-700: #495057;
  --gray-600: #6c757d;
  --gray-500: #adb5bd;
  --gray-400: #ced4da;
  --gray-300: #dee2e6;
  --gray-200: #e9ecef;
  --gray-100: #f8f9fa;
  --white: #ffffff;
  --bg: #f8f9fa;
  --border-radius: 15px;
  --border-radius-sm: 10px;
  --border-radius-pill: 50px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --font: 'Poppins', sans-serif;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-family: var(--font);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  outline: none;
}

input,
textarea,
select {
  font-family: var(--font);
  outline: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.section-title {
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.6rem;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 5rem;
  font-weight: 400;
}

.section-title span {
  color: var(--primary);
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- SECTION PADDING ---------- */
section {
  padding: 10rem 0;
}

/* ============================================
   HEADER / TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark);
  padding: 1rem 0;
  font-size: 1.3rem;
  color: var(--gray-400);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.top-bar-left a:hover {
  color: var(--primary);
}

.top-bar-left i {
  color: var(--primary);
  font-size: 1.4rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1.4rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ---------- NAVIGATION ---------- */
.navbar {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.logo {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--primary);
}

.logo i {
  color: var(--primary);
  font-size: 2.6rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gray-800);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Inquiry Button */
.btn-inquiry {
  background: var(--primary);
  color: var(--dark);
  padding: 1.1rem 2.8rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 212, 0, 0.3);
}

.btn-inquiry:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 212, 0, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
}

.hamburger span {
  width: 2.8rem;
  height: 0.3rem;
  background: var(--dark);
  border-radius: 5px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO / BANNER SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider .swiper {
  height: 100%;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.slide-content h1 {
  font-size: 6rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.slide-content h1 span {
  color: var(--primary);
  display: block;
}

.slide-content p {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3.5rem;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  padding: 1.5rem 3.5rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255, 212, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 212, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1.5rem 3.5rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid var(--white);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Swiper Pagination */
.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

/* ============================================
   AUTHENTICITY SECTION
   ============================================ */
.authenticity {
  background: var(--dark);
  padding: 6rem 0;
}

.auth-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.auth-wrapper .section-title {
  color: var(--white);
}

.auth-wrapper .section-subtitle {
  color: var(--gray-500);
}

.auth-form {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.auth-form input {
  flex: 1;
  min-width: 220px;
  padding: 1.4rem 2rem;
  border-radius: var(--border-radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
}

.auth-form input::placeholder {
  color: var(--gray-500);
}

.auth-form input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.btn-verify {
  background: var(--primary);
  color: var(--dark);
  padding: 1.4rem 3.5rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-verify:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Verification Result */
.verify-result {
  margin-top: 2rem;
  display: none;
}

.verify-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #28a745;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

.verify-card i {
  font-size: 5rem;
  color: #28a745;
  margin-bottom: 1.5rem;
}

.verify-card h3 {
  color: #28a745;
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.verify-card p {
  color: var(--gray-400);
  font-size: 1.4rem;
}

/* ============================================
   ABOUT SECTION (Home)
   ============================================ */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.about-img-main {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
}

.about-img-sub {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 200px;
}

.about-img-main img,
.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-img-main:hover img,
.about-img-sub:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--primary);
  color: var(--dark);
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 2.4rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-badge small {
  font-size: 1.1rem;
  font-weight: 500;
}

.about-content h2 {
  font-size: 3.6rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about-feature i {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.about-feature div h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.about-feature div p {
  font-size: 1.3rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.btn-read-more {
  background: var(--dark);
  color: var(--white);
  padding: 1.3rem 3rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
}

.btn-read-more:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================
   PROMOTIONAL BANNER
   ============================================ */
.promo-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 10rem 0;
  overflow: hidden;
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.promo-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.promo-text {
  flex: 1;
}

.promo-text h2 {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.promo-text h2 span {
  color: var(--primary);
}

.promo-text p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.promo-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-bottle {
  max-height: 450px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  background: var(--primary);
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation: floatShape 4s ease-in-out infinite;
}

.shape-2 {
  width: 50px;
  height: 50px;
  top: 60%;
  left: 5%;
  animation: floatShape 5s ease-in-out infinite 0.5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 15%;
  animation: floatShape 6s ease-in-out infinite 1s;
}

.shape-4 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  right: 10%;
  animation: floatShape 3.5s ease-in-out infinite 1.5s;
}

/* ============================================
   PRODUCTS SECTION (Home)
   ============================================ */
.products-section {
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  padding: 3rem 2rem 2rem;
  text-align: center;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img {
  max-height: 200px;
  transition: var(--transition-slow);
  object-fit: contain;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--secondary);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.2rem;
  font-weight: 600;
}

.product-badge.new {
  background: #28a745;
}

.product-actions {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-actions button {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-actions button:hover {
  background: var(--primary);
  color: var(--dark);
}

.product-info {
  padding: 2rem;
}

.product-category {
  font-size: 1.2rem;
  color: var(--primary-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-name a:hover {
  color: var(--primary-dark);
}

.product-desc {
  font-size: 1.3rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.product-features-list li {
  font-size: 1.2rem;
  color: var(--gray-500);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-features-list li i {
  color: var(--primary);
  font-size: 1rem;
}

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.product-old-price {
  font-size: 1.4rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-rating i {
  color: var(--primary);
  font-size: 1.3rem;
}

.product-rating span {
  font-size: 1.3rem;
  color: var(--gray-600);
}

.btn-view-details {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.1rem;
  border-radius: var(--border-radius-pill);
  background: var(--dark);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-view-details:hover {
  background: var(--primary);
  color: var(--dark);
}

/* View All Button */
.view-all-wrap {
  text-align: center;
  margin-top: 4rem;
}

.btn-view-all {
  background: transparent;
  color: var(--dark);
  padding: 1.4rem 3.5rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.5rem;
  font-weight: 600;
  border: 2px solid var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
}

.btn-view-all:hover {
  background: var(--dark);
  color: var(--white);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-card {
  text-align: center;
  padding: 4rem 2.5rem;
  border-radius: var(--border-radius);
  background: var(--bg);
  transition: var(--transition);
  border: 2px solid transparent;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.why-icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
}

.why-icon i {
  font-size: 3rem;
  color: var(--primary-dark);
  transition: var(--transition);
}

.why-card:hover .why-icon i {
  color: var(--dark);
}

.why-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 1.4rem;
  color: var(--gray-600);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover {
  color: var(--primary-dark);
}

.faq-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 2.5rem 2.5rem;
  color: var(--gray-600);
  font-size: 1.5rem;
  line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-img {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  border: 3px solid var(--primary);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-rating {
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: var(--primary);
  font-size: 1.5rem;
}

.testimonial-text {
  font-size: 1.5rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-role {
  font-size: 1.3rem;
  color: var(--gray-500);
}

/* Swiper Testimonial */
.testimonials-swiper {
  padding-bottom: 5rem;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: var(--gray-400);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 25px;
  border-radius: 5px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.5rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.btn-subscribe {
  background: var(--primary);
  color: var(--dark);
  padding: 1.5rem 3rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 12rem 0;
  text-align: center;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner-content h1 {
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  color: var(--gray-400);
}

.breadcrumb a {
  color: var(--primary);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 7rem 0 2rem;
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 4rem;
}

.footer-col h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-about p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-links li {
  margin-bottom: 1.2rem;
}

.footer-links a {
  font-size: 1.4rem;
  color: var(--gray-400);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.footer-contact i {
  color: var(--primary);
  font-size: 1.6rem;
  margin-top: 0.3rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social .social-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-social .social-icon:hover {
  background: var(--primary);
  color: var(--dark);
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 1.4rem;
}

/* Back To Top */
.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
/* Company Intro */
.company-intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-images {
  position: relative;
}

.intro-img-large {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 450px;
}

.intro-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-img-small {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 220px;
  height: 220px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.intro-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-text h2 {
  font-size: 3.6rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.intro-text h2 span {
  color: var(--primary);
}

.intro-text p {
  font-size: 1.5rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Mission & Vision */
.mission-vision {
  background: var(--bg);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mv-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 4rem 3rem;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.mv-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mv-icon {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 3.5rem;
  color: var(--primary-dark);
  transition: var(--transition);
}

.mv-card:hover .mv-icon {
  background: var(--primary);
  color: var(--dark);
}

.mv-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.mv-card p {
  font-size: 1.5rem;
  color: var(--gray-600);
}

/* Timeline */
.timeline-section {
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gray-300);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  z-index: 2;
  top: 0;
}

.timeline-content {
  width: 45%;
  background: var(--bg);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.timeline-year {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-pill);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.timeline-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.timeline-content p {
  font-size: 1.4rem;
  color: var(--gray-600);
}

/* Certificates */
.certificates-section {
  background: var(--bg);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.cert-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.cert-card i {
  font-size: 4.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.cert-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.cert-card p {
  font-size: 1.3rem;
  color: var(--gray-500);
}

/* Team */
.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  background: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-pill);
  box-shadow: var(--shadow);
}

.team-social a {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gray-600);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: var(--dark);
}

.team-card h3 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}

.team-card span {
  font-size: 1.3rem;
  color: var(--gray-500);
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-page {
  background: var(--bg);
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
}

.search-box input {
  padding: 1rem 1.5rem 1rem 4rem;
  border-radius: var(--border-radius-pill);
  border: 2px solid var(--gray-300);
  font-size: 1.4rem;
  width: 280px;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--primary);
}

.search-box i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  font-size: 1.5rem;
}

.toolbar-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-select {
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-pill);
  border: 2px solid var(--gray-300);
  font-size: 1.4rem;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  min-width: 150px;
}

.filter-select:focus {
  border-color: var(--primary);
}

/* ============================================
   PRODUCT DETAILS PAGE
   ============================================ */
.product-detail-section {
  background: var(--white);
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.pd-gallery {
  position: relative;
}

.pd-main-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--bg);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.pd-main-img img {
  max-height: 400px;
  object-fit: contain;
}

.pd-thumbs {
  display: flex;
  gap: 1.5rem;
}

.pd-thumb {
  width: 90px;
  height: 90px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-thumb.active,
.pd-thumb:hover {
  border-color: var(--primary);
}

.pd-thumb img {
  max-height: 70px;
  object-fit: contain;
}

.pd-info h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.pd-rating i {
  color: var(--primary);
  font-size: 1.5rem;
}

.pd-rating span {
  font-size: 1.4rem;
  color: var(--gray-600);
}

.pd-price-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pd-price {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--dark);
}

.pd-old-price {
  font-size: 1.8rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.pd-discount {
  background: var(--secondary);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.3rem;
  font-weight: 600;
}

.pd-desc {
  font-size: 1.5rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Flavor & Size Options */
.pd-options {
  margin-bottom: 2.5rem;
}

.pd-options h4 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.option-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.option-btn {
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius-pill);
  border: 2px solid var(--gray-300);
  background: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.option-btn:hover,
.option-btn.active {
  border-color: var(--primary);
  background: rgba(255, 212, 0, 0.1);
}

/* Product Tabs */
.pd-tabs-section {
  margin-top: 6rem;
}

.pd-tabs-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 3rem;
}

.pd-tab-btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-600);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.pd-tab-btn.active {
  color: var(--dark);
  border-bottom-color: var(--primary);
}

.pd-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.pd-tab-content.active {
  display: block;
}

.pd-tab-content p,
.pd-tab-content li {
  font-size: 1.5rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pd-tab-content ul {
  padding-left: 2rem;
}

.pd-tab-content ul li {
  list-style: disc;
}

/* Related Products */
.related-products {
  background: var(--bg);
  padding-top: 8rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-section {
  background: var(--white);
  padding: 6rem 0 2rem;
}

.contact-cards {
  display: grid;
 grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: -8rem;
  position: relative;
  z-index: 3;
}

.contact-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.cc-icon {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.8rem;
  color: var(--primary-dark);
  transition: var(--transition);
}

.contact-card:hover .cc-icon {
  background: var(--primary);
  color: var(--dark);
}

.contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 1.4rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* Contact Form */
.contact-form-section {
  background: var(--bg);
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form-wrap h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.contact-form-wrap h2 span {
  color: var(--primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 1.3rem 1.8rem;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--gray-300);
  font-size: 1.5rem;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  background: var(--primary);
  color: var(--dark);
  padding: 1.5rem 3.5rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 212, 0, 0.4);
}

/* Map */
.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--gray-500);
}

.map-placeholder i {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  color: var(--gray-400);
}

.map-placeholder p {
  font-size: 1.5rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}
.text-primary {
  color: var(--primary);
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-5 {
  margin-bottom: 5rem;
}

/* ============================================
   LANDING PAGE STYLES
   ============================================ */

/* ---------- LANDING NAVIGATION ---------- */
.landing-nav {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
}

.landing-nav .logo {
  color: var(--white);
}

.landing-nav .logo span {
  color: var(--primary);
}

.landing-nav.scrolled {
  background: rgba(17, 17, 17, 0.98);
}

/* ---------- LANDING HERO ---------- */
.landing-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12rem 0 8rem;
}

.landing-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.landing-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--d) ease-in-out infinite;
}

@keyframes particleFloat {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  20% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
    transform: translateY(-30px) scale(1);
  }
  80% {
    opacity: 0.3;
  }
}

.landing-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 59, 48, 0.2);
  border: 1px solid rgba(255, 59, 48, 0.4);
  color: var(--secondary);
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge i {
  font-size: 1.6rem;
}

/* Hero Heading */
.landing-hero-content h1 {
  font-size: 7rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -2px;
}

.landing-hero-content h1 span {
  color: var(--primary);
  position: relative;
}

.landing-hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--primary);
  opacity: 0.3;
  border-radius: 3px;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--primary);
  font-weight: 700;
}

/* Countdown Timer */
.countdown-wrap {
  margin-bottom: 4rem;
}

.countdown-label {
  font-size: 1.5rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem;
  min-width: 100px;
}

.countdown-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-text {
  font-size: 1.2rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.countdown-sep {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  margin-top: -1.5rem;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-lg {
  padding: 1.8rem 4rem;
  font-size: 1.7rem;
}

.pulse-btn {
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Trust Strip */
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--primary);
  font-size: 1.8rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  cursor: pointer;
}

.scroll-indicator span {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  animation: scrollDot 1.5s ease-in-out infinite;
  opacity: 0;
}

.scroll-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.scroll-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

/* ============================================
   LANDING STATS BAR
   ============================================ */
.landing-stats {
  background: var(--dark);
  padding: 4rem 0;
  border-bottom: 3px solid var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.stat-icon {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 2.2rem;
  color: var(--primary);
}

.stat-info {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.stat-info .stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
}

.stat-info span:not(.stat-number) {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-info p {
  font-size: 1.3rem;
  color: var(--gray-500);
  width: 100%;
  margin-top: 0.2rem;
}

/* ============================================
   LANDING DEALS
   ============================================ */
.landing-deals {
  background: var(--bg);
  padding: 10rem 0;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.deal-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.deal-card.featured-card {
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.15);
}

.deal-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--secondary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.5px;
}

.deal-badge-green {
  background: #28a745;
}
.deal-badge-red {
  background: var(--secondary);
}

.deal-img {
  background: var(--gray-100);
  padding: 3rem 2rem;
  text-align: center;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.deal-img img {
  max-height: 240px;
  transition: var(--transition-slow);
  object-fit: contain;
}

.deal-card:hover .deal-img img {
  transform: scale(1.08);
}

.deal-info {
  padding: 2.5rem;
}

.deal-category {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.deal-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.deal-desc {
  font-size: 1.3rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.deal-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.deal-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
}

.deal-old {
  font-size: 1.5rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.deal-off {
  background: rgba(255, 59, 48, 0.1);
  color: var(--secondary);
  padding: 0.3rem 1rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.2rem;
  font-weight: 700;
}

.btn-block {
  display: block;
  text-align: center;
  justify-content: center;
  width: 100%;
}

/* ============================================
   LANDING BENEFITS
   ============================================ */
.landing-benefits {
  padding: 10rem 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.benefit-card {
  text-align: center;
  padding: 3.5rem 2.5rem;
  border-radius: var(--border-radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.benefit-icon-wrap {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 212, 0, 0.15),
    rgba(255, 212, 0, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon-wrap {
  background: var(--primary);
  transform: scale(1.1);
}

.benefit-icon-wrap i {
  font-size: 2.8rem;
  color: var(--primary-dark);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon-wrap i {
  color: var(--dark);
}

.benefit-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-card p {
  font-size: 1.4rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   LANDING CTA BANNER
   ============================================ */
.landing-cta-banner {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-flash {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--secondary);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  animation: pulse 1.5s ease-in-out infinite;
}

.cta-flash i {
  font-size: 1.8rem;
}

.cta-content h2 {
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.cta-content h2 span {
  color: var(--primary);
}

.cta-content > p {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
}

.cta-timer {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius-pill);
  margin-bottom: 3.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

.cta-timer i {
  color: var(--primary);
  font-size: 1.6rem;
}

/* ============================================
   LANDING TESTIMONIALS
   ============================================ */
.landing-testimonials {
  padding: 10rem 0;
  background: var(--bg);
}

.landing-testimonials-swiper {
  max-width: 900px;
  margin: 0 auto;
}

.lt-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 3.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  margin: 1rem;
}

.lt-stars {
  margin-bottom: 2rem;
}

.lt-stars i {
  color: var(--primary);
  font-size: 1.8rem;
  margin: 0 0.2rem;
}

.lt-card > p {
  font-size: 1.6rem;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.lt-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.lt-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.lt-author h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.lt-author span {
  font-size: 1.3rem;
  color: #28a745;
  font-weight: 500;
}

.landing-testimonials-swiper .swiper-pagination-bullet {
  background: var(--gray-400);
}

.landing-testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
}

/* ============================================
   LANDING FAQ
   ============================================ */
.landing-faq {
  padding: 10rem 0;
  background: var(--white);
}

/* ============================================
   LANDING FINAL CTA
   ============================================ */
.landing-final-cta {
  padding: 8rem 0 10rem;
  background: var(--bg);
}

.final-cta-card {
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  border-radius: var(--border-radius);
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, 0.2);
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 212, 0, 0.06) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.final-cta-card h2 {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.final-cta-card h2 span {
  color: var(--primary);
}

.final-cta-card p {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.final-cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  padding: 1.8rem 4rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline-dark:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   LANDING FOOTER
   ============================================ */
.landing-footer {
  background: var(--dark);
  padding: 6rem 0 0;
}

.landing-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 1.3rem;
}

.landing-footer .footer-col h3 {
  color: var(--white);
}

.landing-footer .footer-links a {
  color: var(--gray-400);
}

.landing-footer .footer-links a:hover {
  color: var(--primary);
}

.landing-footer .footer-about p {
  color: var(--gray-400);
}

.landing-footer .footer-contact li {
  color: var(--gray-400);
}

.landing-footer .footer-contact i {
  color: var(--primary);
}

/* ============================================
   LANDING PAGE REVEAL OVERRIDES
   ============================================ */
.landing-page .reveal.reveal-scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.landing-page .reveal.reveal-scale-in.revealed {
  opacity: 1;
  transform: scale(1);
}
