html,
body {
  overflow-x: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f6f6f6;
  color: #2d1c0f;
  padding-top: 100px;
}

/* Team Contacts Section */
.team-contacts {
  padding: 80px 48px !important;
  background-color: #fafafa !important;
  text-align: center !important;
  border-top: 1px solid #e0e0e0 !important;
  position: relative !important;
  z-index: 10 !important;
}

.team-contacts-container {
  max-width: 1000px !important;
  margin: 0 auto !important;
}

.team-contacts-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #2c1608 !important;
  margin-bottom: 60px !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
}

.team-contacts-grid {
  display: flex !important;
  justify-content: center !important;
  gap: 80px !important;
  flex-wrap: wrap !important;
  margin-top: 40px !important;
}

.team-member {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  min-width: 280px !important;
  transition: transform 0.3s ease !important;
}

.team-member-name {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #2c1608 !important;
  margin: 0 0 2px !important;
}

.team-member-role {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #2d1c0f !important;
  margin-bottom: 12px !important;
  text-transform: none !important;
}

.team-member-phone,
.team-member-email {
  font-size: 18px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  line-height: 1.4 !important;
  display: block !important;
}

.team-member-phone {
  color: #2c1608 !important;
}

.team-member-email {
  color: #2f9e44 !important;
  font-weight: 700 !important;
}

.team-member-email:hover {
  text-decoration: underline !important;
  color: #248438 !important;
}

.team-member-phone:hover {
  color: #2f9e44 !important;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1000;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 2px solid #6b3f19;
  border-radius: 8px;
  cursor: pointer;
  padding: 12px;
  z-index: 101;
  position: relative;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.hamburger:hover {
  border-color: #2f9e44;
  background-color: rgba(47, 158, 68, 0.05);
}

.hamburger span {
  width: 24px;
  height: 3px;
  background-color: #6b3f19;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  position: absolute;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 22px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.active {
  border-color: #2f9e44;
  background-color: rgba(47, 158, 68, 0.1);
}

.hamburger.active span {
  background-color: #2f9e44;
  width: 24px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 22px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 22px;
}

.nav-logo img {
  height: 60px;
  object-fit: contain;
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  gap: 12px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: flex-end;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav-menu>ul>li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #6b3f19;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #2f9e44;
}

.has-submenu:hover>.submenu,
.has-submenu:focus-within>.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: 240px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: opacity 0.2s ease, visibility 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 200;
  pointer-events: auto;
}

.nav-menu>ul>li:last-child .submenu,
.nav-menu>ul>li:nth-last-child(2) .submenu {
  left: auto;
  right: 0;
}

.submenu li {
  padding: 0;
}

.submenu a {
  display: block;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #4b2a10;
}

.submenu a:hover {
  background-color: rgba(47, 158, 68, 0.08);
  color: #2f9e44;
}

.lang-switch {
  display: flex;
  gap: 8px;
  align-self: flex-end;
}

.lang-btn {
  border: 1px solid #6b3f19;
  background-color: transparent;
  color: #6b3f19;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn:hover {
  border-color: #2f9e44;
  color: #2f9e44;
}

.lang-btn.active {
  background-color: #2f9e44;
  color: #ffffff;
  border-color: #2f9e44;
}

.lang-btn img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

.nav-cta>a {
  padding: 10px 20px;
  background-color: #2f9e44;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta>a:hover {
  background-color: #248438;
  color: #ffffff;
}

main {
  padding: 0;
}

/* Hero Video Section */
.hero-video-section {
  position: relative;
  width: 100%;
  height: 115vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.hero-video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  padding: 0 24px;
}

.hero-video-content h1 {
  font-size: 72px;
  font-weight: 800;
  margin: 0 0 32px;
  letter-spacing: 0.02em;
}

.btn-video-hero {
  display: inline-block;
  padding: 16px 40px;
  background-color: #2f9e44;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-video-hero:hover {
  background-color: #248438;
  transform: translateY(-2px);
}

