/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  line-height: 1.7;
  background: #fafbfc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   VARIABLES
========================= */
:root {
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --green-light: #f0f7f0;
  --dark: #0a0a0a;
  --body: #3f3f3f;
  --gray: #6b7280;
  --light: #fafafa;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* =========================
   NAVIGATION
========================= */
.top-nav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.logo img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:not(.nav-btn):hover {
  color: var(--dark);
  background: var(--light);
}

.nav-links a.nav-btn {
  color: #ffffff;
  background: var(--green);
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
}

.nav-links a.nav-btn:hover {
  background: var(--green-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
}

/* =========================
   BUTTONS
========================= */
.btn {
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

.nav-btn {
  background: var(--green);
  color: #ffffff;
}

.btn.primary:hover,
.nav-btn:hover {
  background: linear-gradient(135deg, #388e3c, var(--green-dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.4);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* =========================
   HERO
========================= */
.hero {
  background-color: #1b5e20;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(27, 94, 32, 0.6) 100%),
    url("./images/1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 8rem 1.5rem 9rem;
  position: relative;
  min-height: 500px;
}

.hero-content {
  max-width: 760px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
  color: #ffffff !important;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.8rem;
}

.section-divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 2px;
  margin: 1rem auto 2rem;
}

.section-text {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* =========================
   ABOUT SECTION
========================= */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.about-text p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.85;
  font-weight: 400;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(46, 125, 50, 0.12);
  transition: all 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.01);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.15);
}

/* =========================
   GRID & CARDS
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(46, 125, 50, 0.15);
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.1rem;
}

/* =========================
   WHY CHOOSE CARDS
========================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1.5px solid #f0f0f0;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(46, 125, 50, 0.04));
  border: 2px solid rgba(46, 125, 50, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.why-card i {
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
}

.why-card p {
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.5;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(46, 125, 50, 0.2);
  border-color: rgba(46, 125, 50, 0.3);
}

.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(46, 125, 50, 0.1));
  border-color: var(--green);
  transform: scale(1.12) rotate(2deg);
}

/* =========================
   GALLERY
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(46, 125, 50, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  aspect-ratio: 1 / 1;
}

.gallery-item {
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 500;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(1100px, 95vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.lightbox.open .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* =========================
   FEATURES LIST
========================= */
.features {
  max-width: 600px;
  margin: auto;
  list-style: none;
}

.features li {
  text-align: center;
  padding: 0.5rem 0;
}

/* =========================
   CONTACT
========================= */
.contact {
  text-align: center;
  color: var(--gray);
}

.contact p {
  margin-bottom: 0.5rem;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: var(--dark);
  color: #a0a0a0;
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer strong {
  color: #e8e8e8;
  font-weight: 600;
}

.footer p {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 2px;
  margin: 1.5rem auto;
}

/* =========================
   RENTALS PAGE
========================= */
.page-header {
  text-align: center;
  padding: 5.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(27, 94, 32, 0.52) 100%),
    url("images/gallery23.jpg") center / cover no-repeat;
  color: #ffffff;
}

.page-header .hero-badge {
  margin-bottom: 1.1rem;
}

.page-header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: #ffffff;
  letter-spacing: -0.025em;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem 1.5rem;
  flex-wrap: wrap;
}

.filter-bar button {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--border);
  background: #ffffff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.2s;
  font-family: inherit;
}

.filter-bar button:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

.rentals-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.rental-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rental-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.rental-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.rental-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rental-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.rental-card-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  flex: 1;
}

.rental-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.btn.full {
  width: 100%;
  text-align: center;
}

/* =========================
   BACKGROUND WRAPPERS
========================= */
.bg-light {
  background: var(--light);
}

/* =========================
   CONTACT FORM
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  max-width: 920px;
  margin: 2.5rem auto 0;
  text-align: left;
  align-items: start;
}

.contact-info-block {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.06), rgba(46, 125, 50, 0.02));
  border-radius: 16px;
  padding: 2.8rem 2.2rem;
  border: 1.5px solid rgba(46, 125, 50, 0.18);
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.08);
}

.contact-info-block h3 {
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

.contact-info-item strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.contact-info-item span {
  color: var(--body);
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--green);
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--green-dark);
  text-decoration-thickness: 2px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(46, 125, 50, 0.04));
  border: 1.5px solid rgba(46, 125, 50, 0.3);
  border-radius: 12px;
  color: var(--green) !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 1.3rem;
  color: var(--green);
}

.social-link:hover {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(46, 125, 50, 0.08));
  border-color: var(--green);
  color: var(--green-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: var(--dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(63, 63, 63, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =========================
   HAMBURGER MENU
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  transition: all 0.2s ease;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0d1117;
  color: #6b7280;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  font-size: 0.9rem;
}

.footer strong {
  color: #ffffff;
}

.footer p {
  margin-bottom: 0.4rem;
}

.footer-divider {
  width: 36px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  margin: 1.1rem auto;
}

.footer-top-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: #7a7a7a;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.footer-top-link:hover {
  color: #ffffff;
  border-color: var(--green);
  background: var(--green);
}

/* =========================
   PAGE HEADER (Rentals/Services)
========================= */
.page-header {
  text-align: center;
  padding: 5rem 1.5rem 6rem;
  background-color: #1b5e20;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(27, 94, 32, 0.6) 100%),
    url("./images/1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  position: relative;
}

.page-header .hero-badge {
  margin-bottom: 1.2rem;
}

.page-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    order: -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 5rem 1.25rem 5.5rem;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gallery-item {
    border-radius: 12px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 99;
  }

  .nav-links a {
    width: 100%;
    padding: 0.6rem 0.8rem;
  }

  .logo img {
    height: 58px;
  }

  .nav-links.open {
    display: flex;
  }

  .page-header {
    padding: 4rem 1.25rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .why-card {
    padding: 2rem 1rem;
  }

  .why-icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 1.2rem;
  }

  .why-card i {
    font-size: 1.75rem;
  }

  .why-card p {
    font-size: 1rem;
    line-height: 1.45;
  }
}

/* =========================
   SCROLL ANIMATIONS
========================= */
.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
