* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f2f2f2;
}

.navbar {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem; 
    background-color: transparent;
    z-index: 100;
}

/* Logo */
.navbar .logo img {
    height: 120px; 
    width: auto;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 4rem; 
    list-style: none;
    font-size: 1.2rem; 
    margin-left: auto;
    margin-right: 1rem; 
}

.nav-links li a {
    color: #fff; 
    text-decoration: none;
    font-weight: 600; 
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #a3d977; 
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
background-color: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #000; 
    transition: 0.3s;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links {
  position: absolute;
  top: 130px;
  left: 50%;                 /* center horizontally */
  transform: translateX(-50%); /* adjust for exact centering */
  width: auto;               /* shrink to fit content */
  min-width: 200px;          /* optional: minimum width for better look */
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  z-index: 999;
  border-radius: 8px;        /* optional rounded corners */
  padding: 0 10px;           /* small horizontal padding */
}

.nav-links.active {
  max-height: 400px;
}
.nav-links li {
  width: auto;
  text-align: center;
  margin: 0;       /* no extra margin between items */
  padding: 0;
}

.nav-links a {
  display: block;
  width: auto;
  color: white;
  text-decoration: none;
  padding: 6px 30px;   /* reduced vertical padding from 10px to 6px */
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  border-radius: 5px;
}
.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

    .lang-switch {
        margin-top: 10px;
        justify-content: center;
    }
}


.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-switch button {
  background: #fff;          
  color: #000;              
  border: 1px solid #49f914; 
  padding: 5px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.lang-switch button:hover {
  background: #7fea5e;
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .lang-switch {
    margin-top: 10px;
    justify-content: center;
  }
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;                 
    display: flex;
    justify-content: flex-end;       
    align-items: center;
    padding-right: 10%;            
    text-align: right;              
    font-family: 'Fredoka One', cursive;
    overflow: hidden;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;              
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.3); 
    z-index: 1;
}
.hero-overlay {
    display: none; 
}
.hero-overlay {
    background: transparent;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400; 
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-end;    
}
.btn-hero {
    font-family: 'Fredoka One', cursive;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-buy { background-color: #567d46; color: #fff; }
.btn-buy:hover { background-color: #78a157; }
.btn-call { background-color: #f5f0e6; color: #7a5737; }
.btn-call:hover { background-color: #e6dccf; }
.hero-picture,
.hero-img {
    position: absolute;      
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;       
    object-position: center;
    z-index: -1;             /* behind hero content */
}
.hero-title { font-size: clamp(2rem, 5vw, 4rem); }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.5rem); }

@media (max-width: 1024px) {
    .hero { padding-left: 5%; }
    .hero-title { font-size: clamp(2.5rem, 6vw, 4rem); }
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;      
        text-align: center;
        padding-left: 5%;
        padding-right: 5%;
    }
    .hero-content { max-width: 90%; }
    .hero-title { font-size: clamp(2rem, 5vw, 3rem); }
    .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
}

.about-us {
  background-color: #f9f6f1;
  padding: 3rem 1rem;
  color: #7a5737;
  text-align: center;
  font-family: Arial, sans-serif;
}


.section-title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #d6a155;
  margin-bottom: 1rem;
}

.section-header {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  color: #7a5737;
}

.section-subheader {
  font-weight: 400;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin-bottom: 3rem;
  color: #a1846f;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.about-card {
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 180px;
  text-align: center;
  padding: 0 1rem;
  box-sizing: border-box;
}

.about-icon {
  width: 70px;
  height: auto;
  margin-bottom: 1rem;
  filter: grayscale(20%) sepia(30%) saturate(150%) hue-rotate(20deg);
}

.about-card h4 {
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 0.6rem;
  color: #7a5737;
}

.about-card p {
  font-weight: 400;
  font-size: clamp(0.85rem, 2vw, 1rem);
  line-height: 1.4;
  color: #a1846f;
  word-wrap: break-word;
}
.about-call {
  margin-top: 3rem;
  text-align: center;
}

.about-call .eco-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #7a5737; /* coffee color */
  margin-bottom: 1rem;
}

.call-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #1f8d33df; /* green */
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #97f1a8;
}

.call-icon {
  width: 25px;
  height: auto;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .about-cards {
    gap: 1rem;
  }
  .about-card {
    max-width: 100%;
    padding: 0 0.5rem;
  }
}
/* -----------------------------
   ECO PRODUCTS SECTION
   ----------------------------- */
.eco-products-section {
  width: 100%;
  background-color: #f6efe6;
  padding: 6rem 2rem;
  font-family: 'Fredoka One', cursive;
  color: #8b6f4d;
  position: relative; 
  overflow: hidden;
}

.eco-products-section .section-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: auto;
  border-radius: 16px;
  z-index: 1;
}

@media (max-width: 768px) {
  .eco-products-section .section-image {
    width: 80px;
  }
}

/* Section Title */
.eco-products-section .section-title {
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
  z-index: 2;
  position: relative;
}

