/* ===== CSS VARIABLES ===== */
:root {
  --green-primary: #6D9E51;
  --green-light: #8FBD6E;
  --green-pale: #FEFFD3;
  --green-medium: #A8C98A;
  --green-dark: #4A7234;
  --white: #FFFFFF;
  --white-pure: #FFFFFF;
  --cream: #FEFFD3;
  --cream-dark: #F5F6B8;
  --gray-light: #F8F9F0;
  --gray-mid: #B0BEC5;
  --gray-dark: #455A64;
  --text-dark: #1E3010;
  --text-body: #3A5228;
  --shadow-sm: 0 2px 12px rgba(109, 158, 81, 0.08);
  --shadow-md: 0 8px 32px rgba(109, 158, 81, 0.14);
  --shadow-lg: 0 20px 60px rgba(109, 158, 81, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; max-width: 100vw; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; background-color: var(--white); color: var(--text-body); line-height: 1.7; overflow-x: hidden; max-width: 100vw; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; color: var(--text-dark); line-height: 1.2; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }
a { text-decoration: none; color: inherit; }
section { padding: 60px 0; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--green-medium); border-radius: 10px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.98);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
#navbar.scrolled .navbar-brand {
  color: var(--text-dark) !important;
}
#navbar.scrolled .navbar-nav .nav-link {
  color: var(--text-body) !important;
}
/* Navbar Solid for Index Page */
#navbar.navbar-solid {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(109,158,81,0.12);
}
#navbar.navbar-solid .navbar-brand {
  color: var(--text-dark) !important;
}
#navbar.navbar-solid .navbar-nav .nav-link {
  color: var(--text-body) !important;
}
#navbar.navbar-solid .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830,48,16,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-brand {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  font-weight: 700; color: var(--white-pure) !important;
  letter-spacing: 1px; transition: var(--transition);
}
.navbar-nav .nav-link {
  font-weight: 500; font-size: 0.9rem;
  color: rgba(255,255,255,0.9) !important;
  padding: 8px 14px !important; letter-spacing: 0.3px;
  transition: var(--transition); position: relative;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 14px;
  width: 0; height: 2px; background: var(--green-primary);
  transition: var(--transition); border-radius: 2px;
}
.navbar-nav .nav-link:hover { color: var(--green-dark) !important; }
.navbar-nav .nav-link:hover::after { width: calc(100% - 28px); }
.btn-wa-nav {
  background: var(--green-primary); color: var(--white-pure) !important;
  border-radius: 50px; padding: 10px 22px !important;
  font-weight: 600 !important; font-size: 0.85rem !important;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(109,158,81,0.3); border: none;
}
.btn-wa-nav:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(109,158,81,0.4); }
.btn-wa-nav::after { display: none !important; }
.navbar-toggler { border: none !important; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
#navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830,48,16,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden;
  background: var(--white-pure); padding: 0;
  background-size: cover; background-position: center;
}
#hero::before {
  display: none;
}
#hero::after {
  display: none;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); z-index: 1;
}
.hero-text-center {
  text-align: center; z-index: 2; position: relative;
}
.hero-text-center .hero-badge {
  background: rgba(254,255,211, 0.1); border: 1.5px solid rgba(254,255,211,0.3);
  color: var(--white-pure); display: inline-block;
}
.hero-text-center .hero-title {
  color: var(--white-pure); font-size: clamp(2.8rem, 5vw, 4.2rem);
}
.hero-text-center .hero-subtitle {
  color: rgba(255,255,255,0.85); max-width: none; margin-left: auto; margin-right: auto;
}
.hero-content { position: relative; z-index: 2; padding-top: 0px; width: 100%; }
.hero-text-col { display: flex; flex-direction: column; justify-content: center; padding-right: 20px; }
.hero-badge {
  display: inline-block; background: var(--cream);
  border: 1.5px solid rgba(109,158,81,0.35); color: var(--green-dark);
  padding: 6px 18px; border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; margin-top: 10px;
  animation: fadeInUp 0.8s ease both;
}
.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem); font-weight: 700;
  color: var(--text-dark); line-height: 1.1; margin-bottom: 22px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title span { color: var(--green-primary); font-style: italic; }
.hero-subtitle {
  font-size: 1rem; color: var(--gray-dark); max-width: 460px;
  margin-bottom: 38px; font-weight: 400; line-height: 1.75;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 1.1s ease 0.3s both; }
.btn-primary-custom {
  background: var(--green-primary); color: var(--white-pure); border: none;
  padding: 13px 30px; border-radius: 50px ; font-weight: 600; font-size: 0.95rem;
  margin: 10px;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(109,158,81,0.35);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-primary-custom:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(109,158,81,0.5); color: var(--white-pure); }
