/*
 * Luxury Theme for Govind Glass International
 * Author: Govind Glass International
 * Version: 1.0
 */

/* ===== VARIABLES ===== */
:root {
  /* Luxury Color Palette */
  --primary-color: #c9a55c; /* Gold */
  --primary-dark: #a88a4c; /* Darker Gold */
  --primary-light: #e0c080; /* Lighter Gold */
  --secondary-color: #2c3e50; /* Deep Navy */
  --secondary-dark: #1a2530; /* Darker Navy */
  --secondary-light: #3e5771; /* Lighter Navy */
  --accent-color: #8e44ad; /* Royal Purple */
  --text-color: #2c3e50; /* Deep Navy for text */
  --text-light: #7f8c8d; /* Medium gray for secondary text */
  --text-white: #ffffff; /* White text */
  --bg-light: #f9f7f4; /* Light cream background */
  --bg-dark: #2c3e50; /* Deep Navy background */
  --border-color: #e0e0e0; /* Light gray for borders */
  --success-color: #2ecc71; /* Green for success messages */
  --danger-color: #e74c3c; /* Red for error messages */
  --warning-color: #f39c12; /* Orange for warnings */
  --info-color: #3498db; /* Light blue for info */

  /* Shadows and Effects */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 5px 15px rgba(201, 165, 92, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

/* Base Styles */
:root {
  --primary-color: #c9a55c;
  --secondary-color: #1a2942;
  --accent-color: #8a6d3b;
  --text-color: #333;
  --light-text: #fff;
  --dark-bg: #0f1620;
  --light-bg: #f9f7f3;
  --border-color: #e0d5c0;
  --transition: all 0.3s ease;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --gold-gradient: linear-gradient(135deg, #c9a55c 0%, #e2c989 50%, #c9a55c 100%);
}

/* ===== RESET & GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 300;
}

.text-center {
  text-align: center;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  align-items: center;
}

.diamond {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  margin: 0 5px;
  transform: rotate(45deg);
  animation: pulse 1.5s infinite ease-in-out;
}

.diamond:nth-child(2) {
  animation-delay: 0.2s;
}

.diamond:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) scale(0.6);
    opacity: 0.5;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--light-text);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--light-text);
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  color: var(--light-text);
}

.btn-text {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  position: relative;
  display: inline-block;
}

.btn-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.btn-text:hover::after {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background-color: rgba(15, 22, 32, 0.95);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-align: center;
}

.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin: 0;
}

.logo .tagline {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--light-text);
  text-transform: uppercase;
  display: block;
  margin-top: -5px;
}

.header.scrolled .logo h1 {
  font-size: 24px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li .logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondary-color);
  text-decoration: none;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  color: var(--secondary-color);
  position: relative;
}

.logo span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  margin-top: -5px;
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
}

.main-nav .nav-list li {
  margin-left: 40px;
  position: relative;
}

.main-nav .nav-list li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: var(--transition);
}

.main-nav .nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav .nav-list li a:hover,
.main-nav .nav-list li a.active {
  color: var(--primary-color);
}

.main-nav .nav-list li a:hover::after,
.main-nav .nav-list li a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 80px;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 20px;
  margin-left: 10%;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.4));
}

.hero-controls {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.hero-prev,
.hero-next {
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  transition: var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
  color: var(--primary-color);
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin: 0 20px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 500;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-white);
  border: none;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--text-white);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: var(--shadow-gold);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
}

.btn-outline-light:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
  box-shadow: var(--shadow);
}

.btn-light {
  background-color: var(--text-white);
  color: var(--primary-color);
  border: none;
}

.btn-light:hover {
  background-color: var(--bg-light);
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}

/* ===== SECTION STYLES ===== */
section {
  padding: 80px 0;
  position: relative;
}

.section-heading {
  margin-bottom: 50px;
  position: relative;
}

.section-heading.centered {
  text-align: center;
}

.section-heading .subtitle {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.heading-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 20px;
}

.section-heading.centered .heading-line {
  margin-left: auto;
  margin-right: auto;
}

.section-heading p {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 0;
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* ===== INTRO SECTION ===== */
.intro {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ===== COLLECTIONS SECTION ===== */
.collections {
  background-color: #fff;
  padding: 120px 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.collection-item {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.collection-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* Fix image container heights */
.collection-image,
.product-image,
.gallery-item {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.collection-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.collection-item:hover .collection-image img {
  transform: scale(1.1);
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.collection-item:hover .collection-overlay {
  opacity: 1;
}

.collection-info {
  padding: 20px;
  background-color: #fff;
  text-align: center;
}

.collection-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  transition: var(--transition);
}

.collection-info p {
  color: var(--text-light);
  margin-bottom: 0;
}

.collection-item:hover .collection-info h3 {
  color: var(--primary-color);
}

/* ===== CRAFTSMANSHIP SECTION ===== */
.craftsmanship {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.craftsmanship-content p {
  margin-bottom: 30px;
}

.craftsmanship-features {
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(201, 165, 92, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-text p {
  color: var(--text-light);
  margin-bottom: 0;
}

.craftsmanship-image {
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.craftsmanship-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(201, 165, 92, 0.2), rgba(44, 62, 80, 0.2));
  z-index: 1;
}

.craftsmanship-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.craftsmanship-image:hover img {
  transform: scale(1.05);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-color: #fff;
  padding: 120px 0;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 1s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border-top: 3px solid var(--primary-color);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.client-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.client-info p {
  color: var(--text-light);
  margin-bottom: 0;
  font-style: normal;
}

.testimonial-controls {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* ===== FARM TOUR SECTION ===== */
.farm-tour {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.farm-tour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.farm-tour-image {
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.farm-tour-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(201, 165, 92, 0.2), rgba(44, 62, 80, 0.2));
  z-index: 1;
}

.farm-tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.farm-tour-image:hover img {
  transform: scale(1.05);
}

.farm-tour-content p {
  margin-bottom: 30px;
}

.tour-highlights {
  margin-bottom: 30px;
}

.tour-highlights li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.tour-highlights li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta {
  background-color: var(--secondary-color);
  background-image: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  color: var(--text-white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--secondary-dark);
  color: var(--text-white);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.footer-logo span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-white);
  opacity: 0.7;
}

.footer-logo p {
  margin-top: 15px;
  opacity: 0.7;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-white);
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 5px;
}

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact ul li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-white);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.7;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.whatsapp-button a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background-color: var(--secondary-color);
  background-image: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url("../images/page-header-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 150px 0 80px;
  text-align: center;
  color: var(--text-white);
}

.page-header h1 {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb a {
  color: var(--primary-color);
}

.breadcrumb .separator {
  margin: 0 10px;
  color: var(--text-white);
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--text-white);
  opacity: 0.7;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-story {
  padding: 120px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-image {
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  box-shadow: var(--shadow);
  z-index: 2;
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-info {
  margin-top: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item i {
  width: 40px;
  height: 40px;
  background-color: rgba(201, 165, 92, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.mission-section {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.mission-statement {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
}

.mission-statement .quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 20px;
}

.mission-statement p {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(201, 165, 92, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.value-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.value-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.products-section {
  padding: 120px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-category {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.product-category:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(201, 165, 92, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.product-category h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.product-category p {
  color: var(--text-light);
  margin-bottom: 0;
}

.farming-practices {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.practices-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.practices-list {
  margin-top: 30px;
}

.practices-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.practices-list li i {
  color: var(--primary-color);
  margin-right: 15px;
}

.team-section {
  padding: 120px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.member-image {
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 30px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.member-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.member-bio {
  color: var(--text-light);
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.member-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: rgba(201, 165, 92, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition);
}

.member-social a:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.factory-tours {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.tours-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tour-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.tour-features .feature {
  background-color: #fff;
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.tour-features .feature i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-section {
  padding: 120px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-card {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(201, 165, 92, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.contact-card p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.contact-form-section {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Fix form elements */
input,
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: #fff;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(201, 165, 92, 0.2);
  outline: none;
}

.contact-image {
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(201, 165, 92, 0.2), rgba(44, 62, 80, 0.2));
  z-index: 1;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(44, 62, 80, 0.9);
  padding: 20px;
  text-align: center;
  z-index: 2;
}

.contact-social h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.contact-social .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact-social .social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-white);
  transition: var(--transition);
}

.contact-social .social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.whatsapp-cta {
  padding: 80px 0;
}

.whatsapp-content {
  background-color: #25d366;
  padding: 40px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  color: var(--text-white);
}

.whatsapp-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.whatsapp-text {
  flex-grow: 1;
}

.whatsapp-text h2 {
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.whatsapp-text p {
  margin-bottom: 0;
  opacity: 0.9;
}

.btn-whatsapp {
  background-color: #fff;
  color: #25d366;
  margin-left: 30px;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #128c7e;
}

.map-section {
  padding: 120px 0;
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .hero-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .header-inner {
    padding: 15px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-dark);
    padding: 80px 30px 30px;
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav .nav-list li {
    margin: 0 0 20px;
    width: 100%;
  }

  .main-nav .nav-list li a {
    color: var(--text-white);
    display: block;
    padding: 10px 0;
  }

  .hero-content {
    margin-left: 5%;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .craftsmanship-grid,
  .farm-tour-grid,
  .story-content,
  .practices-content,
  .tours-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .craftsmanship-image,
  .farm-tour-image,
  .story-image,
  .practices-image,
  .tours-image,
  .contact-image {
    max-height: 400px;
  }
}

/* Fix responsive issues */
@media (max-width: 768px) {
  .hero {
    height: 70vh; /* Better height on mobile */
    min-height: 450px;
  }

  .hero-content h2 {
    font-size: 2rem; /* Smaller heading on mobile */
  }

  .hero-content p {
    font-size: 1rem; /* Smaller text on mobile */
  }

  .section-heading h2 {
    font-size: 1.8rem; /* Smaller section headings on mobile */
  }

  .collection-item,
  .product-item,
  .gallery-item {
    height: auto !important; /* Allow natural height on mobile */
  }

  .footer-top {
    grid-template-columns: 1fr; /* Stack footer columns on mobile */
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0; /* Less padding on mobile */
  }
}

/* Fix navigation on mobile */
@media (max-width: 768px) {
  .main-nav {
    width: 250px; /* Narrower mobile menu */
    padding-top: 70px; /* More space at top */
  }

  .main-nav .nav-list li {
    margin-bottom: 15px; /* More space between items */
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .hero {
    height: 80vh;
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
    padding: 0 20px;
    max-width: 100%;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .mission-statement p {
    font-size: 1.2rem;
  }

  .whatsapp-content {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .btn-whatsapp {
    margin-left: 0;
    margin-top: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links h3::after,
  .footer-contact h3::after,
  .footer-social h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Ensure all images have proper object-fit */
.collection-image img,
.product-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fix button hover states */
.btn:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

/* Fix overflow issues */
body {
  overflow-x: hidden;
}

@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Ensure consistent font sizes */
@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 20px; /* Smaller buttons on mobile */
    font-size: 0.9rem;
  }
}

/* Fix image shaking issues */
.collection-image img,
.product-image img,
.gallery-item img,
.main-image img,
.thumbnail img,
.farm-tour-image img {
  transition: none !important;
  transform: none !important;
}

.collection-item:hover .collection-image img,
.product-item:hover .product-image img,
.gallery-item:hover img,
.main-image:hover img,
.thumbnail:hover img {
  transform: none !important;
}

/* Fix form validation styles */
input.error,
textarea.error,
select.error {
  border-color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: -10px;
  margin-bottom: 10px;
}

/* Fix WhatsApp button */
.whatsapp-button {
  z-index: 999;
}

/* Fix back to top button */
.back-to-top {
  z-index: 998;
}

/* ANIMATION FIX: Disable animations on mobile */
@media (max-width: 768px) {
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .animate__animated,
  [data-aos],
  .hero-slide,
  .testimonial-slide,
  .collection-item,
  .product-card,
  .feature-card,
  .gallery-item {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-name: none !important;
  }

  /* Fix for horizontal scrolling */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .container,
  section,
  header,
  footer,
  main,
  div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Fix image container heights */
  .collection-image,
  .product-image,
  .gallery-item,
  .main-image,
  .thumbnail,
  .farm-tour-image {
    height: auto !important;
    max-height: 300px;
  }
}

/* Fix for animation keyframes that might cause overflow */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}
