/* Import Poppins Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* Ensure proper mobile viewport */
@media screen and (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
  }

  /* Global mobile hover reset - disable problematic hover effects */
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }

  /* Add touch feedback for interactive elements */
  button,
  a,
  .product-card,
  .feature-card {
    -webkit-tap-highlight-color: rgba(85, 151, 47, 0.2);
  }
}

/* Add active states for better mobile interaction feedback */
@media (max-width: 768px) {
  button:active,
  .nav-button:active {
    transform: scale(0.95);
    opacity: 0.8;
  }

  .product-card:active {
    transform: scale(0.98);
  }

  .feature-card:active {
    transform: translateY(-3px) scale(0.99);
  }
} /* Common transition and hover effects */
.footer-social a,
.footer-links a,
.popup-btn,
.whatsapp-sticky,
.mobile-btn,
.hamburger .line,
/* .hero-logo-img, */
.hero-feature,
.cta-primary,
.cta-secondary, 
.floating-product,
.product-tooltip,
.nav-catalog-link {
  transition: all 0.3s ease;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 60px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #55972f, #84a155);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
}

/* Common gradient backgrounds */
#footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Common border radius */
.product-card,
.popup-content {
  border-radius: 20px;
}

.popup-btn,
.footer-social a {
  border-radius: 50px;
}

.whatsapp-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-sticky i {
  font-size: 30px;
  color: white;
  transition: transform 0.3s ease;
}

.whatsapp-sticky:hover i {
  transform: scale(1.1);
}

/* Mobile: Apply WhatsApp effects directly without hover */
@media (max-width: 768px) {
  .whatsapp-sticky {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  }

  .whatsapp-sticky i {
    transform: scale(1.05);
  }
}

/* WhatsApp pulse animation */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 20px rgba(106, 132, 45, 0.4),
      0 0 0 0 rgba(94, 132, 32, 0.7);
  }
  70% {
    box-shadow: 0 4px 20px rgba(106, 125, 49, 0.4),
      0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(107, 210, 34, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Target the scrollbar thumb (the part you drag) */
body::-webkit-scrollbar-thumb {
  background-color: #888; /* Color of the scroll thumb */
  border-radius: 6px; /* Round the corners of the thumb */
  border: 3px solid transparent; /* Creates padding around the thumb */
  background-clip: content-box; /* Ensures the border is transparent and not covered by the background */
}

/* Optional: Style the thumb on hover */
body::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

#nav {
  height: 80px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Scrolled navbar effect */
#nav.scrolled {
  height: 80px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

#nav.scrolled .nav-logo-img {
  height: 35px;
}

/* Logo Section */
#nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

/* Mobile: Remove logo hover effect */
@media (max-width: 768px) {
  .nav-logo-img:hover {
    transform: none;
  }
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #434b34;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a:hover {
  background-color: #f0f2e8;
  color: #2d3420;
  transform: translateY(-2px);
}

/* Mobile: Remove navigation hover effects */
@media (max-width: 1024px) {
  .nav-links li a:hover {
    background-color: transparent;
    color: inherit;
    transform: none;
  }
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Mobile Navigation */
/* .nav-mobile {
  display: none;
} */

.hamburger {
  width: 55px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  position: relative;
  background: none;
  border: none;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hamburger:hover .line {
  background-color: #5b6647;
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.line {
  height: 2px;
  width: 100%;
  background-color: #434b34;
  margin-bottom: 4px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Responsive Navigation */
/* Navigation Responsive Rules */
@media (min-width: 1025px) {
  .nav-desktop {
    display: flex !important;
  }

  .nav-mobile {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none !important;
  }

  .nav-mobile {
    display: block !important;
  }
}
/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transition: left 0.4s ease;
}

.mobile-menu-overlay.show,
.mobile-menu-overlay.active {
  left: 0;
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  #page1 {
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
  }

  .hero-banner {
    height: 100vh;
    width: 100vw;
  }

  .hero-banner-image {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 480px) {
  #page1 {
    height: 100vh;
  }

  .hero-banner {
    height: 100vh;
    width: 100vw;
  }

  .hero-banner-image {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    object-position: center;
  }
}

.mobile-menu-overlay {
  z-index: 1000;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu {
  width: 320px;
  min-height: 100vh;
  background-color: #f7f7ee;
  padding: 30px;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  overflow-y: auto;
}

.mobile-menu-overlay::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

.mobile-menu-overlay::-webkit-scrollbar-thumb {
  background: rgba(67, 75, 52, 0.3);
  border-radius: 4px;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #5b6647;
}

.mobile-logo {
  display: flex;
  align-items: center;
}

.mobile-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #5b6647;
  color: #e3e3c4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  border: none;
}

.close-btn:hover {
  background-color: #434b34;
  transform: rotate(90deg);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 25px;
}

.mobile-nav a {
  text-decoration: none;
  color: #434b34;
  font-size: 24px;
  font-weight: 500;
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav a:hover {
  color: #5b6647;
  border-bottom-color: #5b6647;
  transform: translateX(10px);
}

.mobile-nav a:hover {
  color: #5b6647;
  border-bottom-color: #5b6647;
  transform: translateX(10px);
}

.mobile-nav a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: #5b6647;
  transition: width 0.3s ease;
}

.mobile-nav a:hover::before {
  width: 15px;
}

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.mobile-btn {
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #5b6647;
}

.mobile-btn.primary {
  background-color: #5b6647;
  color: #e3e3c4;
}

.mobile-btn.primary:hover {
  background-color: #434b34;
  border-color: #434b34;
  transform: translateY(-2px);
}

.mobile-btn.secondary {
  background-color: transparent;
  color: #5b6647;
}

.mobile-btn.secondary:hover {
  background-color: #5b6647;
  color: #e3e3c4;
  transform: translateY(-2px);
}

#nav-part2 button {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid #434b34;
  margin-right: 15px;
  font-size: 17px;
  font-weight: 500;
  color: #434b34;
  background-color: transparent;
}

#nav-part2 button:nth-last-child(1) {
  background-color: #434b34;
  color: #fff;
}

.nav-catalog-link {
  text-decoration: none;
  color: #434b34;
}

#page1 {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Hero Banner Styles */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Floating Micro Images */
.floating-images-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.floating-image {
  position: absolute;
  width: 180px;
  height: 180px;
  /* border-radius: 50%; */
  overflow: hidden;
  transition: all 0.3s ease;
  animation: floatUpDown 6s ease-in-out infinite;
  opacity: 0.85;
}

.floating-image:hover {
  transform: scale(1.2);
  opacity: 1;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  cursor: pointer;
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

/* Individual positioning and animation delays */
.floating-image-1 {
  top: 0%;
  left: 34%;
  animation-delay: 0s;
  animation-duration: 6s;
  z-index: -1200;
}

.floating-image-3 {
  bottom: -10%;
  left: 42%;
  animation-delay: 1s;
  animation-duration: 7s;
}

.floating-image-2 {
  bottom: -5%;
  left: -5%;
  animation-delay: 1.2s;
  animation-duration: 8s;
}

/* Animations */
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(4deg);
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-4deg);
  }
}

