/* =====================================================
   GLOBAL STYLES
===================================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#032f24;
  color:#fff;
  line-height:1.7;
  overflow-x:hidden;
}

:root{
  --primary:#032f24;
  --secondary:#d4a93f;
  --card:#0b4534;
  --text:#d7e5df;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

section{
  padding:90px 0;
}

img{
  max-width:100%;
}

h1,h2,h3{
  line-height:1.2;
}

p{
  color:var(--text);
}

/* =====================================================
   BUTTONS
===================================================== */

.btn{
  display:inline-block;
  padding:14px 32px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn-primary{
  background:var(--secondary);
  color:#032f24;
}

.btn-primary:hover{
  transform:translateY(-4px);
}

.btn-outline{
  border:2px solid var(--secondary);
  color:var(--secondary);
}

.btn-outline:hover{
  background:var(--secondary);
  color:#032f24;
}

/* =====================================================
   SECTION TITLE
===================================================== */

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:44px;
  margin-bottom:15px;
}

/* =====================================================
   HEADER SECTION
===================================================== */

.header {
  background: var(--primary);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky; 
  top: 0;
  z-index: 1000;
  
  /* Smooth animation for hiding/showing */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease-in-out;
  will-change: transform, opacity; 
}

.header--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Sizing for the new image logo */
.logo img {
  max-height: 48px; /* Increase or decrease this number to change logo size */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05); /* Subtle pop effect when hovering */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: var(--secondary);
}

.nav-btn {
  padding: 10px 24px;
  font-size: 15px;
}

/* =====================================================
   HAMBURGER ICON (Hidden on Desktop)
===================================================== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* =====================================================
   HEADER RESPONSIVE (MOBILE)
===================================================== */

@media(max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .logo img {
    max-height: 38px; /* Slightly smaller for mobile screens */
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--card); 
    flex-direction: column;
    padding: 30px 20px;
    gap: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    
    /* Starts hidden with delayed visibility for smooth closing */
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    /* Instant visibility, smooth slide/fade for opening */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease-in-out, visibility 0s;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 20px;
  }

  .nav-links li a {
    font-size: 18px;
    display: block;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }

  /* Hamburger "X" Animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero{

  min-height:100vh;

  display:flex;

  align-items:center;

  position:relative;

  overflow:hidden;

  padding:80px 0;
}

/* BACKGROUND GLOW */

.hero::before{

  content:"";

  position:absolute;

  top:-180px;
  right:-180px;

  width:500px;
  height:500px;

  background:rgba(212,169,63,.06);

  filter:blur(120px);

  border-radius:50%;

  z-index:0;
}

/* GRID */

.hero-grid{

  display:grid;

  grid-template-columns:1fr 1fr;

  align-items:center;

  gap:80px;

  position:relative;

  z-index:2;
}

/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content{

  animation:heroFadeLeft 1s ease forwards;

  opacity:0;
}

/* HEADING */

.hero h1{

  font-size:78px;

  line-height:1.08;

  font-weight:800;

  margin-bottom:28px;

  letter-spacing:-2px;
}

/* HIGHLIGHT */

.hero h1 span{

  color:var(--secondary);

  display:block;
}

/* DESCRIPTION */

.hero p{

  font-size:22px;

  line-height:1.9;

  color:#d7e5df;

  max-width:620px;

  margin-bottom:38px;
}

/* BUTTONS */

.hero-buttons{

  display:flex;

  gap:18px;

  flex-wrap:wrap;

  margin-bottom:40px;
}

/* BADGES */

.badge-row{

  display:flex;

  flex-wrap:wrap;

  gap:16px;
}

.badge{

  padding:14px 22px;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.05);

  border-radius:50px;

  font-size:16px;

  color:#fff;

  backdrop-filter:blur(8px);

  transition:.3s ease;
}

.badge:hover{

  background:rgba(255,255,255,.1);

  transform:translateY(-2px);
}

/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image{

  display:flex;

  justify-content:center;

  position:relative;

  animation:heroFadeRight 1s ease forwards;

  opacity:0;
}

/* SLIDER */

.hero-slider{

  position:relative;

  width:460px;

  height:460px;

  display:flex;

  align-items:center;

  justify-content:center;
}

/* WRAPPER */
.slides-wrapper{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:34px;

  /* We moved the background and shadow here so it stays completely static! */
  background:linear-gradient(
    145deg,
    rgba(255,255,255,.95),
    rgba(255,255,255,.78)
  );
  border:2px solid rgba(255,255,255,.72);
  box-shadow:
  0 30px 70px rgba(0,0,0,.35),
  0 0 0 10px rgba(255,255,255,.04);
}

