:root{
  --gold: #D9BA96;      /* Primary gold / cream */
  --deep: #0A3A39;      /* Deep green / teal background */
  --accent: #E84C62;    /* Pinkish-red accent */
  --bg-light: #FDF9F5;  /* Soft cream background */
  --text-dark: #1A1A1A; /* Main text color */
  --muted: #555555;     /* secondary text */
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* ---------- GENERAL ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
  background: var(--bg-light);
  color: var(--text-dark);
}

/* ---------- HEADER / NAVBAR ---------- */
header {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  width: auto;
  z-index: 9999;
  transition: all 0.3s ease;
  border-radius: 50px; /* pill shape */
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

header.scrolled {
  top: 0;
  left: 0;
  right: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

/* NAV CONTENT FLEX */
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 12px 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 55px;
  width: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--accent); /* accent border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(232,76,98,0.25);
}
.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--deep); /* deep green for logo text */
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  padding: 4px 0;
  transition: all 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--deep);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* HEADER BUTTON */
.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232,76,98,0.25);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-icon {
  width: 24px;
  height: 24px;
  color: var(--text-dark);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
}

.mobile-menu.active {
  display: flex;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 130vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep); /* deep green hero background */
  color: var(--gold);
  padding-top: 0px; /* for fixed navbar */
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}

/* TEXT */
.hero-text {
  flex: 1;
  max-width: 550px;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 2;
  margin-top: -150px;
}

/* Hero Title */
.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  animation: fadeInUp 1s ease forwards;
}

/* Gradient / Highlight Text */
.gradient-text {
  font-family: 'Dancing Script', 'Pacifico', cursive;
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.gradient-text:hover {
  color: var(--gold);
  transform: scale(1.05);
}

.gradient-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 5px;
  background: var(--accent);
  border-radius: 4px;
  opacity: 0.5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.gradient-text:hover::after {
  transform: scaleX(1);
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: rgba(255,255,255,0.95); /* light on deep background */
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

/* Buttons Animation */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;
  animation-delay: 0.5s;
}

/* Fade-in-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Dancing Script', 'Pacifico', cursive;
}

.btn-hero {
  font-family: 'Dancing Script', 'Pacifico', cursive;
  font-weight: 600;
  font-size: 25px;
  background: var(--bg-light);  /* light text button on deep bg */
  border: none;
  color: var(--deep);
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.btn-hero span{
  font-family: 'Dancing Script', 'Pacifico', cursive;
}

.btn-hero:hover {
  color: #fff;
  background: var(--accent);
  transform: scale(1.05);
}

.hero-benefits {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-benefits .benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--bg-light);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.icon-circle:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.benefit-text {
  font-weight: 500;
  font-size: 1rem;
  color: var(--bg-light);
}

/* IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
  margin-top: -120px;
  margin-right: -100px;
}

.hero-image img {
  width: 100%;
  height: 600px;
  max-height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
  filter: saturate(0.95);
}

.hero-image img:hover {
  transform: translateY(-10px) scale(1.03);
}

/* CURVE */
.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 100px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 120px;
  }

  .hero-image {
    width: 400px;
    max-width: 700px;
    margin-right: 17px;
  }

  .hero-image img {
    width: 100%;
    height: 90%;
    border-radius: 20px;
  }

  .hero-text {
    width: 100%;
    gap: 100px;
    margin-top: 100px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin: 0 0 10px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
  }

  .btn-hero,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
  }

  .hero-benefits {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo-text {
    font-size: 20px;
  }
}

/* ABOUT SECTION */
.about-section {
  padding: 20px 0;
  background: rgba(216,186,150,0.06); /* subtle gold tint */
  position: relative;
  color: var(--text-dark);
  margin-top: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--deep);
}