@keyframes leafFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(5deg);
  }
  50% {
    transform: translateY(-35px) translateX(-5px) rotate(-3deg);
  }
  75% {
    transform: translateY(-15px) translateX(15px) rotate(7deg);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) translateX(100px);
    opacity: 0;
  }
}

/* Parallax effect on scroll */
.floating-image {
  transition: transform 0.1s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #nav {
    padding: 0 15px;
    height: 70px;
  }

  .nav-logo-img {
    height: 35px;
  }

  .floating-image {
    width: 60px;
    height: 60px;
  }

  .floating-leaf {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  #nav {
    padding: 0 10px;
    height: 60px;
  }

  .nav-logo-img {
    height: 30px;
  }

  #page1 {
    height: 30vh;
    margin-top: 50px;
  }

  .hero-banner {
    height: 30vh;
    margin-top: 0;
  }

  .hero-banner-image {
    height: 100%;
    object-position: center;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #434b34;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #6b7359;
  margin-top: 5px;
}

/* Hero Features */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 1.7s forwards;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(91, 102, 71, 0.1);
  cursor: pointer;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(67, 75, 52, 0.1);
}

.hero-feature i {
  font-size: 1.1rem;
  color: #5b6647;
}

.hero-feature span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #434b34;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 2s forwards;
}

.cta-primary,
.cta-secondary {
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  justify-content: center;
}

.cta-primary {
  background: linear-gradient(135deg, #5b6647, #434b34);
  color: white;
  box-shadow: 0 10px 30px rgba(67, 75, 52, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(67, 75, 52, 0.4);
}

.cta-secondary {
  background: transparent;
  color: #434b34;
  border: 2px solid #434b34;
}

.cta-secondary:hover {
  background: #434b34;
  color: white;
  transform: translateY(-3px);
}

.cta-primary span,
.cta-secondary span {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
}

/* Navigation Buttons */
.nav-button {
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #434b34;
  cursor: pointer;
  background: transparent;
  color: #434b34;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "FilsonProR", "Filson Pro", sans-serif;
}

.nav-button:hover {
  background: #434b34;
  color: white;
  transform: translateY(-2px);
}

.nav-button.primary {
  background: linear-gradient(135deg, #5b6647, #434b34);
  color: white;
  border-color: transparent;
}

.nav-button.primary:hover {
  background: linear-gradient(135deg, #4a5538, #363c2b);
  transform: translateY(-2px);
}

/* Mobile: Remove button hover effects */
@media (max-width: 768px) {
  .nav-button:hover {
    background: inherit;
    color: inherit;
    transform: none;
  }

  .nav-button.primary:hover {
    background: linear-gradient(135deg, #5b6647, #434b34);
    transform: none;
  }
}

.nav-button a {
  color: inherit;
  text-decoration: none;
}

/* Right Side - Interactive Image */
.hero-right {
  flex: 1;
  position: relative;
  height: 80%;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease-out 0.7s forwards;
}

.floating-product:hover .product-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Decorative Floating Elements */
.floating-element {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.4;
  z-index: 3;
  animation: floatElement 6s ease-in-out infinite;
  pointer-events: none;
}

.element-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 70%;
  right: 10%;
  animation-delay: 1.5s;
}

.element-3 {
  top: 40%;
  left: 5%;
  animation-delay: 3s;
}

.element-4 {
  bottom: 10%;
  right: 5%;
  animation-delay: 4.5s;
}

/* Mouse Interaction Effects */
.hero-right:hover .floating-product {
  animation-play-state: paused;
}

.hero-right:hover .product-1 {
  transform: translate(10px, -10px);
}

.hero-right:hover .product-2 {
  transform: translate(-10px, 10px);
}

.hero-right:hover .product-3 {
  transform: translate(15px, -5px);
}

.hero-right:hover .product-4 {
  transform: translate(-5px, -15px);
}

.hero-right:hover .gift-image {
  transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #434b34;
  opacity: 0;
  animation: fadeIn 1s ease-out 2.5s forwards;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #434b34;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

.scroll-wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
  width: 3px;
  height: 8px;
  background: #434b34;
  border-radius: 2px;
}

.scroll-indicator span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

@keyframes floatElement {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }
  50% {
    top: 18px;
    opacity: 0.5;
  }
  100% {
    top: 6px;
    opacity: 1;
  }
}

#page2 {
  min-height: 130vh;
  width: 100%;
  background-color: #5b6647;
  position: relative;
}

#page2 #svg1 {
  width: 100%;
  position: absolute;
}

#text-container {
  position: relative;
  z-index: 9;
  padding-top: 10vw;
}

#text-container h2 {
  text-align: center;
  font-size: 4.3vw;
  line-height: 4.6vw;
  font-family: "Arial", "Filson Pro", sans-serif;
  color: #434b34;
  font-weight: 400;
}