.btn-outline-custom {
  background: transparent; color: var(--green-dark);
  border: 2px solid var(--green-primary); padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-outline-custom:hover { background: var(--green-primary); color: white; transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Hero image side */
.hero-img-col {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; padding-top: 80px;
}
.hero-img-wrapper { position: relative; width: 100%; max-width: 500px; margin: 0 auto; }
.hero-img-main {
  width: 100%; height: 500px;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid rgba(254,255,211,0.7);
  animation: morphBlob 10s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  25%      { border-radius: 55% 45% 45% 55% / 55% 55% 45% 45%; }
  50%      { border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%; }
  75%      { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; }
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }

/* Floating info cards */
.hero-float-card {
  position: absolute; background: white; border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 8px 32px rgba(30,48,16,0.14);
  display: flex; align-items: center; gap: 12px;
  animation: floatUpDown 3.5s ease-in-out infinite alternate;
  border: 1px solid rgba(109,158,81,0.15);
  z-index: 3;
}
.hero-float-card:nth-child(2) { top: 15%; left: -40px; animation-delay: 0s; }
.hero-float-card:nth-child(3) { bottom: 20%; right: -30px; animation-delay: 1.2s; }
.hero-float-card .fc-icon {
  width: 40px; height: 40px; background: var(--cream);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.hero-float-card .fc-text p { margin: 0; font-size: 0.72rem; color: var(--gray-dark); line-height: 1.2; }
.hero-float-card .fc-text strong { font-size: 0.88rem; color: var(--text-dark); font-weight: 700; display: block; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 44px;
  padding-top: 28px; border-top: 1px solid rgba(109,158,81,0.15);
  animation: fadeInUp 1.2s ease 0.4s both;
}
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--green-primary); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: var(--gray-dark); font-weight: 500; margin-top: 3px; }
@keyframes floatUpDown { from { transform: translateY(0); } to { transform: translateY(-14px); } }

/* ===== SECTION TITLES ===== */
.section-label {
  display: inline-block; color: var(--green-primary); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px; font-family: 'DM Sans', sans-serif;
}
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.section-divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--green-primary), var(--green-light)); border-radius: 3px; margin: 0 auto 20px; }
.section-divider.left { margin: 0 0 20px; }

/* ===== ABOUT ===== */
#about { background: var(--white-pure); }
.about-img-wrapper { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); height: 600px; }
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-wrapper:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: 28px; right: -20px;
  background: var(--green-primary); color: white; padding: 20px 24px;
  border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-md);
}
.about-badge .number { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; line-height: 1; }
.about-badge .label { font-size: 0.75rem; font-weight: 600; opacity: 0.9; letter-spacing: 1px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px;
  background: var(--cream); border-radius: var(--radius-sm); margin-bottom: 14px; transition: var(--transition);
  border: 1px solid rgba(109,158,81,0.1);
}
.about-feature:hover { background: var(--green-medium); transform: translateX(6px); }
.about-feature .icon { width: 42px; height: 42px; background: var(--green-primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.about-feature .text h5 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; color: var(--text-dark); }
.about-feature .text p { font-size: 0.85rem; color: var(--text-dark); margin: 0; line-height: 1.5; }

/* ===== MENU ===== */
#menu { background: var(--cream); }
.menu-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  background: var(--white-pure); border: 2px solid rgba(109,158,81,0.4);
  color: var(--text-body); padding: 8px 22px; border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; transition: var(--transition); font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: var(--green-primary); border-color: var(--green-primary); color: white; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(109,158,81,0.3); }
.menu-card { background: var(--white-pure); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; border: 1px solid rgba(109,158,81,0.1); }
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(109,158,81,0.3); }
.menu-card-img { height: 300px; overflow: hidden; position: relative; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; 
  transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-badge { position: absolute; top: 14px; left: 14px; background: var(--green-primary); color: white; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; letter-spacing: 0.5px; }
.menu-card-body { padding: 20px; }
.menu-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.menu-card-desc { font-size: 0.82rem; color: var(--gray-dark); margin-bottom: 6px; line-height: 1.6; }
.menu-card-price { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--green-dark); }
.menu-item { display: none; }
.menu-item.show { display: block; }