/* SLIDE */

.slide{

  position:absolute;

  inset:0;

  opacity:0;

  transform:translateX(100%);

  transition:
  transform .8s ease,
  opacity .8s ease;

  display:flex;

  align-items:center;

  justify-content:center;

  text-decoration:none;
}

/* ACTIVE */

.slide.active{

  opacity:1;

  transform:translateX(0);

  z-index:2;
}

/* PREVIOUS */

.slide.prev-slide{

  transform:translateX(-100%);
}

/* IMAGE */
.slide img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:18px;
  transition:.4s ease;
}

/* IMAGE HOVER */

.slide img:hover{

  transform:scale(1.02);
}

/* =====================================================
   SLIDER ARROWS
===================================================== */

.slider-arrow{

  position:absolute;

  top:50%;

  transform:translateY(-50%);

  width:52px;
  height:52px;

  border:none;

  border-radius:50%;

  background:rgba(212, 169, 63, 0.7);

  color:#fff;

  font-size:24px;

  cursor:pointer;

  z-index:5;

  backdrop-filter:blur(10px);

  transition:.3s ease;
}

/* LEFT */

.slider-arrow.prev{

  left:-25px;
}

/* RIGHT */

.slider-arrow.next{

  right:-25px;
}

/* HOVER */

.slider-arrow:hover{

  background:rgba(212,169,63,.85);

  transform:translateY(-50%) scale(1.08);
}

/* =====================================================
   HERO ANIMATIONS
===================================================== */

/* LEFT CONTENT */

@keyframes heroFadeLeft{

  from{
    opacity:0;
    transform:translateX(-60px);
  }

  to{
    opacity:1;
    transform:translateX(0);
  }

}

/* RIGHT IMAGE */

@keyframes heroFadeRight{

  from{
    opacity:0;
    transform:translateX(60px);
  }

  to{
    opacity:1;
    transform:translateX(0);
  }

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

  .hero-grid{

    grid-template-columns:1fr;

    text-align:center;

    gap:60px;
  }

  .hero h1{

    font-size:58px;
  }

  .hero p{

    margin:auto auto 35px;
  }

  .hero-buttons{

    justify-content:center;
  }

  .badge-row{

    justify-content:center;
  }

  .hero-slider{

    width:360px;

    height:360px;
  }

  .slider-arrow.prev{

    left:-15px;
  }

  .slider-arrow.next{

    right:-15px;
  }

}

@media(max-width:600px){

  .hero{

    padding:60px 0;
  }

  .hero h1{

    font-size:42px;

    line-height:1.15;
  }

  .hero p{

    font-size:17px;

    line-height:1.8;
  }

  .hero-slider{

    width:300px;

    height:300px;
  }

  .slide img{

    padding:14px;
  }

  .badge{

    font-size:14px;

    padding:12px 18px;
  }

  .slider-arrow{

    width:42px;
    height:42px;

    font-size:20px;
  }

}

/* =====================================================
   FEATURES SECTION
===================================================== */

.features{

  background:#063729;

  position:relative;

  overflow:hidden;

  padding:100px 0;
}

/* BACKGROUND GLOW */

.features::before{

  content:"";

  position:absolute;

  top:-180px;
  left:-180px;

  width:500px;
  height:500px;

  background:rgba(212,169,63,.05);

  filter:blur(120px);

  border-radius:50%;

  z-index:0;
}

/* FEATURE GRID */

.feature-grid{

  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

  gap:32px;

  position:relative;

  z-index:2;
}

/* FEATURE CARD */

.feature-card{

  background:linear-gradient(
    145deg,
    rgba(11,69,52,1),
    rgba(7,52,40,1)
  );

  padding:42px 36px;

  border-radius:30px;

  border:1px solid rgba(255,255,255,.06);

  transition:
  transform .35s ease,
  border-color .35s ease,
  box-shadow .35s ease,
  background .35s ease;

  position:relative;

  overflow:hidden;

  animation:featureFadeUp .8s ease forwards;

  opacity:0;
}

/* TOP GOLD LINE */

.feature-card::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:linear-gradient(
    to right,
    #d4a93f,
    transparent
  );
}

/* STAGGER ANIMATION */

.feature-card:nth-child(1){
  animation-delay:.2s;
}

.feature-card:nth-child(2){
  animation-delay:.4s;
}