#text-container h3 {
  text-align: center;
  font-size: 4.3vw;
  line-height: 4.6vw;
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  color: #434b34;
  font-weight: 100;
}

#text-container h2 span {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
}

#page2 #svg2 {
  position: absolute;
  bottom: -10%;
  width: 250vw;
  fill: #5b6647;
  z-index: 9;
  height: auto;
  overflow: hidden;
}

#page2 #svg3 {
  position: absolute;
  bottom: -10%;
  width: 250vw;
  transform: translateX(-7%);
  fill: #e3e3c4;
  height: auto;
  overflow: hidden;
}

#page5 {
  height: 100vh;
  width: 100%;
  position: relative;
  padding: 5vw 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#page5-left {
  height: 100%;
  width: 35%;
  background-image: url(./Images/gardern.jpg);
  border-radius: 20px;
  background-size: cover;
  background-position: center;
}
#page5-center {
  height: 100%;
  width: 50%;
  border-radius: 20px;
  padding: 5vw 5vw;
  text-align: center;
}
#page5-center h1 {
  font-size: 4vw;
  text-align: center;
  line-height: 4vw;
  font-weight: 100;
  color: #434b34;
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  margin-bottom: 5vw;
}
#page5-center p {
  font-size: 1.2vw;
  text-align: center;
  font-weight: 500;
}
#page5-right {
  height: 100%;
  width: 35%;
  background-image: url(./Images/SalLeaf-SialiLeafYastuVenture-Disposable-Ecofriendly-Tablewret-2025-1234.jpg);
  border-radius: 20px;
  background-size: cover;
  background-position: center;
}

/* Product Cards Section */
#page6 {
  min-height: 100vh;
  width: 100%;
  background-color: #f7f7ee;
  padding: 8vw 5vw;
}

.products-section {
  max-width: 1400px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 6vw;
}

.products-header h2 {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 4.5vw;
  color: #434b34;
  font-weight: 100;
  margin-bottom: 1.5vw;
  line-height: 1.2;
}

