* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #000000;
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #055924;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #055924;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #055924;
}

.contact-btn {
  background-color: #055924;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #044020;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== CONTACT HERO SECTION ===== */
.contact-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(5,89,36,0.05)" points="0,0 1000,200 1000,1000 0,800"/></svg>');
  background-size: cover;
}

/* Floating Elements */
.contact-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(5, 89, 36, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #000000;
  animation: fadeInLeft 1s ease-out;
  margin-top: 2rem;
}

.text-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #055924 !important;
  margin-bottom: 1rem;
  animation: slideInUp 1s ease-out 0.3s both;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #000000 !important;
  animation: slideInUp 1s ease-out 0.6s both;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #333333 !important;
  line-height: 1.6;
  animation: slideInUp 1s ease-out 0.9s both;
}

/* Contact Methods Grid */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: slideInUp 1s ease-out 1.2s both;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid rgba(5, 89, 36, 0.1);
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(5, 89, 36, 0.02) 0%,
      rgba(5, 89, 36, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-method:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #055924;
  z-index: 10;
}

.contact-method:hover::before {
  opacity: 1;
}

.contact-method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.contact-method:hover .contact-method-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-method-content {
  position: relative;
  z-index: 2;
}

.contact-method-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 0.5rem;
}

.contact-method-description {
  font-size: 1rem;
  color: #333333 !important;
  margin-bottom: 0.5rem;
}

.contact-method-link {
  color: #055924 !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-method-link:hover {
  color: #044020 !important;
  text-decoration: underline;
}

/* Primary CTA */
.primary-cta {
  animation: slideInUp 1s ease-out 1.5s both;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  color: #ffffff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%);
  border-radius: 50px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(5, 89, 36, 0.4);
}

/* Hero Image */
.hero-image {
  text-align: center;
  animation: fadeInRight 1s ease-out;
}

.hero-image-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  animation: float 3s ease-in-out infinite 1s;
  box-shadow: 0 20px 40px rgba(5, 89, 36, 0.3);
}

/* Quick Contact Strip */
.quick-contact {
  background: rgba(5, 89, 36, 0.05);
  border: 2px solid rgba(5, 89, 36, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin: 3rem;
  text-align: center;
  animation: fadeInUp 1.8s ease-out 1.8s both;
}

.quick-contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 1rem;
}

.quick-contact-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(5, 89, 36, 0.1);
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #000000 !important;
}

.quick-contact-item:hover {
  background: rgba(5, 89, 36, 0.15);
  transform: translateY(-2px);
}

.contact-btn .icon-label {
  display: none;
}

/* Footer */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin: 0 200px;
  padding: 60px 32px;
}

.logo-footer {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

footer ul li a {
  text-decoration: none;
  color: white;
}

footer ul li a:hover {
  text-decoration: underline;
}

.copyright {
  padding: 19px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Go to Top Button */
#go-to-top {
  position: fixed;
  bottom: 30px;
  right: 95px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}

#go-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#go-to-top img {
  width: 24px;
  height: 24px;
}

/* WhatsApp Button */
#whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}

#whatsapp-button img {
  width: 28px;
  height: 28px;
}

#whatsapp-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    left: 0;
  }

  .footer-container {
    margin: 0 50px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .subtitle {
    font-size: 1.1rem;
  }

  .contact-method {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .contact-method-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .quick-contact {
    padding: 1.5rem;
  }

  .quick-contact-items {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .quick-contact-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .logo-text {
    display: none;
  }

  .contact-btn .text-label {
    display: none;
  }

  .contact-btn .icon-label {
    display: flex;
    font-size: 1.2rem;
    color: white;
  }

  /* .contact-hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 3rem;
    display: block !important;
  } */

  .contact-hero>.hero-container {
    width: 100%;
  }

  .hero-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 1rem;
  }

  .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
  }

  .hero-image-placeholder {
    height: 100%;
    width: 100%;
    border-radius: 0;
    max-height: 100vh;
    height: 350px;
    font-size: 0.9rem;
  }

  footer ul {
    flex-direction: column;
  }

  /* .quick-contact {
    padding: 2rem 1rem;
    margin-top: 0;
  } */
}

@media (max-width: 480px) {
  /* .contact-hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 3rem;
    display: block !important;
  }

  .contact-hero > .hero-container {
    width: 100%;
  }

  .hero-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
  }

  .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
  }

  .hero-image-placeholder {
    height: 100%;
    width: 100%;
    border-radius: 0;
    max-height: 100vh;
  } */

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .subtitle {
    font-size: 1rem;
  }

  .hero-image-placeholder {
    height: 280px;
    font-size: 0.9rem;
  }

  .contact-method {
    padding: 1rem;
  }

  .contact-method-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
  }

  /* .quick-contact {
    padding: 1.2rem;
    padding: 2rem 1rem;
    margin-top: 0;
  } */

  .quick-contact-title {
    font-size: 1.3rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  footer ul {
    margin-top: 24px;
  }
}

/* Extra small screens */
@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-container {
    padding: 1.5rem 0.5rem;
  }

  .contact-method {
    padding: 0.8rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}