/* Section Subtitle */
.eco-products-section .section-subtitle {
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem auto;
  line-height: 1.5;
  z-index: 2;
  position: relative;
}

.eco-products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 0rem;
  justify-items: center;
  width: 100%;
  margin-top: 3rem;
  position: relative; 
}

/* Product Boxes */
.eco-products-section .product-box {
  background: #fff;
  border-radius: 32px;
  padding: 3.5rem 3rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 450px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: #705b3a;
  font-size: 1rem;
  text-align: center;
}
/* Description paragraph */
.eco-products-section .product-box p {
  margin: 0.3rem 0 0.8rem 0;
  font-size: 1.1rem; /* slightly bigger for clarity */
  line-height: 1.4;
  color: #ba7f09; /* warm, slightly darker brown */
  font-weight: 500;
  font-family: 'Fredoka One', cursive;
  text-align: center;
  transition: color 0.3s ease;
}
.eco-products-section .product-box:hover p {
  color: #c48d3b;
}

/* Small text (like "GO ORGANIC") */
.eco-products-section .product-box .small-text {
  font-size: 1rem; 
  color: #8f5b01; 
  margin-top: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  font-family: 'Fredoka One', cursive;
  transition: color 0.3s ease;
}

.eco-products-section .product-box:hover .small-text {
  color: #d6a155;
}

.eco-products-section .product-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.eco-products-section .product-box img {
  max-width: 400px;
  max-height: 260px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: 18px;
}
.eco-products-section .product-box p {
  margin: 0.3rem 0 0.8rem 0;
  font-size: 1rem;
  line-height: 1.3;
}

.eco-products-section .product-box .small-text {
  font-size: 0.85rem;
  color: #d6a155;
  margin-top: 0.5rem;
}

@media (max-width: 1200px) {
  .eco-products-section .product-box {
    max-width: 350px;
  }
  .eco-products-section .product-box img {
    max-width: 220px;
  }
}

@media (max-width: 992px) {
  .eco-products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .eco-products-section .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem 1rem;
  }

  .eco-products-section .product-box {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .eco-products-section .product-box img {
    max-width: 100%;
    height: auto;
  }
}



.company-journey {
    margin-top: 80px; 
    background-color: #a3d977f6; 
    color: #fff;
    padding: 4rem 2rem;
    font-family: Arial, sans-serif;
}
 

.journey-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 2rem;
}

.journey-photos {
  flex: 1 1 400px;
  max-width: 500px;
  position: relative;
  text-align: center;
}

.journey-photos img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.journey-photos img:hover {
  transform: scale(1.05);
}

.photo-nav {
  margin-top: 1rem;
}