.products-header p {
  font-size: 1.2vw;
  color: #5b6647;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3vw;
  margin-top: 4vw;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(67, 75, 52, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 20px 50px rgba(67, 75, 52, 0.2);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-image .main-image,
.product-image .hover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.product-image .hover-image {
  opacity: 0;
  transform: scale(1.1);
}

.product-card:hover .product-image .main-image {
  opacity: 0;
  transform: scale(1.1);
}

.product-card:hover .product-image .hover-image {
  opacity: 1;
  transform: scale(1);
}

/* Mobile: Apply product card effects directly */
@media (max-width: 768px) {
  .product-card {
    box-shadow: 0 15px 40px rgba(67, 75, 52, 0.15);
  }

  .product-card:hover {
    box-shadow: 0 15px 40px rgba(67, 75, 52, 0.15);
    transform: none;
  }

  /* Show hover image by default on mobile */
  .product-image .hover-image {
    opacity: 1;
    transform: scale(1);
  }

  .product-image .main-image {
    opacity: 0;
    transform: scale(1.1);
  }

  /* Remove hover transitions on mobile */
  .product-card:hover .product-image .main-image,
  .product-card:hover .product-image .hover-image {
    opacity: inherit;
    transform: inherit;
  }
}

/* Product Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #f7f7ee;
  border-radius: 20px;
  max-width: 1200px;
  max-height: 90vh;
  width: 90%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(67, 75, 52, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(67, 75, 52, 1);
  transform: scale(1.1);
}

.popup-close i {
  color: white;
  font-size: 18px;
}

/* Image Carousel Section */
.popup-image-section {
  flex: 1;
  position: relative;
  background: #f7f7ee;
  display: flex;
  flex-direction: column;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

.popup-image-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
}

/* Carousel buttons are now always visible - hover effect removed */
/* .popup-image-carousel:hover .carousel-btn {
  opacity: 1;
  visibility: visible;
} */

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

.carousel-btn i {
  font-size: 18px;
  color: #434b34;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(67, 75, 52, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #434b34;
  transform: scale(1.3);
}

.popup-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(67, 75, 52, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  text-transform: capitalize;
  z-index: 50;
}

/* Scrollable Info Section */
.popup-info-scrollable {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  max-height: 90vh;
}

.popup-info-scrollable::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.popup-info {
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  background: #f7f7ee;
  min-height: 100%;
  border-radius: 0 20px 20px 0;
}

.popup-close:hover {
  background: #434b34;
  transform: scale(1.1);
}

.popup-close i {
  color: #e3e3c4;
  font-size: 20px;
}

.popup-info h2 {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 2rem;
  color: #434b34;
  margin: 0 0 20px 0;
  font-weight: 300;
  line-height: 1.2;
}

.popup-info p {
  color: #5b6647;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.popup-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px 0;
}

.popup-features span {
  background: rgba(67, 75, 52, 0.1);
  color: #434b34;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(67, 75, 52, 0.2);
}

/* Specifications styling in popup */
.popup-specifications {
  margin: 20px 0 30px 0;
}

.popup-specifications h4 {
  color: #434b34;
  margin: 0 0 15px 0;
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.spec-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.spec-column {
  background: rgba(67, 75, 52, 0.05);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(67, 75, 52, 0.1);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 0.85rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(67, 75, 52, 0.1);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: #434b34;
  flex: 1;
}

.spec-value {
  color: #5b6647;
  text-align: right;
  flex: 1;
}

.popup-features h4 {
  color: #434b34;
  margin: 20px 0 10px 0;
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.popup-features div {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 0.85rem;
  padding: 3px 0;
  border-bottom: 1px solid rgba(67, 75, 52, 0.1);
}

.popup-features div:last-child {
  border-bottom: none;
}

.popup-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.popup-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex: 1;
  justify-content: center;
}

.popup-btn.primary {
  background: #434b34;
  color: #e3e3c4;
}

.popup-btn.primary:hover {
  background: #5b6647;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(67, 75, 52, 0.3);
}

.popup-btn.secondary {
  background: transparent;
  color: #434b34;
  border: 2px solid #434b34;
}

.popup-btn.secondary:hover {
  background: #434b34;
  color: #e3e3c4;
  transform: translateY(-2px);
}

/* Loading Spinner */
.popup-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-loading.show {
  opacity: 1;
  visibility: visible;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(67, 75, 52, 0.1);
  border-left: 4px solid #434b34;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.popup-loading p {
  color: #434b34;
  font-size: 1.1rem;
  font-weight: 500;
}

.product-title {
  padding: 1.5vw 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.product-title h4 {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 1.4vw;
  color: #434b34;
  font-weight: 100;
  margin: 0;
}

.product-title i {
  font-size: 1.2vw;
  color: #5b6647;
  transition: all 0.3s ease;
}

.product-card:hover .product-title i {
  transform: translateX(5px);
  color: #434b34;
}

/* Features Section - Why You'll Love Our Siali Leaf Tableware */
.features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9f4 0%, #e8ebe0 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(91, 102, 71, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(67, 75, 52, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 0.8s ease-out forwards;
}

.features-title {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #434b34;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
}

.features-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #5b6647, #434b34);
  border-radius: 2px;
}

.features-subtitle {
  font-size: 1.2rem;
  color: #6b7359;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(67, 75, 52, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card[data-animation="fade-up"] {
  animation: fadeUpIn 0.8s ease-out forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}
.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(67, 75, 52, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
}

.feature-icon.eco-friendly {
  background: linear-gradient(135deg, #e8f5e8, #d4f1d4);
  color: #2d5a2d;
}

.feature-icon.style {
  background: linear-gradient(135deg, #fff2e6, #ffe6cc);
  color: #b8860b;
}

.feature-icon.durability {
  background: linear-gradient(135deg, #e6f3ff, #cce7ff);
  color: #2c5aa0;
}

.feature-icon.safety {
  background: linear-gradient(135deg, #fff0f5, #ffe6f0);
  color: #d63384;
}

.feature-icon.versatility {
  background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
  color: #6c5ce7;
}

.feature-icon.cost-effective {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #16a34a;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

/* Mobile: Apply feature card effects directly */
@media (max-width: 768px) {
  .feature-card {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(67, 75, 52, 0.12);
    background: rgba(255, 255, 255, 0.95);
  }

  .feature-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(67, 75, 52, 0.12);
  }

  .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .feature-icon svg {
    transform: scale(1.05);
  }

  .feature-card:hover .feature-icon svg {
    transform: scale(1.05);
  }
}

.feature-title {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #434b34;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-description {
  font-size: 1rem;
  color: #6b7359;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
  font-weight: 400;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */

/* Tablet styles */
@media screen and (max-width: 1024px) {
  #nav {
    padding: 0 30px;
    height: 80px;
  }

  #nav-part2 button {
    padding: 5px 12px;
    font-size: 14px;
    margin-right: 10px;
  }

  /* Hero Responsive - Tablet */
  .hero-content {
    padding: 0 30px;
  }

  .hero-logo {
    margin-bottom: 30px;
  }

  .hero-logo-img {
    height: 80px;
  }

  .hero-main-title {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .hero-features {
    gap: 20px;
    margin-bottom: 30px;
  }

  .hero-feature {
    padding: 10px 16px;
  }

  .hero-feature span {
    font-size: 0.9rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 12px 25px;
    font-size: 1rem;
    min-width: 200px;
  }

  #text-container {
    padding-top: 0vw;
  }

  #text-container h2 {
    font-size: 5.5vw;
    line-height: 6vw;
  }

  /* SVG responsive adjustments for tablet */
  #page2 #svg2,
  #page2 #svg3 {
    width: 300vw;
    /* bottom: -8%; */
    display: none;
  }
  #page2 {
    padding: 0vw 0vw;
    height: 80vh;
    border-end-start-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  #page2 #svg3 {
    transform: translateX(-10%);
  }

  #page3 {
    padding: 15vw 3vw;
  }

  .elem-part2 {
    padding: 3vw 3vw;
  }

  .elex-1 h3 {
    font-size: 3vw;
    margin-bottom: 1.5vw;
  }

  .elex-1 p {
    font-size: 1.2vw;
  }

  .elex-2 h5 {
    font-size: 1.2vw;
  }

  #page5-center h1 {
    font-size: 5vw;
    line-height: 5.5vw;
  }

  #page5-center p {
    font-size: 1.4vw;
  }

  .swiper-slide img {
    transform: scale(0.5) translateX(-400px) translateY(200px);
  }

  /* Product Cards Tablet Styles */
  #page6 {
    padding: 10vw 4vw;
  }

  .products-header h2 {
    font-size: 6vw;
    margin-bottom: 2vw;
  }

  .products-header p {
    font-size: 1.6vw;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4vw;
  }

  .product-description h3 {
    font-size: 2.2vw;
  }

  .product-description p {
    font-size: 1.1vw;
  }

  .product-features span {
    font-size: 0.9vw;
    padding: 0.4vw 1vw;
  }

  .product-title h4 {
    font-size: 1.8vw;
  }

  .product-title i {
    font-size: 1.5vw;
  }

  /* Popup responsive styles for tablet */
  .popup-content {
    flex-direction: column;
    max-width: 600px;
  }

  .popup-image {
    max-width: 100%;
    height: 250px;
  }

  .popup-info {
    padding: 30px;
  }

  .popup-info h2 {
    font-size: 2rem;
  }

  .popup-info p {
    font-size: 1rem;
  }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  #nav {
    padding: 0 20px;
    height: 70px;
  }

  #nav-part1 {
    width: 35px;
  }

  .line {
    height: 1.5px;
    margin-bottom: 3px;
  }

  #nav-part2 {
    display: flex;
    gap: 5px;
  }

  #nav-part2 button {
    padding: 6px 12px;
    font-size: 11px;
    margin-right: 0;
    white-space: nowrap;
  }

  /* Mobile Menu Responsive Styles */
  .mobile-menu {
    width: 280px;
    padding: 20px;
  }

  .mobile-menu-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
  }

  .mobile-logo {
    width: 100px;
  }

  .close-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  /* Popup Responsive Styles */
  .popup-content {
    flex-direction: column;
    max-width: 95%;
    max-height: 95vh;
    margin: 20px;
  }

  .popup-image-section {
    max-width: 100%;
    min-height: 250px;
    border-radius: 20px 20px 0 0;
  }

  .popup-info-scrollable {
    max-height: 60vh;
  }

  .popup-info {
    padding: 25px 20px;
    border-radius: 0 0 20px 20px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    font-size: 16px;
  }

  .carousel-indicators {
    padding: 12px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .popup-info {
    padding: 25px 20px;
    border-radius: 0 0 15px 15px;
  }

  .popup-info h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .popup-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .popup-features {
    margin-bottom: 20px;
  }

  .popup-features span {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  /* Responsive specifications */
  .spec-columns {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .spec-column {
    padding: 12px;
  }

  .spec-item {
    font-size: 0.8rem;
    margin: 6px 0;
  }

  .popup-actions {
    flex-direction: column;
    gap: 10px;
  }

  .popup-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 12px 20px;
  }

  .popup-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }

  .popup-close i {
    font-size: 18px;
  }

  /* Features Section Responsive - Tablet */
  .features-section {
    padding: 80px 0;
  }

  .features-container {
    padding: 0 30px;
  }

  .features-header {
    margin-bottom: 60px;
  }

  .features-title {
    font-size: 2.8rem;
  }

  .features-subtitle {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
  }

  .feature-card {
    padding: 35px 25px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .feature-icon svg {
    width: 32px;
    height: 32px;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }

  /* WhatsApp button responsive - mobile */
  .whatsapp-sticky {
    width: 50px;
    height: 50px;
    bottom: 60px;
    right: 20px;
  }

  .whatsapp-sticky i {
    font-size: 24px;
  }

  .mobile-nav a {
    font-size: 20px;
    padding: 12px 0;
  }

  .mobile-nav li {
    margin-bottom: 20px;
  }

  .mobile-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Hero Responsive - Mobile */
  .hero-content {
    padding: 0 20px;
  }

  .hero-logo {
    margin-bottom: 25px;
  }

  .hero-logo-img {
    height: 60px;
  }

  .hero-main-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

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

  .hero-features {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
  }

  .hero-feature {
    padding: 8px 14px;
    justify-content: center;
  }

  .hero-feature span {
    font-size: 0.85rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
  }

  .floating-leaf {
    font-size: 1.5rem;
    opacity: 0.2;
  }

  #page2 {
    min-height: 70vh;
  }

  /* SVG responsive adjustments for mobile */
  #page2 #svg2,
  #page2 #svg3 {
    width: 350vw;
    height: auto;
    bottom: -5%;
    min-height: 60px;
    max-height: 100px;
  }

  #page2 #svg3 {
    transform: translateX(-15%);
  }

  #text-container {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  #text-container h2 {
    font-size: 7vw;
    line-height: 7.5vw;
  }

  #page3 {
    padding: 20vw 4vw;
  }

  .swiper-slide {
    padding: 50px 20px;
  }

  .swiper-slide img {
    transform: scale(0.8) translateX(0) translateY(0);
  }

  .swiper-slide-active img {
    transform: scale(1) translateX(0) translateY(0);
  }

  .swiper-button-next,
  .swiper-button-prev {
    font-size: 12px;
    padding: 0 15px;
    height: 18px;
  }

  .swiper-button-prev {
    left: 75%;
  }

  .swiper-pagination {
    left: 82%;
    font-size: 8px;
  }

  #page5 {
    flex-direction: column;
    padding: 10vw 5vw;
    height: auto;
    min-height: 120vh;
  }

  #page5-left,
  #page5-right {
    width: 100%;
    height: 30vh;
    margin-bottom: 5vw;
  }

  #page5-center {
    width: 100%;
    height: auto;
    padding: 5vw 2vw;
  }

  #page5-center h1 {
    font-size: 8vw;
    line-height: 8.5vw;
    margin-bottom: 5vw;
  }

  #page5-center p {
    font-size: 3.5vw;
    line-height: 5vw;
  }

  /* Product Cards Mobile Styles */
  #page6 {
    padding: 15vw 4vw;
  }

  .products-header h2 {
    font-size: 8vw;
    margin-bottom: 3vw;
  }

  .products-header p {
    font-size: 3.5vw;
    line-height: 1.8;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 6vw;
    margin-top: 8vw;
  }

  .product-image {
    height: 220px;
  }

  .product-overlay {
    padding: 20px;
  }

  .product-description h3 {
    font-size: 5vw;
    margin-bottom: 2vw;
  }

  .product-description p {
    font-size: 3vw;
    margin-bottom: 3vw;
  }

  .product-features {
    gap: 1.5vw;
  }

  .product-features span {
    font-size: 2.5vw;
    padding: 1vw 2vw;
  }

  .product-title {
    padding: 3vw 4vw;
  }

  .product-title h4 {
    font-size: 4vw;
  }

  .product-title i {
    font-size: 3.5vw;
  }

  /* Popup responsive styles for mobile */
  .popup-content {
    flex-direction: column;
    width: 95%;
    max-height: 85vh;
  }

  .popup-image {
    height: 200px;
  }

  .popup-info {
    padding: 20px;
  }

  .popup-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .popup-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .popup-features span {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .popup-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  /* Features Section Responsive - Mobile */
  .features-section {
    padding: 60px 0;
  }

  .features-container {
    padding: 0 20px;
  }

  .features-header {
    margin-bottom: 50px;
  }

  .features-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .features-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
  }

  .feature-card {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .feature-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* Small mobile styles */
@media screen and (max-width: 480px) {
  #nav {
    padding: 0 15px;
    height: 60px;
  }

  #nav-part1 {
    width: 30px;
  }

  #nav-part2 button {
    padding: 4px 10px;
    font-size: 10px;
    margin-right: 5px;
  }

  /* Mobile Menu Small Screen Styles */
  .mobile-menu {
    width: 260px;
    padding: 15px;
  }

  .mobile-menu-header {
    margin-bottom: 25px;
    padding-bottom: 12px;
  }

  .mobile-logo {
    width: 80px;
  }

  .close-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .mobile-nav a {
    font-size: 18px;
    padding: 10px 0;
  }

  .mobile-nav li {
    margin-bottom: 18px;
  }

  .mobile-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .hero-logo {
    padding: 12px;
    border-radius: 10px;
  }

  .hero-logo-img {
    height: 50px;
  }

  #text-container {
    padding-top: 10vw;
  }

  #text-container h2 {
    font-size: 8.5vw;
    line-height: 9vw;
  }

  /* SVG responsive adjustments for small mobile */
  #page2 #svg2,
  #page2 #svg3 {
    width: 400vw;
    height: auto;
    bottom: -3%;
    min-height: 50px;
    max-height: 80px;
  }

  #page2 #svg3 {
    transform: translateX(-20%);
  }

  #page3 {
    padding: 25vw 3vw;
  }

  #page3 .elem {
    height: 120px;
  }

  .elem-part2 {
    padding: 3vw 2vw;
  }

  /* Small mobile service icon adjustments */
  .service-icon svg {
    width: 35px;
    height: 35px;
  }

  .elex-1 h3 {
    font-size: 5.5vw;
    margin-bottom: 2vw;
  }

  .elex-1 p {
    font-size: 3vw;
  }

  .elex-2 h5 {
    font-size: 3vw;
    padding: 4px 12px;
  }

  .swiper-slide {
    padding: 30px 10px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    font-size: 10px;
    padding: 0 12px;
    height: 16px;
  }

  .swiper-button-prev {
    left: 70%;
  }

  .swiper-pagination {
    left: 78%;
    font-size: 7px;
  }

  #page5 {
    padding: 15vw 3vw;
    min-height: 140vh;
  }

  #page5-left,
  #page5-right {
    height: 25vh;
    margin-bottom: 8vw;
  }

  #page5-center {
    padding: 8vw 2vw;
  }

  #page5-center h1 {
    font-size: 10vw;
    line-height: 10.5vw;
    margin-bottom: 6vw;
  }

  #page5-center p {
    font-size: 4vw;
    line-height: 6vw;
  }

  /* Product Cards Small Mobile Styles */
  #page6 {
    padding: 20vw 3vw;
  }

  .products-header h2 {
    font-size: 9vw;
    margin-bottom: 4vw;
  }

  .products-header p {
    font-size: 4vw;
    line-height: 1.8;
  }

  .product-grid {
    gap: 8vw;
    margin-top: 10vw;
  }

  .product-image {
    height: 200px;
  }

  .product-overlay {
    padding: 15px;
  }

  .product-description h3 {
    font-size: 5.5vw;
    margin-bottom: 2.5vw;
  }

  .product-description p {
    font-size: 3.2vw;
    margin-bottom: 3.5vw;
  }

  .product-features {
    gap: 2vw;
  }

  .product-features span {
    font-size: 2.8vw;
    padding: 1.2vw 2.5vw;
  }

  .product-title {
    padding: 4vw;
  }

  .product-title h4 {
    font-size: 4.5vw;
  }

  .product-title i {
    font-size: 4vw;
  }

  /* Popup responsive styles for small mobile */
  .popup-content {
    width: 98%;
    max-height: 90vh;
  }

  .popup-image {
    height: 180px;
  }

  .popup-info {
    padding: 15px;
  }

  .popup-info h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .popup-info p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .popup-features {
    gap: 8px;
    margin-bottom: 20px;
  }

  .popup-features span {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .popup-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .popup-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }

  .popup-close i {
    font-size: 18px;
  }

  /* Features Section Responsive - Small Mobile */
  .features-section {
    padding: 50px 0;
  }

  .features-container {
    padding: 0 15px;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .features-title {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .features-title::after {
    width: 60px;
    height: 3px;
  }

  .features-subtitle {
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 15px;
  }

  .feature-card {
    padding: 25px 15px;
    border-radius: 12px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .feature-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .feature-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* WhatsApp button responsive - small mobile */
  .whatsapp-sticky {
    width: 45px;
    height: 45px;
    bottom: 60px;
    right: 15px;
  }

  .whatsapp-sticky i {
    font-size: 22px;
  }
}

/* Simple Footer Styles */
#footer {
  background: linear-gradient(135deg, #5b6647 0%, #434b34 100%);
  color: #e3e3c4;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #434b34, #5b6647, #434b34);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Company Brand Section */

.footer-brand img {
  width: 200px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #f7f7ee;
  font-weight: 600;
  margin-bottom: 15px;
  font-style: normal;
}

.footer-desc {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 14px;
  color: #f7f7ee;
  line-height: 1.6;
  opacity: 0.9;
}

/* Contact Section */
.footer-contact h3 {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e3e3c4;
  margin-bottom: 20px;
  position: relative;
}

.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #e3e3c4;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 14px;
}

.contact-row i {
  color: #e3e3c4;
  font-size: 18px;
  width: 20px;
  flex-shrink: 0;
}

.contact-row span {
  color: #f7f7ee;
  font-weight: 500;
}

/* Quick Links Section */
.footer-links h3 {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e3e3c4;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #e3e3c4;
}

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

.footer-links a {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  color: #f7f7ee;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: #e3e3c4;
  padding-left: 15px;
}

/* Responsive Design for Split Hero - Enhanced */
@media (max-width: 1400px) {
  .hero-container {
    max-width: 1200px;
    gap: 50px;
  }
}

@media (max-width: 1200px) {
  .hero-container {
    gap: 40px;
    padding: 0 30px;
  }

  .hero-main-title {
    font-size: 3rem;
  }

  .hero-stats {
    gap: 30px;
  }

  .hero-logo-img {
    height: 70px;
  }

  .floating-product {
    width: 55px;
    height: 55px;
  }

  .floating-product img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 968px) {
  .hero-container {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    justify-content: center;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
    order: 1;
  }

  .hero-right {
    height: 50vh;
    width: 100%;
    order: 2;
    margin-top: 20px;
  }

  .hero-main-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

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

  .hero-stats {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .hero-features {
    max-width: 500px;
    margin: 0 auto 30px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .floating-product {
    width: 50px;
    height: 50px;
  }

  .floating-product img {
    width: 35px;
    height: 35px;
  }

  /* Improve floating product positioning for tablets */
  .product-1 {
    top: 12%;
    left: 18%;
  }

  .product-2 {
    top: 22%;
    right: 12%;
  }

  .product-3 {
    bottom: 28%;
    left: 12%;
  }

  .product-4 {
    bottom: 18%;
    right: 22%;
  }
}

@media (max-width: 768px) {
  /* Products grid responsive */
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 15px;
  }

  .hero-container {
    gap: 25px;
    padding: 20px 15px;
    flex-direction: column;
    min-height: calc(100vh - 70px);
  }

  .hero-left {
    padding: 0 10px;
  }

  .hero-main-title {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }

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

  .hero-stats {
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 25px;
    max-width: 400px;
  }

  .hero-feature {
    padding: 10px 15px;
    border-radius: 10px;
  }

  .hero-feature span {
    font-size: 0.9rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    padding: 12px 25px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    border-radius: 25px;
  }
}

@media (max-width: 480px) {
  /* Mobile navigation adjustments */
  #nav {
    padding: 0 10px;
    height: 60px;
  }

  .hero-container {
    padding: 15px 10px;
    gap: 20px;
    min-height: calc(100vh - 60px);
  }

  .hero-logo-img {
    height: 60px;
  }

  .hero-main-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 18px;
    padding: 0 5px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 15px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 80px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.75rem;
    text-align: center;
  }

  .hero-features {
    max-width: 300px;
    gap: 6px;
    margin-bottom: 20px;
  }

  .hero-feature {
    padding: 8px 12px;
    border-radius: 8px;
  }

  .hero-feature i {
    font-size: 1rem;
  }

  .hero-feature span {
    font-size: 0.85rem;
  }

  .hero-cta {
    gap: 10px;
    margin-bottom: 20px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
    max-width: 250px;
    border-radius: 20px;
  }

  .hero-right {
    height: 35vh;
    min-height: 250px;
  }

  .gift-image {
    max-width: 95%;
    max-height: 95%;
  }

  .floating-product {
    display: none; /* Hide floating products on very small screens for better performance */
  }

  .scroll-indicator {
    bottom: 10px;
    scale: 0.8;
  }

  .scroll-mouse {
    width: 20px;
    height: 35px;
  }

  .scroll-wheel {
    width: 2px;
    height: 6px;
  }

  .scroll-indicator span {
    font-size: 0.8rem;
  }

  /* Touch-friendly adjustments */
  .hero-feature:active {
    transform: scale(0.98);
  }

  .cta-primary:active,
  .cta-secondary:active {
    transform: translateY(1px);
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .hero-container {
    padding: 10px 8px;
  }

  .hero-main-title {
    font-size: 1.6rem;
  }

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

  .hero-stats {
    gap: 12px;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .hero-features {
    max-width: 280px;
  }

  .cta-primary,
  .cta-secondary {
    max-width: 220px;
    font-size: 0.85rem;
  }
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #e3e3c4;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(227, 227, 196, 0.2);
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-content p {
  font-family: "FilsonPro", "Filson Pro", sans-serif;
  color: #f7f7ee;
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(227, 227, 196, 0.1);
  color: #e3e3c4;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(227, 227, 196, 0.2);
}

.footer-social a:hover {
  background: #e3e3c4;
  color: #434b34;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(227, 227, 196, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }

  .footer-brand h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 15px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    margin-bottom: 30px;
  }

  .footer-contact h3::after,
  .footer-links h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-details {
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

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

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 10px 0;
  }

  .footer-brand h2 {
    font-size: 24px;
  }

  .footer-tagline {
    font-size: 14px;
  }

  .footer-desc {
    font-size: 13px;
  }

  .footer-contact h3,
  .footer-links h3 {
    font-size: 18px;
  }

  .contact-row {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .footer-bottom-content p {
    font-size: 12px;
  }
}

/* ===== LARGE SCREEN RESPONSIVE STYLES ===== */

/* Extra Large Screens (1921px and above) */
@media screen and (min-width: 1921px) {
  /* Navigation */
  #nav {
    height: 120px;
    padding: 0 100px;
  }

  /* Hero Section */
  .hero-container {
    max-width: 1800px;
    padding: 0 80px;
    gap: 100px;
  }

  .hero-logo-img {
    height: 100px;
  }

  .hero-main-title {
    font-size: 4.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 1.1rem;
  }

  .hero-feature {
    font-size: 1.1rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
  }

  /* Gift Container */
  .gift-container {
    width: 600px;
    height: 600px;
  }

  .gift-image {
    width: 550px;
    height: 550px;
  }

  /* Products Section */
  .products-header h2 {
    font-size: 3.5rem;
  }

  .products-header p {
    font-size: 1.3rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 0 60px;
  }

  /* Features Section */
  .features-title {
    font-size: 3.5rem;
  }

  .features-subtitle {
    font-size: 1.3rem;
  }

  .feature-card {
    padding: 50px;
  }

  .feature-title {
    font-size: 1.8rem;
  }

  .feature-description {
    font-size: 1.1rem;
  }

  /* Services Section */
  .elem {
    padding: 60px 80px;
  }

  .elex-1 h3 {
    font-size: 2.2rem;
  }

  .elex-1 p {
    font-size: 1.2rem;
  }
}

/* Large Screens (1601px to 1920px) */
@media screen and (min-width: 1601px) and (max-width: 1920px) {
  /* Navigation */
  #nav {
    height: 110px;
    padding: 0 80px;
  }

  /* Hero Section */
  .hero-container {
    max-width: 1600px;
    padding: 0 60px;
    gap: 80px;
  }

  .hero-logo-img {
    height: 90px;
  }

  .hero-main-title {
    font-size: 4rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 16px 36px;
    font-size: 1.05rem;
  }

  /* Gift Container */
  .gift-container {
    width: 550px;
    height: 550px;
  }

  .gift-image {
    width: 500px;
    height: 500px;
  }

  /* Products Section */
  .products-header h2 {
    font-size: 3.2rem;
  }

  .products-header p {
    font-size: 1.2rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    padding: 0 50px;
  }

  /* Features Section */
  .features-title {
    font-size: 3.2rem;
  }

  .features-subtitle {
    font-size: 1.2rem;
  }

  .feature-card {
    padding: 45px;
  }

  .feature-title {
    font-size: 1.7rem;
  }

  .feature-description {
    font-size: 1.05rem;
  }
}

/* Wide Screens (1441px to 1600px) */
@media screen and (min-width: 1441px) and (max-width: 1600px) {
  /* Navigation */
  #nav {
    padding: 0 70px;
  }

  /* Hero Section */
  .hero-container {
    max-width: 1500px;
    gap: 70px;
  }

  .hero-main-title {
    font-size: 3.8rem;
  }

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

  /* Products Section */
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  /* Features Section */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 35px;
  }
}

