/* ===================================
   Island Trading Corp - Main Stylesheet
   Brownish/Earth Tones Theme
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6b4423;
  --secondary-color: #a0522d;
  --accent-color: #cd853f;
  --text-dark: #3e2723;
  --text-light: #5d4037;
  --bg-light: #faf6f1;
  --white: #ffffff;
  --brown-light: #d4a574;
  --brown-medium: #8b6f47;
  --brown-dark: #4a3728;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================================
   NAVIGATION
   =================================== */

nav {
  background: var(--white);
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(107, 68, 35, 0.15);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 1rem 5%;
  box-shadow: 0 2px 20px rgba(107, 68, 35, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION (Home Page)
   =================================== */

.hero {
  margin-top: 85px;
  height: 90vh;
  background: linear-gradient(rgba(107, 68, 35, 0.75), rgba(74, 55, 40, 0.75)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23d4a574" width="1200" height="600"/><path fill="%238b6f47" d="M0 300L50 285C100 270 200 240 300 225C400 210 500 210 600 220C700 230 800 250 900 245C1000 240 1100 210 1150 195L1200 180V600H1150C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600H0V300Z"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero-content {
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===================================
   PAGE HEADER (Sub Pages)
   =================================== */

.page-header {
  margin-top: 85px;
  padding: 6rem 5% 4rem;
  background: linear-gradient(135deg, var(--primary-color), var(--brown-dark));
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brown-medium);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1.5rem auto 0;
}

/* ===================================
   QUICK OVERVIEW (Home Page)
   =================================== */

.quick-overview {
  padding: 6rem 5%;
  background: var(--white);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.overview-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.2);
  border-color: var(--brown-light);
}

.overview-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.overview-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.overview-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===================================
   CHAIRMAN SECTION
   =================================== */

.chairman-section {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f5ebe0 100%);
}

.chairman-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  align-items: start;
}

.chairman-image-wrapper {
  position: relative;
}

.chairman-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.25);
  border: 8px solid var(--white);
}

.chairman-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.chairman-content {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(107, 68, 35, 0.1);
  border-left: 5px solid var(--secondary-color);
}

.chairman-content h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.chairman-content h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.chairman-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  text-align: justify;
}

.chairman-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--bg-light);
}

.chairman-signature h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.chairman-signature p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0.2rem 0;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-page-intro {
  padding: 6rem 5%;
  background: var(--white);
}

.about-intro {
  display: flex;
  gap: 3rem;
  align-items: start;
  flex-wrap: wrap;
}

.about-intro-content {
  flex: 1 1 520px;
  min-width: 300px;
}

.about-intro-image {
  flex: 0 0 380px;
  min-width: 260px;
}

.about-intro-content h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-intro-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  text-align: justify;
}

.about-intro-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.25);
  border: 8px solid var(--bg-light);
}

.about-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1100px) {
  .about-gallery {
    gap: 1rem;
  }
}

.core-values {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #f5ebe0 0%, var(--bg-light) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.about-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.2);
  border-color: var(--brown-light);
}

.about-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.about-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.about-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===================================
   COMPETENCIES
   =================================== */

.competencies {
  padding: 6rem 5%;
  background: var(--white);
}

.competencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.competency-card {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(107, 68, 35, 0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.competency-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.competency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107, 68, 35, 0.2);
}

.competency-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.competency-card h3 {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.competency-card p {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.05rem;
}

.competency-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.competency-list li {
  color: var(--text-light);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.competency-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* ===================================
   EXPORT MARKETS
   =================================== */

.export-markets {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #f5ebe0 0%, var(--bg-light) 100%);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.market-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(107, 68, 35, 0.1);
  transition: all 0.3s ease;
}

.market-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(107, 68, 35, 0.2);
}

.market-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.market-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.market-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================================
   MISSION & VISION
   =================================== */

.mission-vision {
  padding: 6rem 5%;
  background: var(--white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.mv-card {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(107, 68, 35, 0.15);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--brown-light);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.mv-card h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mv-card p {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.05rem;
}

/* ===================================
   PRODUCTS
   =================================== */

.featured-products,
.products-page {
  padding: 6rem 5%;
  background: var(--bg-light);
}

.product-category {
  margin-bottom: 5rem;
}

.category-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.category-header h2,
.category-header h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.category-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(107, 68, 35, 0.15);
  transition: all 0.3s ease;
  border: 2px solid var(--bg-light);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(107, 68, 35, 0.25);
  border-color: var(--brown-light);
}

.product-image-real {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--bg-light);
}

.product-image-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-real img {
  transform: scale(1.1);
}

.product-content {
  padding: 1.8rem;
}

.product-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.product-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.product-features span {
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--brown-light);
}

/* ===================================
   GALLERY
   =================================== */

.gallery-filters {
  padding: 2rem 5%;
  background: var(--white);
  position: sticky;
  top: 85px;
  z-index: 100;
  border-bottom: 2px solid var(--bg-light);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--brown-light);
  background: white;
  color: var(--primary-color);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.gallery-section {
  padding: 4rem 5%;
  background: linear-gradient(135deg, #f5ebe0 0%, var(--bg-light) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 350px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(107, 68, 35, 0.15);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.25);
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(107, 68, 35, 0.95), transparent);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.gallery-item.hidden {
  display: none;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-page {
  padding: 6rem 5%;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-light);
  line-height: 1.8;
}

.contact-form {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
}

.contact-form h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--brown-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.why-contact {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #f5ebe0 0%, var(--bg-light) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.why-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(107, 68, 35, 0.2);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.why-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.why-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.faq-section {
  padding: 6rem 5%;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--secondary-color);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===================================
   IMPACT STATS
   =================================== */

.impact-stats-home {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--primary-color), var(--brown-dark));
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 5rem 5%;
  margin: 4rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: var(--brown-dark);
  color: var(--white);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 2;
  display: block;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    left: -100%;
    top: 85px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(107, 68, 35, 0.15);
    padding: 2rem 0;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .chairman-container {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro-image {
    order: -1;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 280px;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .chairman-content {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }
}