/* ===== GALLERY ===== */
#gallery { background: var(--white-pure); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; height: 400px; }
.gallery-item:nth-child(2) { height: 400px; }
.gallery-item:nth-child(3) { height: 300px;gap: 0px; }
.gallery-item:nth-child(4) { height: 300px; }
.gallery-item:nth-child(5) { height: 300px; }
.gallery-item:nth-child(6) { grid-column: span 3; height: 400px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,48,16,0.7), transparent); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 20px; }
.gallery-overlay span { color: white; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== TESTIMONIAL ===== */
#testimonial { background: linear-gradient(135deg, var(--text-dark) 0%, #2a4a1b 100%); position: relative; overflow: hidden; }
#testimonial::before { content: '"'; position: absolute; top: -40px; left: 5%; font-family: 'Playfair Display', serif; font-size: 25rem; color: rgba(109,158,81,0.06); line-height: 1; pointer-events: none; }
#testimonial .section-title { color: var(--white-pure); }
#testimonial .section-label { color: var(--green-light); }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(109,158,81,0.2); border-radius: var(--radius); padding: 32px; height: 100%; transition: var(--transition); backdrop-filter: blur(8px); }
.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(109,158,81,0.5); transform: translateY(-6px); }
.testimonial-stars { color: #FFD700; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--green-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 1.1rem; flex-shrink: 0; font-family: 'Playfair Display', serif; }
.testimonial-name { font-weight: 700; color: var(--white-pure); font-size: 0.95rem; margin-bottom: 2px; }
.testimonial-role { font-size: 0.8rem; color: var(--green-light); }

/* ===== LOCATION ===== */
#location { background: var(--white-pure); }
.location-card { background: var(--cream); border-radius: var(--radius); padding: 36px; height: 100%; border: 1px solid rgba(109,158,81,0.2); }
.location-icon-box { width: 52px; height: 52px; background: var(--green-primary); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.location-card h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.location-card p, .location-card li { color: var(--text-body); font-size: 0.9rem; line-height: 1.8; }
.hours-list { list-style: none; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed rgba(109,158,81,0.25); }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 600; color: var(--text-dark); }
.hours-list .time { color: var(--green-dark); font-weight: 500; }

/* Google Maps CTA Box */
.gmaps-cta-box {
  background: var(--cream); border-radius: var(--radius);
  padding: 52px 40px; height: 100%; min-height: 350px;
  border: 2px dashed rgba(109,158,81,0.3);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 18px;
}
.gmaps-cta-icon {
  width: 80px; height: 80px; background: var(--green-primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: 0 8px 24px rgba(109,158,81,0.35);
  animation: floatUpDown 3s ease-in-out infinite alternate;
}
@keyframes floatUpDown { from { transform: translateY(0); } to { transform: translateY(-12px); } }
.gmaps-cta-box h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text-dark); margin: 0; }
.gmaps-cta-box p { font-size: 0.9rem; color: var(--gray-dark); margin: 0; max-width: 300px; line-height: 1.6; }
.btn-gmaps {
  background: var(--green-primary); color: white;
  padding: 14px 32px; border-radius: 50px; font-weight: 700;
  font-size: 0.95rem; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(109,158,81,0.35);
  display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer;
}
.btn-gmaps:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(109,158,81,0.5); color: white; }

/* ===== LOCATION & CONTACT CARDS ===== */
.location-card {
  background: white; border: 2px solid rgba(109,158,81,0.15);
  border-radius: 16px; padding: 24px 28px;
  display: flex; align-items: center; gap: 18px;
  transition: var(--transition); 
  text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(109,158,81,0.08);
}
.location-card:hover {
  border-color: var(--green-primary);
  box-shadow: 0 8px 28px rgba(109,158,81,0.18);
  transform: translateY(-4px);
}
.location-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem;
  flex-shrink: 0;
}
.location-info {
  flex: 1;
}
.location-label {
  font-weight: 700; color: var(--text-dark);
  font-size: 0.95rem; margin-bottom: 4px;
}
.location-value {
  font-size: 0.85rem; color: var(--gray-mid);
  line-height: 1.4;
}
.btn-cta-location {
  background: var(--green-primary); color: var(--white-pure);
  padding: 14px 32px; border-radius: 50px; font-weight: 700;
  font-size: 0.95rem; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(109,158,81,0.35);
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer; text-decoration: none;
}
.btn-cta-location:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(109,158,81,0.5);
  color: var(--white-pure);
}

/* ===== CONTACT ===== */