.feature-card:nth-child(3){
  animation-delay:.6s;
}

/* HOVER */

.feature-card:hover{

  transform:translateY(-10px);

  border-color:rgba(212,169,63,.22);

  box-shadow:0 25px 50px rgba(0,0,0,.22);

  background:linear-gradient(
    145deg,
    rgba(13,78,59,1),
    rgba(8,56,43,1)
  );
}

/* ICON */

.icon{

  width:76px;
  height:76px;

  border-radius:50%;

  background:rgba(212,169,63,.12);

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:34px;

  margin-bottom:28px;

  transition:
  transform .35s ease,
  background .35s ease;
}

/* ICON HOVER */

.feature-card:hover .icon{

  transform:scale(1.08) rotate(4deg);

  background:rgba(212,169,63,.18);
}

/* TITLE */

.feature-card h3{

  color:var(--secondary);

  font-size:34px;

  margin-bottom:18px;

  font-weight:700;
}

/* TEXT */

.feature-card p{

  color:#d7e5df;

  font-size:18px;

  line-height:1.9;
}

/* FEATURES ANIMATION */

@keyframes featureFadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* MOBILE */

@media(max-width:768px){

  .features{

    padding:75px 0;
  }

  .feature-card{

    padding:34px 28px;
  }

  .feature-card h3{

    font-size:28px;
  }

  .feature-card p{

    font-size:16px;
  }

  .icon{

    width:68px;
    height:68px;

    font-size:28px;
  }

}

/* =====================================================
   BENEFITS SECTION
===================================================== */

.benefits-section{
  background:#032f24;
  position:relative;
  overflow:hidden;
}

/* REFERENCE TEXT MOVED BELOW CARDS */
.benefit-reference{
  margin-top:50px; /* Pushes text away from the cards */
  text-align:center;
  color:#d8e6df;
  font-size:17px;
  line-height:1.8;
}

.benefit-reference span{
  color:var(--secondary);
  font-size:15px;
  letter-spacing:.4px;
}

/* GRID */

.benefits-grid{

  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

  gap:28px;

  margin-top:60px;
}

/* CARD */

.benefit-card{

  background:linear-gradient(
    145deg,
    rgba(11,69,52,1),
    rgba(7,52,40,1)
  );

  padding:40px 35px;

  border-radius:28px;

  border:1px solid rgba(255,255,255,.06);

  transition:.4s ease;

  position:relative;

  overflow:hidden;

  animation:fadeUp 1s ease forwards;

  opacity:0;
}

/* TOP GOLD LINE */

.benefit-card::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:linear-gradient(
    to right,
    #d4a93f,
    transparent
  );
}

/* HOVER EFFECT */

