:root {
  --primary-green: #2d7a3e;
  --dark-green: #1e5a2e;
  --bright-green: #4caf50;
  --accent-green: #66bb6a;
  --accent-gold: #ffa726;
  --accent-teal: #26a69a;
  --cream: #fafaf8;
  --light-bg: #ffffff;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-light: #9e9e9e;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-muted);
  background: var(--cream);
  line-height: 1.7;
  min-height: 100vh;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition);
}

.container {
  width: min(100% - 3rem, var(--max-width));
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 2rem, var(--max-width));
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.is-sticky {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.2rem 0;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-self: start;
  transition: transform var(--transition);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--bright-green), var(--primary-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.logo-text strong {
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-self: center;
}

.header-contact {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--bright-green), var(--primary-green));
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.25);
}

.header-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.header-contact .phone-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
}

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.6rem 0;
  transition: color var(--transition);
  font-size: 15px;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--bright-green), var(--accent-teal));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 4px;
  border-radius: 4px;
}

.hero {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: var(--white);
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  color: var(--white);
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center/60px;
  opacity: 0.1;
  z-index: 1;
}

/* Banner Background Images */
.page-banner-about {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.85), rgba(38, 166, 154, 0.85)), 
              url('https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1600&h=400&fit=crop') center/cover;
}

.page-banner-services {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.85), rgba(30, 90, 46, 0.85)), 
              url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1600&h=400&fit=crop') center/cover;
}

.page-banner-gallery {
  background: linear-gradient(135deg, rgba(38, 166, 154, 0.85), rgba(76, 175, 80, 0.85)), 
              url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&h=400&fit=crop') center/cover;
}

.page-banner-contact {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.85), rgba(255, 167, 38, 0.75)), 
              url('https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?w=1600&h=400&fit=crop') center/cover;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-hero {
  padding: 5rem 0;
  min-height: 400px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?auto=format&fit=crop&w=1600&q=80") center/cover;
  opacity: 0.15;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 61, 10, 0.92) 0%, rgba(26, 61, 10, 0.75) 40%, rgba(26, 61, 10, 0.5) 70%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-center {
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
}

.hero-center p {
  max-width: 680px;
}

.hero-animate {
  animation: heroReveal 1000ms ease both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 32px;
  height: 54px;
  border-radius: 50px;
  border: 2px solid transparent;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--bright-green), var(--primary-green));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-outline {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
}

/* ===== HOMEPAGE SLIDER ===== */
.slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 600px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  height: 100%;
  padding: 0 3rem;
}

.slide-text {
  max-width: 600px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 192, 82, 0.1);
  border: 1px solid var(--primary-green);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}

.slide-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
}

.slide-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.slide-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.slide.active .slide-image img {
  animation: zoomIn 0.8s ease both;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.image-placeholder {
  font-size: 15rem;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 2px solid var(--border-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--primary-green);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.slider-btn:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  border: 2px solid var(--primary-green);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dots .dot.active {
  background: var(--primary-green);
  width: 40px;
  border-radius: 6px;
}

.slider-dots .dot:hover {
  background: var(--primary-green);
}

.section {
  padding: 80px 0;
  background: var(--white);
}

.section:nth-child(even) {
  background: var(--cream);
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 14px;
  }

  .card-icon {
    font-size: 2.2rem;
  }

  .stat h3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }
}

.section-stats {
  background: var(--cream);
  position: relative;
}

.section-products {
  background: var(--white);
  position: relative;
}

.section-gallery {
  background: var(--cream);
  position: relative;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.section-title::before {
  content: '';
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-green), var(--accent-teal));
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-dark);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title p {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

@media (max-width: 640px) {
  .card-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--bright-green), var(--accent-teal));
  transition: height var(--transition);
  z-index: 1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(76, 175, 80, 0.1);
}

.card:hover::before {
  height: 100%;
}