/* Ultra-wide Monitors (2560px and above) */
@media screen and (min-width: 2560px) {
  /* Container max-widths for ultra-wide screens */
  .hero-container {
    max-width: 2200px;
    padding: 0 120px;
  }

  #nav {
    padding: 0 120px;
  }

  .products-section,
  .features-section,
  #page3,
  #page5 {
    max-width: 2200px;
    margin: 0 auto;
  }

  /* Typography scaling for ultra-wide */
  .hero-main-title {
    font-size: 5rem;
  }

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

  .products-header h2,
  .features-title {
    font-size: 4rem;
  }

  /* Grid adjustments */
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px;
  }
}

/* High DPI/Retina Display Optimizations */
@media screen and (min-resolution: 2dppx) {
  .hero-logo-img,
  .gift-image,
  .floating-product img,
  .product-card img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Large Landscape Tablets and Small Desktops */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hero-container {
    max-width: 1300px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Page Specific Body Styles */
body.contact-page {
  background-color: #f5f3f0; /* Light beige background */
}

/* Wave decoration */
.wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  z-index: 1;
}

.wave {
  width: 100%;
  height: 100%;
}

/* Main container for contact page */
.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 20px 80px;
}

/* Page title */
.contact-page-title {
  font-size: 4rem;
  font-weight: 700;
  color: #2d5016; /* Dark green */
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
}