.highlight-text {
  color: var(--accent);
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--deep);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FEATURES FLOW */
.features-flow {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.feature-item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

/* GRADIENTS keep as-is or tweak if needed */
.green-gradient {
  background: linear-gradient(135deg, #28a745, #85e085);
}

.purple-gradient {
  background: linear-gradient(135deg, #7617d6, #b692d6);
}

.orange-gradient {
  background: linear-gradient(135deg, #FF6B35, #FFA07A);
}

/* ANIMATIONS */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.animate-fade-in-up:nth-child(1) { animation-delay: 0.2s; }
.animate-fade-in-up:nth-child(2) { animation-delay: 0.4s; }
.animate-fade-in-up:nth-child(3) { animation-delay: 0.6s; }

/* PRODUCTS */
.products-section {
  background: #ffffff;
  padding: 80px 0;
}

.section-title {
  font-size: 2.4rem;
  color: var(--deep);
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 10px;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 0 8%;
}

.product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.product-item.reverse {
  flex-direction: row-reverse;
}

.product-image {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
}

.product-image img {
  width: 100%;
  height: auto;
  min-height: 600px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.product-image img:hover {
  transform: scale(1.05);
}

.product-content {
  flex: 1;
  min-width: 320px;
}

.product-content h3 {
  font-size: 2rem;
  color: var(--deep);
  font-weight: 700;
  margin-bottom: 12px;
}

.product-subtitle {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.product-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 25px;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 15px 0;
}

/* BUTTON STYLE */
.btn-product {
  display: inline-block;
  background: linear-gradient(135deg, var(--deep), var(--gold));
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-product:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* CONTACT */
.contact-section {
  padding: 80px 20px;
  background: rgba(10,58,57,0.03);
  color: var(--text-dark);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
}

/* GRID LAYOUT */
.contact-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

/* FORM */
.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.input-field {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.input-field:focus {
  border-color: var(--deep);
  box-shadow: 0 0 0 6px rgba(10,58,57,0.04);
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--deep);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #07302f;
  transform: translateY(-3px);
}

/* INFO + MAP */
.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  color:#1A1A1A
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.info-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--deep);
}
.info-item {
  color: var(--muted);
  margin-bottom: 10px;
}

.info-label {
  font-weight: 600;
  margin: 0;
}

.info-value {
  margin: 0;
}

/* SOCIAL LINKS */
.social-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--deep);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  padding: 10px 15px;
  border-radius: 10px;
  background: #fff;
  color: var(--deep);
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  text-decoration: none;
  transition: all 0.3s ease;
}
/* Contact info — force dark color for labels & values */
.info-section .info-item,
.info-section .info-label,
.info-section .info-value {
  color: #120707; /* use #000 for pure black if you prefer */
}

/* If another rule still overrides it, use !important as a last resort */
.info-section .info-value {
  color: #120707 !important;
}

.social-icon:hover {
  background: var(--deep);
  color: #fff;
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: var(--deep);
  color: var(--gold);
  padding: 60px 20px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 250px;
}

.footer-logo img {
  width: 200px;
  height: 150px;
  border-radius: 8px;
  vertical-align: start;
}

.footer-logo span {
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: -120px;
  color: var(--gold);
}

.footer-left p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.footer-center h4,
.footer-right h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #133532;
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-weight: bold;
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.contact-info p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin: 5px 0;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* UI niceties kept as-is */
.green-gradient {
  background: linear-gradient(to bottom right, #4ade80, #059669);
}

.purple-gradient {
  background: linear-gradient(to bottom right, #a78bfa, #7c3aed);
}

.orange-gradient {
  background: linear-gradient(to bottom right, #fbbf24, #ec4899);
}

/* Additional product / card styles preserved and adjusted */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.product-image img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
}

.product-content {
  padding: 24px;
}

.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-subtitle {
  font-size: 14px;
  color: var(--deep);
  font-weight: 500;
  margin-bottom: 12px;
}

.product-description {
  color: var(--muted);
  margin-bottom: 16px;
}

.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.benefit-badge {
  padding: 4px 12px;
  background: linear-gradient(to right, #ccfbf1, #99f6e4);
  color: #115e59;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
}

/* Reviews section colors adjusted */
.reviews-section {
  padding: 80px 0;
  background: linear-gradient(to bottom right, var(--deep), #c2410c);
  color: white;
}

/* Contact grid, forms and remainder kept but with brand accents */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: all 0.2s;
  font-family: 'Open Sans', sans-serif;
}

.input-field:focus {
  border-color: var(--deep);
  box-shadow: 0 0 0 6px rgba(10,58,57,0.04);
}

.full-width {
  width: 100%;
  justify-content: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-section h3,
.social-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--deep);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.info-icon {
  width: 24px;
  height: 24px;
  color: var(--deep);
  flex-shrink: 0;
  margin-top: 4px;
}

.info-label {
  font-weight: 500;
  margin-bottom: 4px;
}

.info-value {
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.06);
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 15px rgba(0,0,0,0.12);
}

.social-icon.instagram {
  background: linear-gradient(to bottom right, #a78bfa, #ec4899);
}

.social-icon.youtube {
  background: linear-gradient(to bottom right, #ef4444, #b91c1c);
}

.social-icon.amazon {
  background: linear-gradient(to bottom right, #fbbf24, #f97316);
}

/* Scroll top button */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px;
  background: linear-gradient(to right, var(--deep), var(--accent));
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
}

.scroll-top-btn svg {
  width: 24px;
  height: 24px;
}

/* Keyframes / animations retained */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--deep), var(--accent));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #07302f, #c24a57);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 32px 24px;
  }

  .review-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .review-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