.card > * {
  position: relative;
  z-index: 2;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(38, 166, 154, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.card .icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(38, 166, 154, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}

.card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

.stats {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--accent-green);
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
}

@media (max-width: 400px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--accent-orange);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat span {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(45, 122, 62, 0.95) 0%, rgba(45, 122, 62, 0.7) 50%, rgba(45, 122, 62, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

.gallery-masonry {
  columns: 3 240px;
  column-gap: 1.2rem;
}

@media (max-width: 900px) {
  .gallery-masonry {
    columns: 2 220px;
  }
}

@media (max-width: 640px) {
  .gallery-masonry {
    columns: 1 100%;
  }
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: none;
  margin: 0 0 1.2rem;
  break-inside: avoid;
  transition: transform 400ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1);
  transition: transform 400ms ease;
}

@media (max-width: 640px) {
  .gallery-card {
    margin-bottom: 1rem;
  }

  .gallery-masonry {
    column-gap: 1rem;
  }
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 20, 0), rgba(10, 26, 20, 0.7));
  opacity: 0;
  transition: opacity 400ms ease;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem;
  color: var(--white);
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover::after,
.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item {
  background: linear-gradient(150deg, rgba(143, 209, 167, 0.2), rgba(31, 94, 70, 0.25));
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--green-800);
  box-shadow: var(--shadow);
}

.gallery-item span {
  font-weight: 600;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-image {
    order: -1;
    max-width: 350px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-list {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-list li {
    justify-content: center;
    text-align: left;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}

.about-image {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(45, 80, 22, 0.15);
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  max-width: 600px;
}

.about-content h2 {
  color: var(--primary-green);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-content h3 {
  color: var(--primary-green);
  margin-bottom: 0.8rem;
}

.about-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--text-dark);
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: 1.05rem;
}

.about-list li::before {
  content: "✓";
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-green);
  border-radius: 50%;
}

.form {
  display: grid;
  gap: 1.2rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafff7 100%);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
  border: 1px solid rgba(107, 156, 74, 0.15);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .form {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .form input,
  .form textarea {
    font-size: 16px;
    padding: 1rem;
  }

  .form textarea {
    min-height: 120px;
  }

  .form button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.form input,
.form textarea {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 94, 70, 0.2);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(62, 155, 113, 0.2);
}

.form-error {
  color: #b42318;
  background: #fee4e2;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  color: #067647;
  background: #d1fadf;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-success.visible {
  display: block;
}
.form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ===== STYLISH CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--bright-green), var(--accent-teal));
  transition: height var(--transition);
}

.info-card:hover::before {
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(76, 175, 80, 0.1);
}

.info-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(38, 166, 154, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.info-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
}

.info-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.info-card a {
  color: var(--primary-green);
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--dark-green);
  text-decoration: underline;
}

.info-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(38, 166, 154, 0.1));
  color: var(--primary-green);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}

.stylish-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Raleway', sans-serif;
}

.required {
  color: #e74c3c;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stylish-form input,
.stylish-form textarea,
.stylish-form select {
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
}

.stylish-form input:focus,
.stylish-form textarea:focus,
.stylish-form select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(139, 192, 82, 0.1);
}

.stylish-form textarea {
  min-height: 150px;
  resize: vertical;
}

.stylish-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23636363' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  height: 54px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
  width: 300px;
  height: 300px;
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(5px);
}

.footer {
  position: relative;
  background: var(--dark-green);
  color: rgba(255, 255, 255, 0.85);
  padding: 6rem 0 2rem;
  margin-top: 4rem;
}