.photo-nav button {
  background-color: #fff;
  color: #40C057;
  border: none;
  margin: 0 0.3rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.photo-nav button:hover {
  background-color: #78a157;
  color: #fff;
}

.journey-text {
  flex: 2 1 500px;
  max-width: 700px;
}

.journey-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.journey-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

section.touch-nature-section {

    margin-top: 80px; 
}
/* Responsive */
@media (max-width: 768px) {
  .journey-container {
    flex-direction: column;
    align-items: center;
  }
  .journey-text, .journey-photos {
    max-width: 100%;
  }
}

.touch-nature-section {
  font-family: 'Arial', sans-serif;
  color: #fff;
}
.eco-products-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.touch-nature-section .container {
  display: flex;
  position: relative;
  background-color: #a3d977;
  padding: 0.4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
  align-items: center;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.container {
  display: flex;
  position: relative;
  background-color: #a3d977;       
  padding: 0.4rem 2rem;  
  max-width: 1200px;                
  margin: 0 auto;
  gap: 1.5rem;
  align-items: center;
  border-radius: 12px 12px 0 0;
  overflow: hidden;                
}


.container::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("images/background.png") center/cover no-repeat; 
  opacity: 0.3;       
  z-index: 0;        
  border-radius: 12px 12px 0 0; 
}


.container > * {
  position: relative;
  z-index: 1; 
}


.left-content {
  flex: 1;
  position: relative;
  text-align: center;
}

.small-text {
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  font-weight: 600;
  opacity: 0.8;
}
.product-small {
  font-size: 12px;
  opacity: 0.7;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: 'Fredoka One', cursive;
}

.highlight-circle {
  position: absolute;
  top: 40%;
  right: 15%;
  background: #678d3c; 
  border-radius: 50%;
  width: 120px;
  height: 120px;
  color: #d4e4bb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.lettuce-img {
  width:300px;
  margin-top: 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.right-content {
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.woman-img {
  width: 100%;
  height: 500px;
  object-fit: cover;

  margin-top: 2rem;   /* moves image down */

  border-radius: 0;
  box-shadow: none;
}


.info-bar {
  background-color: #d69f5f; /* warm light brown */
  color: #fff;
  padding: 1rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  gap: 2rem;
}

.info-left strong {
  font-weight: 700;
}

.info-left em {
  font-style: italic;
  font-size: 0.8rem;
  opacity: 0.85;
}

.info-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.info-right ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.info-right ul li {
  position: relative;
  padding-left: 1.2rem;
}


.details-btn {
  background-color: #f5f0e6;
  border: none;
  padding: 0.6rem 1.8rem;
  color: #7a5737;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.details-btn:hover {
  background-color: #e6dccf;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
  .left-content, .right-content {
    width: 100%;
  }
  .highlight-circle {
    position: static;
    margin: 1rem auto;
  }
  .info-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  .info-right ul {
    justify-content: center;
  }
}
.image-slider {
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  gap: 15px;
  transition: transform 0.6s linear;
}

.slides img {
  width: 200px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* MODAL */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-modal img {
  max-width: 90%;   
  max-height: 90%;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}
.slider {
  position: relative;
  overflow: hidden;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 60px;
  height: 60px;

  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  border-radius: 50%;

  font-size: 36px;
  font-weight: bold;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

/* Left / Right positions */
.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}
@media (hover: hover) {
  .slider-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-50%) scale(1.1);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .slides img {
    width: 140px; 
  }

  .image-modal img {
    max-width: 95%;  /* keep modal photo large on mobile */
    max-height: 95%;
  }
  .slider-btn {
    width: 48px;
    height: 48px;
    font-size: 28px;
    background: rgba(0, 0, 0, 0.6);
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }
}

/* UPPER FOOTER */
.upper-footer {
  background: #f6efe6;
  padding: 50px 20px;
}

.upper-footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.feature i {
  font-size: 36px;
  color: #7aa23f;
  margin-bottom: 15px;
}

.feature h4 {
  color: #6b4f2c;
  margin-bottom: 8px;
}

.feature p {
  color: #777;
  font-size: 14px;
}
.contact-section {
  background: #bbe987c2;
  padding: 100px 20px;
  margin-top: 120px; /* ⬅ pushes section DOWN */
}
@media (max-width: 768px) {
  .contact-section {
    margin-top: 80px;
    padding-top: 100px;
  }
}
.contact-section {
  padding: 40px 20px;
  text-align: center;
  background: #a3d977; ;
}

/* CONTACT TABLE */
.contact-table {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto 1fr;
  gap: 24px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* TITLE SPANS BOTH COLUMNS */
.contact-title {
  grid-column: 1 / -1;
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 20px;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
}

.contact-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ca9767;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* LEFT PANEL */
.contact-left {
  background: #ca9767;
  color: #fff;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  border-radius: 18px 0 0 18px;
}

.contact-logo {
  max-width: 150px;
  margin: 0 auto 20px;
}

/* MARKET HOURS */
.market-hours {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}

.market-hours strong {
  font-size: 16px;
  margin-bottom: 12px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 6px;
}

.market-hours p {
  margin: 0;
  padding: 6px 0;
  font-size: 14.5px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.market-hours p:last-child {
  border-bottom: none;
}

.market-hours span {
  font-weight: 600;
}

/* CONTACT LINKS */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.contact-links a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.contact-links a:hover {
  background: #fff;
  color: #6b4a2d;
}

/* RIGHT PANEL */
.contact-map {
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 18px 18px 0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* BOOTHS */
.booths {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.booth-box {
  background: #fff;
  color: #678d3c;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 18px;
  min-width: 90px;
  text-align: center;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .contact-table {
    grid-template-columns: 1fr;
  }

  .contact-left {
    border-radius: 18px 18px 0 0;
  }

  .contact-map {
    border-radius: 0 0 18px 18px;
  }

  .contact-map iframe {
    min-height: 260px;
  }

  .booth-box {
    font-size: 16px;
    padding: 12px 24px;
  }
}
/* MAIN FOOTER */
.footer {
  background-color: #f5f5f5;
  color: #777;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 40px;
}

/* LOGO */
.footer-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 20px;
}

/* FOOTER COLUMNS */
.footer-columns {
  display: flex;
  justify-content: center; /* center columns */
  gap: 60px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-col {
  min-width: 180px;
  text-align: center;
}

.footer-col h4 {
  color: #6b4f2c;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #7aa23f;
}

/* CONTACT INFO */
.footer-contact a {
  color: #777;
  text-decoration: none;
}

.footer-contact p {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  justify-content: center; 
  gap: 12px; 
  margin-top: 12px; 
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center; 
  width: 50px; 
  height: 50px;  
  background: #e3b04b;
  border-radius: 8px;
  transition: 0.3s ease;
}

.social-icons a img {
  width: 24px;  
  height: 24px; 
}

.social-icons a:hover {
  background: #7aa23f;
  transform: translateY(-2px);
}

/* BOTTOM FOOTER */
.footer-bottom {
  width: 100%;
  background: #f6efe6;
  text-align: center;
  padding: 16px 10px;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #eee;
}

.footer-bottom span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
}

.footer-bottom a {
  color: #7aa23f;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #e3b04b;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }
}