#contact { background: var(--cream); position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(109,158,81,0.08) 0%, transparent 70%); pointer-events: none; }
.contact-content { text-align: center; max-width: 600px; margin: 0 auto; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 36px; }
.btn-wa-large { background: #25D366; color: white; padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: var(--transition); box-shadow: 0 6px 25px rgba(37,211,102,0.35); display: inline-flex; align-items: center; gap: 12px; border: none; cursor: pointer; }
.btn-wa-large:hover { background: #1da851; transform: translateY(-4px); box-shadow: 0 12px 35px rgba(37,211,102,0.5); color: white; }
.btn-call { background: transparent; color: var(--green-dark); padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: var(--transition); border: 2px solid var(--green-primary); display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
.btn-call:hover { background: var(--green-primary); color: white; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-chips { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.chip { background: white; border: 1px solid rgba(109,158,81,0.3); padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; color: var(--text-body); display: flex; align-items: center; gap: 6px; font-weight: 500; }

/* ===== FOOTER ===== */
footer { background: var(--text-dark); color: rgba(255,255,255,0.75); padding: 60px 0 28px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--white-pure); margin-bottom: 12px; width: 220px;}
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 24px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 40px; height: 40px; background: rgba(109,158,81,0.15); border: 1px solid rgba(109,158,81,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green-light); font-size: 1rem; transition: var(--transition); }
.social-btn:hover { background: var(--green-primary); border-color: var(--green-primary); color: white; transform: translateY(-3px); }
.footer-heading { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green-light); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item .icon { color: var(--green-light); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom span { color: var(--green-light); }
footer .row > div:nth-child(2) { margin-left: auto; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-1.visible { transition-delay: 0.2s; }

/* BACK TO TOP */
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: var(--green-primary); color: white; border: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow-md); z-index: 999; }
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 260px; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-item { height: 200px !important; }
  .about-badge { right: 10px; }
  .hero-img-col { padding-top: 20px; }
  .hero-img-main { height: 380px; }
  .hero-float-card:nth-child(2) { left: -10px; }
  .hero-float-card:nth-child(3) { right: -10px; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero-title { font-size: 2.6rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-item { height: 160px !important; }
  .about-badge { right: 10px; bottom: 10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-img-col { padding-top: 10px; padding-bottom: 10px;
  display:block; }
  .hero-img-main { height: 320px; }
  .hero-float-card { display: none; }
  .hero-img-main {display:none;}
  .hero-content { padding-top: 80px;}
  .hero-stats { gap: 20px;}
  #hero::before { width: 280px; height: 280px; }
  .gmaps-cta-box { padding: 36px 24px; }
  .location-card { padding: 18px 20px; }
  .location-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}

@media (max-width: 576px) {
  html { max-width: 100%; overflow-x: hidden; }
  body { max-width: 100%; overflow-x: hidden; margin: 0; padding: 0; }
  .container { margin: 0 auto; padding: 0 15px; max-width: 100%; width: 100%; }
  .row { margin-left: -15px; margin-right: -15px; }
  .row > [class*="col-"] { padding-left: 15px; padding-right: 15px; }
  
  
  
  /* Section content */
  .section-title { font-size: 1.8rem; }
  .section-divider { margin: 0 auto 20px; }
  
  /* Menu filter buttons */
  .menu-filter { flex-wrap: wrap; gap: 8px; justify-content: flex-center; }
  .filter-btn { padding: 6px 16px; font-size: 0.8rem; }
  
  /* Hide floating cards completely */
  .hero-float-card { display: none !important; visibility: hidden !important; }
  .hero-float-card:nth-child(2) { left: auto; right: auto; }
  .hero-float-card:nth-child(3) { left: auto; right: auto; }
  
  /* Reduce decorative blobs size */
  #hero::before { width: 150px; height: 150px; right: -75px; top: -75px; }
  #hero::after { width: 120px; height: 120px; left: -60px; bottom: -60px; }
  #contact::before { width: 150px; height: 150px; right: -75px; top: -75px; }
  #testimonial::before { font-size: 12rem; }
  
  /* Fix hero content alignment */
  .hero-content { padding-left: 20px; padding-right: 20px; padding-top: 0px; max-width: 100%; }
  .hero-text-col { padding: 0; margin: 0; }
  .hero-img-col { padding: 0; }

  
  /* General spacing */
  section { padding: 48px 0; }
  [class*="col-"] { padding: 0 15px; }
  .location-card { padding: 14px 16px; gap: 12px; }
  .location-icon { width: 40px; height: 40px; font-size: 0.95rem; }
  .location-value { font-size: 0.8rem; }
  .hero-badge{margin-top: 30px;}
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { grid-column: span 1 !important; height: 220px !important; }
  .hero-actions { flex-direction: column; align-items: start; }
  .hero-badge{margin-top: 30px;}
  .about-img-wrapper { height: 400px; }
  .hero-content { padding-top: 0px; }
  .col-sm-6, .col-md-4, .col-lg-3, .menu-item{ padding:0 100px}
}