.benefit-card:hover{

  transform:translateY(-10px);

  border-color:rgba(212,169,63,.25);

  box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/* ICON */

.benefit-icon{

  width:70px;
  height:70px;

  border-radius:50%;

  background:rgba(212,169,63,.12);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;

  margin-bottom:25px;
}

/* HEADING */

.benefit-card h3{

  color:var(--secondary);

  font-size:30px;

  margin-bottom:18px;

  font-weight:700;
}

/* TEXT */

.benefit-card p{

  color:#d8e6df;

  font-size:18px;

  line-height:1.9;
}

/* STAGGERED ANIMATION */

.benefit-card:nth-child(1){
  animation-delay:.2s;
}

.benefit-card:nth-child(2){
  animation-delay:.4s;
}

.benefit-card:nth-child(3){
  animation-delay:.6s;
}

.benefit-card:nth-child(4){
  animation-delay:.8s;
}

/* ANIMATION */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* MOBILE */

@media(max-width:768px){

  .benefit-card{

    padding:32px 28px;
  }

  .benefit-card h3{

    font-size:24px;
  }

  .benefit-card p{

    font-size:16px;
  }

}

/* =====================================================
   PRODUCT SECTION
===================================================== */

.product{

  background:#063729;

  padding:100px 0;

  position:relative;

  overflow:hidden;
}

/* BACKGROUND GLOW */

.product::before{

  content:"";

  position:absolute;

  bottom:-180px;
  left:-180px;

  width:500px;
  height:500px;

  background:rgba(212,169,63,.05);

  filter:blur(120px);

  border-radius:50%;

  z-index:0;
}

/* GRID */

.product-grid{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:90px;

  align-items:center;

  position:relative;

  z-index:2;
}

/* PRODUCT IMAGE */

.product-image{

  text-align:center;

  animation:productFadeLeft 1s ease forwards;

  opacity:0;
}

/* IMAGE */
.product-image img{
  max-width:430px;
  width:100%;
  aspect-ratio: 1 / 1; /* This forces the background box to be a perfect square */
  object-fit:contain; /* This keeps the pouch inside the box without stretching */
  border-radius:34px;
  background:linear-gradient(
    145deg,
    rgba(255,255,255,.95),
    rgba(255,255,255,.78)
  );
  padding:18px;
  border:2px solid rgba(255,255,255,.72);
  box-shadow:
  0 30px 70px rgba(0,0,0,.35),
  0 0 0 10px rgba(255,255,255,.04);
  animation:productFloating 4s ease-in-out infinite;
  transition:.4s ease;
}

/* HOVER */

.product-image img:hover{

  transform:scale(1.03);
}

/* PRODUCT CONTENT */

.product-info{

  animation:productFadeRight 1s ease forwards;

  opacity:0;
}

/* HEADING */

.product-info h2{

  font-size:48px;

  line-height:1.2;

  font-weight:700;

  margin-bottom:22px;

  letter-spacing:-1px;
}

/* DESCRIPTION */

.product-info p{

  font-size:18px;

  line-height:1.9;

  color:#d7e5df;

  margin-bottom:30px;

  max-width:580px;
}

/* LIST */

.product-info ul{

  list-style:none;

  margin-bottom:36px;
}

.product-info ul li{

  position:relative;

  padding-left:32px;

  margin-bottom:18px;

  font-size:17px;

  color:#fff;
}

/* CHECK ICON */

.product-info ul li::before{

  content:"✓";

  position:absolute;

  left:0;
  top:0;

  color:var(--secondary);

  font-weight:700;
}

/* PRODUCT ANIMATIONS */

/* LEFT IMAGE */

@keyframes productFadeLeft{

  from{
    opacity:0;
    transform:translateX(-60px);
  }

  to{
    opacity:1;
    transform:translateX(0);
  }

}

/* RIGHT CONTENT */

@keyframes productFadeRight{

  from{
    opacity:0;
    transform:translateX(60px);
  }

  to{
    opacity:1;
    transform:translateX(0);
  }

}

/* FLOATING */

@keyframes productFloating{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-12px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* RESPONSIVE */

@media(max-width:992px){

  .product-grid{

    grid-template-columns:1fr;

    text-align:center;

    gap:70px;
  }

  .product-info h2{

    font-size:42px;
  }

  .product-info p{

    margin:auto auto 30px;
  }

  .product-info ul li{

    padding-left:0;
  }

  .product-info ul li::before{

    display:none;
  }

}

@media(max-width:600px){

  .product{

    padding:70px 0;
  }

  .product-info h2{

    font-size:36px;

    line-height:1.2;
  }

  .product-info p{

    font-size:17px;
  }

  .product-info ul li{

    font-size:16px;

    margin-bottom:16px;
  }

  .product-image img{

    max-width:320px;

    padding:14px;
  }

}

/* =====================================================
   CERTIFICATION SECTION
===================================================== */

.certifications{
  background:#032f24;
  text-align:center;
}

.cert-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:28px;
  margin-top:55px;
}

.cert-card{

  background:linear-gradient(
    145deg,
    rgba(11,69,52,1),
    rgba(7,52,40,1)
  );

  padding:40px 30px;

  border-radius:28px;

  border:1px solid rgba(255,255,255,.06);

  transition:.35s ease;

  position:relative;

  overflow:hidden;
}

.cert-card::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:linear-gradient(
    to right,
    #d4a93f,
    transparent
  );
}