.hero {
  display: flex;
  gap: 40px;
  padding: 48px;
  margin: 48px 48px 32px;
  background: linear-gradient(135deg, #fff8eb, #f3fff5);
  border-radius: 32px;
  align-items: center;
}

.hero-content h1 {
  font-size: 44px;
  margin: 12px 0 16px;
  color: #2f9e44;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-content p {
  max-width: 560px;
  line-height: 1.6;
  font-size: 18px;
  color: #3f2b1b;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
  color: #8c5b2c;
}

.hero-cta {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 32px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background-color: #2f9e44;
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-link {
  color: #2f9e44;
  padding: 0;
}

.hero-badge {
  min-width: 160px;
  text-align: center;
  border: 2px solid #8c5b2c;
  border-radius: 24px;
  padding: 24px 16px;
}

.hero-badge span {
  font-size: 42px;
  font-weight: 800;
  color: #8c5b2c;
  display: block;
}

.hero-badge p {
  margin: 0;
  font-weight: 600;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}

.quick-links a {
  background-color: #ffffff;
  padding: 16px 24px;
  border-radius: 20px;
  text-decoration: none;
  color: #2c1608;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.quick-links a:hover {
  transform: translateY(-4px);
  color: #2f9e44;
}

/* Intro Section */
.intro-section {
  padding: 60px 48px;
  background-color: #ffffff;
  overflow: hidden;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow-large {
  font-size: 48px;
  font-weight: 800;
  color: #2c1608;
  margin: 0;
  line-height: 1;
  opacity: 0;
  transform: translateY(30px);
}

.intro-section.visible .eyebrow-large {
  animation: fadeInUp 0.8s ease forwards;
}

.intro-title {
  font-size: 64px;
  font-weight: 800;
  color: #2f9e44;
  margin: 0 0 32px;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
}

.intro-section.visible .intro-title {
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.intro-description {
  font-size: 18px;
  line-height: 1.8;
  color: #4b2a10;
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
}

.intro-section.visible .intro-description {
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn-intro {
  display: inline-block;
  padding: 14px 32px;
  background-color: #2f9e44;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.intro-section.visible .btn-intro {
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn-intro:hover {
  background-color: #248438;
  transform: translateY(-3px);
}

.intro-image-column {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
}

.intro-section.visible .intro-image-column {
  animation: fadeInRight 1s ease 0.3s forwards;
}

.intro-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.intro-img-main {
  width: 90%;
  height: 90%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border-radius: 0 !important;
  border: none !important;
}

.intro-img-accent {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  aspect-ratio: 1/1;
  z-index: 3;
}

.intro-img-sub {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  border: none !important;
}

.intro-shape {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  z-index: 1;
  opacity: 0.4;
  animation: rotateShape 30s linear infinite;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotateShape {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Stats Section */
.stats-section {
  padding: 60px 48px;
  background-color: #ffffff;
  text-align: center;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.stats-title {
  font-size: 42px;
  font-weight: 800;
  color: #2c1608;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
}

/* Subtle yellow glow on the right like in the image */
.stats-grid::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  color: #2f9e44;
  line-height: 1;
}

.stat-text {
  font-size: 16px;
  font-weight: 700;
  color: #2d1c0f;
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 24px;
  }

  .stats-title {
    font-size: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stat-number {
    font-size: 56px;
  }
}

/* Land Section */
.land-section {
  padding: 60px 48px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.land-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.land-title {
  font-size: 56px;
  font-weight: 800;
  color: #2d1c0f;
  margin: 0 0 40px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
}

.land-section.visible .land-title {
  animation: fadeInUp 0.8s ease forwards;
}

.land-description {
  font-size: 18px;
  line-height: 1.8;
  color: #4b2a10;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
}

.land-section.visible .land-description {
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.land-description p {
  margin-bottom: 24px;
}

.btn-land {
  display: inline-block;
  padding: 16px 36px;
  background-color: #1a7a3b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.land-section.visible .btn-land {
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn-land:hover {
  background-color: #145e2d;
  transform: translateY(-3px);
}

.land-image-column {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
}

.land-section.visible .land-image-column {
  animation: fadeInRight 1s ease 0.3s forwards;
}

.land-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
}

.land-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.land-decoration {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 400px;
  height: 400px;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

.land-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 968px) {
  .land-section {
    padding: 60px 24px;
  }

  .land-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .land-title {
    font-size: 40px;
  }

  .land-image-column {
    max-width: 600px;
    margin: 0 auto;
  }

  .land-decoration {
    display: none;
  }
}

@media (max-width: 968px) {
  .intro-section {
    padding: 60px 24px;
  }

  .intro-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .eyebrow-large {
    font-size: 36px;
  }

  .intro-title {
    font-size: 40px;
  }

  .intro-description {
    margin: 0 auto 40px;
  }

  .intro-image-column {
    max-width: 500px;
    margin: 0 auto;
  }

  .intro-shape {
    display: none;
  }
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 1.2fr);
  gap: 32px;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 40px;
}

.about-text h2 {
  font-size: 36px;
  margin: 12px 0 16px;
  color: #2f9e44;
}

.about-text ul {
  padding-left: 20px;
  margin: 16px 0 24px;
  line-height: 1.6;
}

.about-card {
  background-color: #fff8eb;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
}

.meta-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8c5b2c;
}

.page-header {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 24px;
  margin-bottom: 0;
  text-align: center;
}

.page-header h1 {
  font-size: 40px;
  margin: 12px 0 16px;
  color: #2f9e44;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-header p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
  color: #3f2b1b;
  margin: 0 auto;
}

.about-page {
  margin-bottom: 48px;
}

/* Production & Services Sections */
.production-services,
.events-section,
.services-section {
  padding: 48px;
  margin: 0 48px 48px;
}

.production-content,
.events-content,
.services-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2f9e44;
  margin-bottom: 32px;
  text-align: center;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.production-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #2f9e44;
}

.production-card:hover {
  transform: translateY(-4px);
}

.production-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2f9e44;
  margin-bottom: 16px;
}

.production-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #3f2b1b;
  margin: 0 0 24px;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
}

.card-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.production-card .btn-intro {
  opacity: 1;
  transform: none;
  font-size: 14px;
  padding: 10px 20px;
}

.events-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #3f2b1b;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.event-card {
  background: linear-gradient(135deg, #fff8eb 0%, #f3fff5 100%);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #2f9e44;
}

.event-card:hover {
  transform: translateY(-4px);
}

.event-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2f9e44;
  margin-bottom: 12px;
}

.event-card p {
  font-size: 15px;
  color: #6b3f19;
  margin: 0;
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.service-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  border-color: #2f9e44;
  transform: translateY(-2px);
}

.service-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2f9e44;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b2a10;
  margin: 0;
}

/* Mobile Menu Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
  .navbar {
    padding: 12px 24px;
  }

  .nav-right {
    width: 100%;
    gap: 8px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 84px);
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    z-index: 99;
    padding: 0;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
    margin: 0;
  }

  .nav-menu>ul>li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0;
  }

  .nav-menu>ul>li:first-child {
    border-top: 2px solid rgba(47, 158, 68, 0.2);
    margin-top: 0;
  }

  .nav-menu>ul>li:last-child {
    border-bottom: 2px solid rgba(47, 158, 68, 0.2);
    margin-bottom: 0;
  }

  .nav-menu>ul>li:not(:first-child) {
    margin-top: 4px;
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    color: #2c1608;
    transition: all 0.2s ease;
  }

  .nav-menu>ul>li>a:hover {
    background-color: rgba(47, 158, 68, 0.08);
    color: #2f9e44;
    padding-left: 32px;
  }

  .has-submenu>a {
    position: relative;
  }

  /* Zobraziť submenu na mobile */
  .submenu {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    width: 100% !important;
    min-width: auto !important;
    padding: 0 0 0 24px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    pointer-events: auto !important;
  }

  .submenu li {
    border-bottom: none !important;
  }

  .submenu a {
    font-size: 16px !important;
    padding: 12px 0 !important;
    color: #4b2a10 !important;
    font-weight: 500 !important;
  }

  .submenu a:hover {
    background-color: transparent !important;
    color: #2f9e44 !important;
    padding-left: 12px !important;
    border-left: 2px solid #2f9e44;
  }

  .nav-cta>a {
    margin: 0 24px;
    text-align: center;
    background-color: #2f9e44;
    color: #ffffff;
    border-radius: 12px;
    padding: 16px 24px;
  }

  .nav-cta>a:hover {
    background-color: #248438;
    padding-left: 24px;
  }

  main {
    padding: 24px 24px 48px;
  }

  .hero {
    flex-direction: column;
    padding: 32px 24px;
    margin: 24px 24px 0;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: clamp(28px, 5vw, 44px);
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-badge {
    min-width: auto;
    width: 100%;
    max-width: 200px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .page-header {
    padding: 24px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .production-services,
  .events-section,
  .services-section {
    padding: 32px 24px;
    margin: 0 24px 32px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .production-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .production-card {
    padding: 24px;
  }

  .production-card h3 {
    font-size: 20px;
  }

  .events-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-video-section {
    height: 70vh;
    min-height: 500px;
  }

  .hero-video-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
  }

  .btn-video-hero {
    padding: 14px 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 16px;
  }

  .nav-logo img {
    height: 50px;
  }

  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .menu-overlay {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .lang-switch {
    align-self: center;
    justify-content: center;
    padding: 8px 0;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 5px;
  }

  main {
    padding: 12px 12px 32px;
  }

  .hero {
    padding: 24px 16px;
    margin: 16px 16px 24px;
    border-radius: 20px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .page-header {
    padding: 20px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .production-services,
  .events-section,
  .services-section {
    padding: 24px 16px;
    margin: 0 0 24px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .production-card,
  .event-card {
    padding: 20px;
  }

  .production-card h3 {
    font-size: 18px;
  }

  .event-card h3 {
    font-size: 18px;
  }

  .events-intro {
    font-size: 15px;
  }

  .service-item {
    padding: 20px;
  }

  .service-item h4 {
    font-size: 18px;
  }

  .hero-video-section {
    height: 60vh;
    min-height: 400px;
  }

  .hero-video-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .btn-video-hero {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* Footer */
footer {
  background-color: #1b5e20;
  /* Dark green background */
  color: #ffffff;
  padding: 64px 48px 24px;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 100px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 8px;
  /* Optional: smooth corners if logo has white bg */
  background-color: white;
  /* Ensure logo is visible on dark bg */
  padding: 8px;
}

.footer-logo img {
  width: 100px;
  height: 80px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-col h3,
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #ffffff;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-decoration: none;
  margin: 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #4ade80;
  /* Lighter green for hover */
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: #4ade80;
  transform: translateY(-2px);
}

.social-link img {
  width: 20px;
  height: 20px;
  filter: invert(1);
  /* Make black icons white if needed, or remove if using colored */
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-top {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #ffffff;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.scroll-top:hover {
  opacity: 1;
}

/* Responsive Footer */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  footer {
    padding: 48px 24px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Contact Hero Section */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background-color: #ffffff;
}

.contact-hero-text {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero-text .eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2c1608;
  margin-bottom: 24px;
}

.contact-hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  color: #2f9e44;
  /* Changed from yellow to green */
  line-height: 1.2;
  margin: 0;
}

.contact-hero-image {
  position: relative;
  overflow: hidden;
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 48px;
  background-color: #f6f6f6;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 768px) {
  .form-group {
    width: 100% !important;
  }
  
  .contact-form .btn-submit {
    width: 100%;
  }
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #6b3f19;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2f9e44;
}

.contact-form .btn-submit {
  grid-column: span 2;
  background-color: #2f9e44;
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form .btn-submit:hover {
  background-color: #248438;
}

/* Scroll Animation Utilities */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Split Section Layout (Alternating Image/Text) */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 350px;
  background-color: transparent;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
}

.split-section:nth-child(even) .split-image-column {
  order: -1;
}

.split-text-column {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  border-radius: 20px;
}

.split-text-column.split-text-left {
  text-align: left;
  align-items: flex-start;
  padding: 60px 48px;
}

.title-highlight {
  color: #2f9e44;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.img-shrink {
  max-width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.img-shrink img {
  display: block;
}

/* Dekoratívne krivé čiary okolo fotiek */
.img-shrink::before,
.img-shrink::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
  border: 2px solid;
}

/* Zelená krivka */
.img-shrink::before {
  top: -15px;
  left: -15px;
  right: -5px;
  bottom: -5px;
  border-color: #2f9e44;
  border-radius: 45% 55% 35% 65% / 35% 45% 55% 65%;
  transform: rotate(-3deg);
}

/* Čierna krivka */
.img-shrink::after {
  top: -10px;
  left: -5px;
  right: -20px;
  bottom: -20px;
  border-color: #2c1608;
  border-radius: 60% 40% 70% 35% / 40% 70% 35% 60%;
  transform: rotate(2deg);
  opacity: 0.8;
}

.split-text-column p {
  font-size: 18px;
  line-height: 1.6;
  color: #3f2b1b;
  margin-bottom: 40px;
  max-width: 500px;
}

.split-image-column {
  position: relative;
  border-radius: 20px;
}

.split-image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animované krivky - teraz živšie a "lámané" */
@keyframes curveFloat {

  0%,
  100% {
    transform: translateY(-50%) rotate(-15deg) scale(1);
  }

  25% {
    transform: translateY(-54%) rotate(-18deg) scale(1.03);
  }

  75% {
    transform: translateY(-46%) rotate(-12deg) scale(0.97);
  }
}

@keyframes lineWaveSK {

  0%,
  100% {
    border-radius: 45% 55% 35% 65% / 35% 45% 55% 65%;
    transform: rotate(-3deg) skew(0deg);
  }

  25% {
    transform: rotate(2deg) skew(1deg);
  }

  50% {
    border-radius: 55% 45% 65% 35% / 45% 35% 65% 55%;
    transform: rotate(5deg) skew(-2deg);
  }

  75% {
    transform: rotate(-1deg) skew(1deg);
  }
}

@keyframes lineWaveEN {

  0%,
  100% {
    border-radius: 60% 40% 70% 35% / 40% 70% 35% 60%;
    transform: rotate(2deg) skew(0deg);
  }

  25% {
    transform: rotate(-3deg) skew(-1deg);
  }

  50% {
    border-radius: 40% 60% 35% 70% / 70% 40% 60% 35%;
    transform: rotate(-5deg) skew(2deg);
  }

  75% {
    transform: rotate(1deg) skew(-1deg);
  }
}

.rhythm-curve-line {
  position: absolute;
  top: 50%;
  left: -120px;
  width: 450px;
  height: 650px;
  border-left: 3px solid #2f9e44;
  border-radius: 50%;
  transform: translateY(-50%) rotate(-15deg);
  z-index: 1;
  pointer-events: none;
  animation: curveFloat 8s ease-in-out infinite;
}

.img-shrink::before {
  animation: lineWaveSK 6s ease-in-out infinite;
}

.img-shrink::after {
  animation: lineWaveEN 7s ease-in-out infinite reverse;
}

.square-img-shrink {
  max-width: 80%;
  margin: 0 auto;
}

/* Štýl pre nezaoblené prekrývajúce sa fotky */
.square-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.square-img-main {
  width: 90%;
  height: 90%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.square-img-accent {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 50%;
  aspect-ratio: 1/1;
  z-index: 3;
}

.square-img-sub {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-show {
  display: inline-block;
  padding: 14px 40px;
  background-color: #2f9e44;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-show:hover {
  background-color: #2b8a3e;
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .split-section {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  .split-image-column {
    height: auto;
    order: 0 !important;
  }

  .split-section {
    gap: 20px;
    margin-bottom: 20px;
  }

  .split-text-column {
    padding: 32px 20px;
  }

  .img-shrink {
    max-width: 100%;
    margin: 0 auto;
  }

  .split-image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  }
}

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

  .contact-hero-text {
    padding: 48px 24px;
    order: 2;
  }

  .contact-hero-image {
    height: 300px;
    order: 1;
  }

  .contact-hero-text h1 {
    font-size: clamp(24px, 6vw, 48px);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .contact-form .btn-submit {
    grid-column: span 1;
  }

  .contact-form-container {
    padding: 32px 20px;
  }
}

/* News Poster Overlay Styles */
.poster-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.poster-modal-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.poster-modal-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.close-poster {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 60px;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.3s ease;
  font-weight: 200;
}

.close-poster:hover {
  transform: rotate(90deg) scale(1.2);
  color: #2f9e44;
}

@media (max-width: 768px) {
  .close-poster {
    top: 10px;
    right: 20px;
    font-size: 50px;
  }
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-family: inherit;
}

.lightbox-caption {
  font-weight: 500;
  opacity: 0.9;
}

.lightbox-counter {
  opacity: 0.6;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: #2f9e44;
  transform: rotate(90deg);
}

.img-frame {
  cursor: zoom-in;
}

/* Page Header with lines */
.page-header {
  text-align: center;
  padding: 60px 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 56px;
  font-weight: 800;
  color: #2c1608;
  margin: 24px 0;
}

.page-header h1::before,
.page-header h1::after {
  content: '';
  height: 2px;
  background-color: #2f9e44;
  flex: 1;
  max-width: 250px;
}

.page-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 700;
  color: #2f9e44;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
    gap: 20px;
  }

  .page-header h1::before,
  .page-header h1::after {
    max-width: 50px;
  }
}

.section-quote {
  font-size: 20px;
  font-style: italic;
  color: #8c5b2c;
  border-left: 4px solid #2f9e44;
  padding-left: 20px;
  margin: 32px 0;
  max-width: 600px;
}

.points-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.points-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.points-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f9e44;
  font-weight: 800;
}

.info-grid-section {
  padding: 80px 48px;
  margin: 48px;
  border-radius: 32px;
}

.bg-light {
  background-color: #f8f9fa;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  color: #2f9e44;
  font-size: 24px;
  margin-bottom: 16px;
}

.info-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b2a10;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  text-align: left;
}

.value-item h3 {
  font-size: 20px;
  color: #2f9e44;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 15px;
  line-height: 1.5;
  color: #3f2b1b;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .info-grid-section {
    padding: 48px 24px;
    margin: 24px 0;
    border-radius: 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Gallery & Video Styles */
.video-wrapper {
  max-width: 1000px;
  margin: 0 auto 64px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background-color: #000;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-wrapper:hover {
  transform: scale(1.02);
}

.video-element {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.img-frame {
  overflow: hidden;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: #f0f0f0;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.img-frame:hover {
  transform: translateY(-10px);
}

.img-frame:hover img {
  transform: scale(1.1);
}

.img-portrait {
  aspect-ratio: 4 / 5;
}

.img-landscape {
  aspect-ratio: 1.5 / 1;
}

.img-square {
  aspect-ratio: 1 / 1;
}

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

  .video-wrapper {
    border-radius: 20px;
  }

}

/* Location Section */
.location-section {
  padding: 60px 48px;
  background: linear-gradient(to right, #e8e8e8 0%, #fcfbf7 35%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.location-container {
  max-width: 1000px;
  margin: 0 auto;
}

.location-intro {
  max-width: 920px;
  margin: 0 auto 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.location-intro h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2d1c0f;
  margin-bottom: 18px;
}

.location-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #3f5c3a;
  margin: 0 auto;
  max-width: 720px;
}

.location-contact {
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 56px 48px;
  background: #fff;
  border: 1px solid rgba(47, 158, 68, 0.12);
  border-radius: 32px;
  display: block;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.location-contact::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -80px;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(47, 158, 68, 0.16);
  border-radius: 50%;
  animation: floatCircle 10s ease-in-out infinite alternate;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 968px) {
  .contact-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
  }

  .contact-photo {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 10px;
  }

  .contact-heading {
    font-size: clamp(24px, 7vw, 32px) !important;
    line-height: 1.2;
  }

  .contact-copy p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

.contact-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #2f9e44;
  border-radius: 45% 55% 35% 65% / 35% 45% 55% 65%;
  pointer-events: none;
  z-index: -1;
  animation: lineWaveSK 6s ease-in-out infinite;
}

.contact-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.location-contact img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-heading {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.05;
  color: #2d1c0f;
  margin-bottom: 20px;
}

.contact-copy p {
  font-size: 20px;
  line-height: 1.9;
  color: #2d3b21;
  margin-bottom: 28px;
}

.location-contact .btn-show {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 46px;
  font-size: 18px;
}

@keyframes floatCircle {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-20px, 18px) scale(1.04);
  }
}

  justify-content: center;
}

..location-section.visible .location-intro,
.location-intro.visible,
.location-section.visible .location-contact,
.location-contact.visible {
  animation: fadeInUp 0.8s ease 0.1s forwards;
}

.location-title {
  font-size: 48px;
  font-weight: 800;
  color: #2d1c0f;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.location-title::before,
.location-title::after {
  content: '';
  height: 1px;
  background-color: #1a7a3b;
  flex: 1;
  max-width: 250px;
}

.location-section.visible .location-title {
  animation: fadeInUp 0.8s ease forwards;
}

.location-subtitle {
  font-size: 18px;
  color: #6b3f19;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
}

.location-section.visible .location-subtitle {
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.map-wrapper {
  position: relative;
  background: #e8e8e8;
  padding: 40px;
  border-radius: 32px;
  display: inline-block;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.location-section.visible .map-wrapper {
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.location-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding: 0 10px;
}

.feature-card {
  background: #f3f9f1;
  border: 1px solid rgba(47, 158, 68, 0.15);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  color: #2f9e44;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1f5b2d;
  margin: 0;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #3f5c3a;
  margin: 0;
}

.map-img {
  width: 100%;
  height: auto;
  opacity: 1;
  display: block;
  background-color: #e8e8e8;
  border: 1px solid #e8e8e8;
}

.map-marker {
  position: absolute;
  /* Coordinates for Dačov on slovenskomapa.jpg */
  top: 30%;
  left: 64%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-decoration: none;
}

.marker-dot {
  width: 20px;
  height: 20px;
  background: #1a7a3b;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: relative;
}

.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: rgba(26, 122, 59, 0.4);
  border-radius: 50%;
  animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
  0% {
    width: 16px;
    height: 16px;
    opacity: 1;
  }

  100% {
    width: 60px;
    height: 60px;
    opacity: 0;
  }
}

.marker-label {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #2d1c0f;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.marker-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #2d1c0f;
}

@media (max-width: 768px) {
  .location-section {
    padding: 60px 24px;
  }

  .location-title {
    font-size: 32px;
    gap: 20px;
  }

  .location-title::before,
  .location-title::after {
    max-width: 50px;
  }

  .map-wrapper {
    padding: 20px;
    border-radius: 20px;
  }

  .map-marker {
    top: 30%;
    left: 64%;
  }

  .location-features {
    grid-template-columns: 1fr;
  }

  .location-contact {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: center;
  }

  .location-contact .contact-copy {
    order: 2;
  }

  .location-contact .contact-photo {
    order: 1;
  }
}

/* Production Services Section (O nás) */
.production-services {
  padding: 100px 48px;
  background-color: #fcfbf7;
  /* Light background */
}

.production-services .section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #2f9e44;
  margin-bottom: 60px;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.production-card {
  background: white;
  border: 2px solid #2f9e44;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.production-card:hover {
  transform: translateY(-10px);
}

.production-card .img-frame {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  height: 240px;
  /* Fixed height for consistency */
}

.production-card .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.production-card:hover .img-frame img {
  transform: scale(1.05);
}

.production-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #2f9e44;
  margin-bottom: 16px;
}

.production-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b2a10;
  margin-bottom: 24px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  /* Push list to bottom if needed */
}

.card-list li {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #4b2a10;
}

.card-list li strong {
  color: #2c1608;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 968px) {
  .production-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .production-services .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

/* Expertise Section */
.expertise-section {
  padding: 100px 48px;
  background-color: #ffffff;
  overflow: hidden;
}

.expertise-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.expertise-text-column {
  display: flex;
  flex-direction: column;
}

.eyebrow-green {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 700;
  color: #fbbf24;
  /* Yellow requested in image, but user said green? "nech je to zelenym". Wait. The USER said "nech je to zelenym" (let it be green). I will use Green. */
  color: #2f9e44;
  margin-bottom: 24px;
}

.expertise-title {
  font-size: 56px;
  font-weight: 800;
  color: #2c1608;
  margin: 0 0 32px;
  line-height: 1.1;
}

.expertise-description {
  font-size: 18px;
  line-height: 1.8;
  color: #4b2a10;
}

.expertise-image-column {
  position: relative;
}

.expertise-img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 968px) {
  .expertise-section {
    padding: 60px 24px;
  }

  .expertise-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .expertise-title {
    font-size: clamp(24px, 5vw, 36px);
  }
}

/* Animations for Expertise Section */
.expertise-section .eyebrow-green,
.expertise-section .expertise-title,
.expertise-section .expertise-description {
  opacity: 0;
  transform: translateY(30px);
}

.expertise-section.visible .eyebrow-green {
  animation: fadeInUp 0.8s ease forwards;
}

.expertise-section.visible .expertise-title {
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.expertise-section.visible .expertise-description {
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.expertise-image-column {
  opacity: 0;
  transform: translateX(-50px);
}

.expertise-section.visible .expertise-image-column {
  animation: fadeInRight 1s ease 0.3s forwards;
}

/* Animations for Expertise Section */
.expertise-section .eyebrow-green,
.expertise-section .expertise-title,
.expertise-section .expertise-description {
  opacity: 0;
  transform: translateY(30px);
}

.expertise-section.visible .eyebrow-green {
  animation: fadeInUp 0.8s ease forwards;
}

.expertise-section.visible .expertise-title {
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.expertise-section.visible .expertise-description {
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.expertise-image-column {
  opacity: 0;
  transform: translateX(-50px);
}

.expertise-section.visible .expertise-image-column {
  animation: fadeInRight 1s ease 0.3s forwards;
}

/* Motto Section */
.motto-section {
  background-color: #2f9e44;
  padding: 100px 48px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.motto-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.quote-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.2);
}

.motto-text {
  font-size: 56px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .motto-section {
    padding: 80px 24px;
  }

  .motto-text {
    font-size: 36px;
  }

  .quote-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
  }
}

/* Podujatia a Služby Modern Cards */
.services-highlight-section {
  padding: 100px 48px;
  background-color: #fcfbf7;
  text-align: center;
}

.services-highlight-section .section-title {
  font-size: 48px;
  font-weight: 800;
  color: #2f9e44;
  margin-bottom: 60px;
}

.modern-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.modern-service-card {
  background: #ffffff;
  padding: 48px 32px;
  border-radius: 24px;
  text-align: left;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.modern-service-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid #2f9e44;
}

.modern-service-card h3 {
  color: #2f9e44;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.modern-service-card p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

/* Farm Gallery Paginated */
.gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: left;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.gallery-page {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-page.active {
  display: grid;
}

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #f0f0f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  /* Let clicks pass through to the gallery-item */
}

.item-overlay .plus-icon {
  width: 48px;
  height: 48px;
  background: #4a6741;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 300;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .item-overlay {
  opacity: 1;
}

.gallery-item:hover .plus-icon {
  transform: scale(1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Pagination Styles */
.pagination-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid #e9e5d8;
  font-size: 16px;
  color: #8a887b;
}

.pagination-controls a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pagination-controls .page-numbers {
  display: flex;
  gap: 15px;
}

.pagination-controls .page-number {
  padding: 0 4px;
}

.pagination-controls .page-number.active {
  color: #4a6741;
  font-weight: 700;
  border-bottom: 2px solid #4a6741;
}

.pagination-controls a:hover {
  color: #4a6741;
}

.pagination-controls .disabled {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 968px) {
  .modern-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-highlight-section {
    padding: 60px 24px;
  }

  .services-highlight-section .section-title {
    font-size: 36px;
  }
}

/* Invoice Details Section */
.invoice-details {
  padding: 80px 48px;
  background-color: #fcfbf7;
  color: #000000;
}

.invoice-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.invoice-logo img {
  max-width: 250px;
  height: auto;
}

.invoice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  flex: 1;
}

.invoice-block {
  margin-bottom: 40px;
}

.invoice-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000000;
}

.invoice-block p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #000000;
}

@media (max-width: 1024px) {
  .invoice-container {
    flex-direction: column;
    gap: 40px;
  }

  .invoice-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .invoice-grid {
    grid-template-columns: 1fr;
  }
}

/* News Section Styles */
.news-section {
  padding: 80px 48px;
  background-color: #f6f6f6;
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 40px;
}

.news-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 32px;
  flex: 1;
}

.news-title {
  font-size: 28px;
  font-weight: 700;
  color: #2f9e44;
  margin: 0 0 16px;
  line-height: 1.3;
}

.news-date {
  font-size: 14px;
  color: #888888;
  margin-bottom: 24px;
  display: block;
}

.news-description {
  font-size: 16px;
  line-height: 1.7;
  color: #4b2a10;
  margin: 0;
}

@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .news-section {
    padding: 60px 24px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-title {
    font-size: 24px;
  }
}

/* Team Contacts Section */
.team-contacts {
  padding: 80px 48px;
  background-color: #fafafa;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.team-contacts-container {
  max-width: 1000px;
  margin: 0 auto;
}

.team-contacts-title {
  font-size: 36px;
  font-weight: 800;
  color: #2c1608;
  margin-bottom: 60px;
  text-transform: none;
  /* Removed uppercase for a more modern look */
  letter-spacing: -0.01em;
}

.team-contacts-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 280px;
  transition: transform 0.3s ease;
}

.team-member-name {
  font-size: 26px;
  font-weight: 800;
  color: #2c1608;
  margin: 0 0 2px;
}

.team-member-role {
  font-size: 16px;
  font-weight: 400;
  color: #2d1c0f;
  margin-bottom: 12px;
}

.team-member-phone,
.team-member-email {
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.team-member-phone {
  color: #2c1608;
}

.team-member-email {
  color: #2f9e44;
  font-weight: 700;
}

.team-member-email:hover {
  text-decoration: underline;
  color: #248438;
}

.team-member-phone:hover {
  color: #2f9e44;
}

@media (max-width: 768px) {
  .team-contacts {
    padding: 60px 24px;
  }

  .team-contacts-grid {
    gap: 50px;
  }

  .team-member {
    min-width: 100%;
  }

  .team-contacts-title {
    font-size: 28px;
  }
}

/* Instagram Brand Hover */
.social-link.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
}