.footer::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100" fill="%231a3d0a"><path d="M0,50 Q40,30 80,50 T160,50 T240,50 T320,50 T400,50 T480,50 T560,50 T640,50 T720,50 T800,50 T880,50 T960,50 T1040,50 T1120,50 T1200,50 T1280,50 T1360,50 T1440,50 L1440,100 L0,100 Z"/><path d="M0,60 L20,45 L40,60 L60,40 L80,55 L100,45 L120,60 L140,35 L160,55 L180,40 L200,60 L220,45 L240,55 L260,40 L280,60 L300,35 L320,55 L340,45 L360,60 L380,40 L400,55 L420,45 L440,60 L460,35 L480,55 L500,40 L520,60 L540,45 L560,55 L580,40 L600,60 L620,35 L640,55 L660,45 L680,60 L700,40 L720,55 L740,45 L760,60 L780,35 L800,55 L820,40 L840,60 L860,45 L880,55 L900,40 L920,60 L940,35 L960,55 L980,45 L1000,60 L1020,40 L1040,55 L1060,45 L1080,60 L1100,35 L1120,55 L1140,40 L1160,60 L1180,45 L1200,55 L1220,40 L1240,60 L1260,35 L1280,55 L1300,45 L1320,60 L1340,40 L1360,55 L1380,45 L1400,60 L1420,35 L1440,55 L1440,100 L0,100 Z" opacity="0.5"/></svg>') no-repeat center bottom;
  background-size: cover;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer {
    padding: 5.5rem 0 2rem;
  }

  .footer::before {
    top: -60px;
    height: 80px;
  }

  .footer h4 {
    font-size: 1.1rem;
  }

  .footer a {
    font-size: 0.95rem;
  }
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer .accent {
  color: var(--accent-orange);
  font-weight: 600;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer a:hover {
  color: var(--accent-orange);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all var(--transition);
  font-weight: 600;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: var(--accent-orange);
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  font-size: 0.95rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.slide-in-left.in-view,
.slide-in-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .navbar {
    grid-template-columns: auto 1fr auto;
  }
  
  /* Slider Responsive */
  .slider-container {
    height: 500px;
  }
  
  .slide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }
  
  .slide-image {
    display: none;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    gap: 0;
    justify-self: stretch;
    grid-column: 1 / -1;
    z-index: 100;
    border-top: 1px solid var(--border-color);
  }

  .nav-links a {
    padding: 1.2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  
  /* Contact Form Responsive */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

@media (max-width: 640px) {
  /* Slider Mobile */
  .slider-container {
    height: 450px;
  }
  
  .slide-content {
    padding: 0 1.5rem;
  }
  
  .slide-text h1 {
    font-size: 2rem;
  }
  
  .slide-text p {
    font-size: 14px;
  }
  
  .slide-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .slide-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .slider-dots {
    bottom: 20px;
  }
  
  /* Page Banner Mobile */
  .page-banner {
    padding: 60px 0;
  }
  
  .page-banner h1 {
    font-size: 2rem;
  }
  
  .page-banner p {
    font-size: 16px;
  }
  
  .hero {
    padding: 5rem 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-text {
    max-width: 100%;
  }
  
  /* Contact Form Mobile */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    margin-bottom: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .hero-center div {
    width: 100%;
  }

  .navbar {
    padding: 1rem 0;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-icon {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card h3 {
    font-size: 1.15rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .btn-submit {
    height: 50px;
    font-size: 14px;
  }
  
  .page-banner h1 {
    font-size: 1.8rem;
  }
  
  .page-banner p {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .page-banner {
    padding: 50px 0;
  }
  
  .page-banner h1 {
    font-size: 1.6rem;
  }
  
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    font-size: 1.5rem;
  }

  .stat h3 {
    font-size: 2rem;
  }

  .stat span {
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .card {
    padding: 1.25rem;
  }

  .btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
  }

  .footer {
    padding: 5rem 0 1.5rem;
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation utility classes */
.animate-fadeInUp {
  animation: fadeInUp 0.8s cubic-bezier(0.42, 0, 0.58, 1) both;
}

.animate-fadeInDown {
  animation: fadeInDown 0.8s cubic-bezier(0.42, 0, 0.58, 1) both;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s cubic-bezier(0.42, 0, 0.58, 1) both;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s cubic-bezier(0.42, 0, 0.58, 1) both;
}

.animate-fadeIn {
  animation: fadeIn 1s ease both;
}

.animate-scaleUp {
  animation: scaleUp 0.6s cubic-bezier(0.42, 0, 0.58, 1) both;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-800 { animation-delay: 0.8s; }
.delay-1000 { animation-delay: 1s; }

/* Hover transform effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-brightness:hover img {
  filter: brightness(1.1);
}