.cert-card:hover{

  transform:translateY(-10px);

  border-color:rgba(212,169,63,.25);

  box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.cert-card img{

  width:90px;
  height:90px;

  object-fit:contain;

  margin-bottom:25px;

  background:#fff;

  padding:10px;

  border-radius:18px;
}

.cert-card h3{

  font-size:26px;

  color:#fff;

  margin-bottom:10px;

  font-weight:700;
}

.cert-card span{

  color:var(--secondary);

  font-size:14px;

  letter-spacing:.3px;
}

.cert-note{

  margin-top:45px;

  max-width:850px;

  margin-left:auto;
  margin-right:auto;

  font-size:14px;

  line-height:1.8;

  opacity:.85;
}

/* MOBILE */

@media(max-width:768px){

  .cert-grid{

    grid-template-columns:1fr;
  }

}

/* =====================================================
   REVIEW SECTION
===================================================== */

.reviews{
  background:#063729;
  overflow:hidden;
}

.review-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.review-track{
  display:flex;
  gap:25px;
  width:max-content;
  animation:scrollReviews 25s linear infinite;
}

.review-track:hover{
  animation-play-state:paused;
}

.review{
  background:var(--card);
  padding:40px;
  border-radius:28px;
  min-width:380px;
  max-width:380px;
  border:1px solid rgba(255,255,255,.06);
  transition:.3s ease;
}

.review:hover{
  transform:translateY(-8px);
}

.stars{
  color:#f5c64d;
  font-size:22px;
  margin-bottom:20px;
}

.review p{
  margin-bottom:30px;
  font-size:18px;
  line-height:1.8;
}

.customer-info h4{
  color:#fff;
  font-size:18px;
  margin-bottom:4px;
}

.customer-info span{
  color:var(--secondary);
  font-size:14px;
}

/* SLIDING ANIMATION */

@keyframes scrollReviews{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* MOBILE */

@media(max-width:768px){

  .review{
    min-width:300px;
    max-width:300px;
    padding:30px;
  }

  .review p{
    font-size:16px;
  }

}

/* =====================================================
   CTA SECTION
===================================================== */

.cta{
  text-align:center;
}

.cta h2{
  font-size:52px;
  margin-bottom:20px;
}

.cta p{
  max-width:700px;
  margin:auto auto 35px;
}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq{
  background:#063729;
  padding:80px 0;
}

/* WRAPPER */

.faq-wrapper{
  max-width:900px;
  margin:40px auto 0;
}

/* FAQ ITEM */

.faq-item{

  background:rgba(255,255,255,.035);

  border:1px solid rgba(255,255,255,.05);

  border-radius:16px;

  margin-bottom:12px;

  overflow:hidden;

  transition:
  transform .3s ease,
  border-color .3s ease,
  background .3s ease,
  box-shadow .3s ease;

  animation:fadeUp .6s ease forwards;

  opacity:0;
}

/* STAGGER ANIMATION */

.faq-item:nth-child(1){
  animation-delay:.1s;
}

.faq-item:nth-child(2){
  animation-delay:.2s;
}

.faq-item:nth-child(3){
  animation-delay:.3s;
}

.faq-item:nth-child(4){
  animation-delay:.4s;
}

/* HOVER */

.faq-item:hover{

  transform:translateY(-2px);

  border-color:rgba(212,169,63,.16);

  background:rgba(255,255,255,.045);

  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* QUESTION */

.faq-question{

  width:100%;

  background:none;

  border:none;

  outline:none;

  padding:10px 22px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  cursor:pointer;

  color:#fff;

  font-size:16px;

  font-weight:600;

  text-align:left;

  line-height:1.4;

  gap:16px;

  transition:.3s ease;
}

/* ICON */

.faq-icon{

  width:24px;
  height:24px;

  min-width:24px;

  border-radius:50%;

  background:rgba(212,169,63,.10);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;

  color:var(--secondary);

  transition:
  transform .35s ease,
  background .3s ease;
}

/* ANSWER */

.faq-answer{

  max-height:0;

  overflow:hidden;

  transition:
  max-height .4s ease,
  opacity .3s ease;

  opacity:.8;
}

.faq-answer p{

  padding:0 22px 12px;

  color:#d7e5df;

  font-size:14px;

  line-height:1.7;

  max-width:92%;
}

/* ACTIVE */

.faq-item.active{

  border-color:rgba(212,169,63,.18);

  background:rgba(255,255,255,.045);
}

.faq-item.active .faq-answer{

  max-height:160px;

  opacity:1;
}

.faq-item.active .faq-icon{

  transform:rotate(180deg);

  background:rgba(212,169,63,.16);
}

/* ENTRY ANIMATION */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* MOBILE */

@media(max-width:768px){

  .faq{
    padding:65px 0;
  }

  .faq-wrapper{
    margin-top:32px;
  }

  .faq-question{

    font-size:15px;

    padding:10px 16px;
  }

  .faq-answer p{

    font-size:14px;

    padding:0 16px 10px;
  }

  .faq-icon{

    width:22px;
    height:22px;

    min-width:22px;

    font-size:16px;
  }

}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media(max-width:992px){

  .hero-grid,
  .product-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero h1{
    font-size:48px;
  }

  .section-title h2{
    font-size:36px;
  }

  .cta h2{
    font-size:38px;
  }

}

@media(max-width:600px){

  .hero h1{
    font-size:38px;
  }

  .section-title h2{
    font-size:30px;
  }

  .cta h2{
    font-size:30px;
  }

}

/* =====================================================
   FOOTER SECTION
===================================================== */

footer{
  background:#04291f;
  padding:45px 0 28px;
  border-top:1px solid rgba(255,255,255,.05);
}

.footer-content{
  max-width:850px;
  margin:auto;
  text-align:center;
}

.footer-content h3{
  color:#fff;
  font-size:30px;
  font-weight:700;
  margin-bottom:6px;
}

.footer-tagline{
  color:#d7e5df;
  font-size:16px;
  margin-bottom:16px;
}

/* FOOTER NAVIGATION MENU */
.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* Perfect spacing between links */
  margin: 25px 0 35px;
  padding: 0;
}

.footer-nav li a {
  color: #ffffff; /* Forces pure white text */
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  opacity: 0.85; /* Makes it slightly softer than the main heading */
  transition: 0.3s ease;
}

.footer-nav li a:hover {
  opacity: 1;
  color: var(--secondary); /* Turns gold only when hovered */
}

.footer-copy{
  color:#d7e5df;
  font-size:13px;
  opacity:.72;
}

/* MOBILE RESPONSIVE FOOTER */
@media(max-width:768px){
  footer{
    padding:38px 0 24px;
  }
  .footer-content h3{
    font-size:26px;
  }
  .footer-tagline{
    font-size:15px;
  }
  .footer-nav {
    gap: 20px; /* Less gap on mobile */
    flex-wrap: wrap; /* Allows links to wrap to the next line if needed */
  }
  .footer-nav li a {
    font-size: 15px;
  }
}

/* =====================================================
   CONTACT PAGE STYLES (No Form)
===================================================== */

.contact-page {
  background: #032f24;
  padding: 100px 0;
  position: relative;
}

/* Centers the contact card horizontally */
.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  background: linear-gradient(145deg, rgba(11, 69, 52, 1), rgba(7, 52, 40, 1));
  padding: 50px 40px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.contact-desc {
  font-size: 18px;
  color: #d7e5df;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Info Cards inside the main wrapper */
.contact-item {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 20px;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 169, 63, 0.2);
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 28px;
  background: rgba(212, 169, 63, 0.12);
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-text h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 5px;
}

.contact-text p, .contact-text a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-text a:hover {
  color: var(--secondary);
}

/* --- Responsive Layout for Mobile --- */
@media (max-width: 600px) {
  .contact-info {
    padding: 40px 25px;
  }
  
  .contact-info h2 {
    font-size: 32px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
  }
}

/* =====================================================
   ABOUT PAGE STYLES
===================================================== */

.about-page {
  background: #032f24;
  padding: 100px 0;
  position: relative;
}

/* 2-Column Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ==================================
   Left Side: Enhanced Story Text 
================================== */
.about-story {
  position: relative;
}

.story-subtitle {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.about-story h2 {
  font-size: 42px;
  margin-bottom: 35px;
  line-height: 1.1;
}

/* Adds a sleek editorial gold line next to the paragraphs */
.story-content {
  position: relative;
  padding-left: 25px;
  border-left: 3px solid rgba(212, 169, 63, 0.5); 
}

.story-content p {
  font-size: 18px;
  color: #d7e5df;
  line-height: 1.9;
  margin-bottom: 25px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* Highlights the brand name in bright white */
.highlight-text {
  color: #fff;
  font-weight: 600;
}

/* Highlights the product name in gold */
.story-content strong {
  color: var(--secondary);
  font-weight: 600;
}

/* ==================================
   Right Side: Premium Cards Wrapper 
================================== */
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Individual Premium Cards */
.about-card {
  background: linear-gradient(145deg, rgba(11, 69, 52, 1), rgba(7, 52, 40, 1));
  padding: 40px 35px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Gold Accent Line */
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #d4a93f, transparent);
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 169, 63, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.about-icon {
  font-size: 32px;
  background: rgba(212, 169, 63, 0.12);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 26px;
  color: var(--secondary);
  margin-bottom: 12px;
  font-weight: 700;
}

.about-card p {
  color: #d7e5df;
  font-size: 16px;
  line-height: 1.8;
}

/* ==================================
   Responsive Layout for Mobile 
================================== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .about-story h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .story-content {
    padding-left: 20px;
  }

  .about-card {
    padding: 35px 25px;
  }
  
  .about-card h3 {
    font-size: 24px;
  }
}