/* Two-column layout */
.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.contact-left-column {
  padding-right: 40px;
}

.contact-intro-text {
  margin-bottom: 60px;
}

.contact-intro-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
}

.contact-contact-info {
  margin-top: 40px;
}

.contact-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #2d5016;
  font-weight: 500;
}

.contact-contact-item i {
  font-size: 1.2rem;
  color: #55972f;
}

/* Right column */
.contact-right-column {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 40px;
  text-align: center;
}

/* Form styles */
.contact-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.contact-form-group input,
.contact-form-group textarea {
  padding: 18px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease;
  resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #55972f;
  background: white;
  box-shadow: 0 0 0 3px rgba(85, 151, 47, 0.1);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #999;
  font-weight: 400;
}

/* Send button */
.contact-send-button {
  background: #2d5016; /* Dark green */
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px; /* Pill-shaped */
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 20px;
  text-transform: uppercase;
}

.contact-send-button:hover {
  background: #1e3510;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.contact-send-button:active {
  transform: translateY(0);
}

.contact-send-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.contact-send-button:hover i {
  transform: translateX(3px);
}

/* Mobile: Apply contact button effects directly */
@media (max-width: 768px) {
  .contact-send-button {
    background: #1e3510;
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.25);
  }

  .contact-send-button:hover {
    background: #1e3510;
    transform: none;
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.25);
  }

  .contact-send-button i {
    transform: translateX(2px);
  }

  .contact-send-button:hover i {
    transform: translateX(2px);
  }
}

/* Navigation active state for contact page */
.nav-links a.active {
  color: #55972f;
  font-weight: 600;
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #55972f;
  border-radius: 1px;
}

/* Contact Page Responsive Design */
@media (max-width: 968px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-left-column {
    padding-right: 0;
  }

  .contact-page-title {
    font-size: 3rem;
    margin-bottom: 60px;
  }

  .contact-container {
    padding: 120px 20px 60px;
  }
}

@media (max-width: 768px) {
  .contact-page-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .contact-right-column {
    padding: 40px 30px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-container {
    padding: 100px 15px 50px;
  }

  .contact-content-wrapper {
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 0px 10px;
  }
  .contact-page-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .contact-right-column {
    padding: 30px 10px;
  }

  .contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .contact-intro-text p {
    font-size: 1rem;
  }

  .contact-contact-form {
    gap: 20px;
  }

  .contact-form-group input,
  .contact-form-group textarea {
    padding: 15px 18px;
  }

  .contact-send-button {
    padding: 15px 35px;
    width: 100%;
    justify-content: center;
  }
}

/* Contact Form validation states */
.contact-form-group input:invalid:not(:placeholder-shown),
.contact-form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
  background: #fdf2f2;
}

.contact-form-group input:valid,
.contact-form-group textarea:valid {
  border-color: #27ae60;
}

/* Contact Form animations */
.contact-form-group input,
.contact-form-group textarea,
.contact-send-button {
  transition: all 0.3s ease;
}

/* Contact Form loading state */
.contact-send-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.contact-send-button:disabled:hover {
  background: #ccc;
  transform: none;
  box-shadow: none;
}
