/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
/* Main Content */
.main-content {
  flex-grow: 1;
  position: relative;
}

/* Background Decorations */
.bg-decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.decoration-top {
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background-color: rgba(138, 155, 110, 0.05);
  transform: translate(25%, -50%);
}

.decoration-bottom {
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background-color: rgba(44, 89, 38, 0.05);
  filter: blur(100px);
  transform: translate(-25%, 33%);
}

/* Contact Wrapper */
.contact-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-container {
  width: 100%;
}

.contact-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height:60vh;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  width: 100%;
}

.header-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.line {
  height: 2px;
  width: 3rem;
  background-color: #2c5926;
}

.header-label {
  color: #2c5926;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #131613;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.info-description {
  font-size: 1.125rem;
  color: #6e7f6c;
  line-height: 1.75;
  max-width: 100%;
  margin-bottom: 3rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8ede8;
}

.contact-method:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fa-whatsapp {
  font-size: 1.5rem;
}

.method-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  background-color: #2c5926;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.method-icon-chat {
  background-color: #25d366;
}

.method-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.method-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8a9b6e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.method-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #131613;
  margin-bottom: 0.25rem;
}

.method-note {
  font-size: 0.875rem;
  color: #6e7f6c;
  margin-top: 0.25rem;
}

.chat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.5rem;
  border-radius: 0.5rem;
  background-color: #25d366;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 0.75rem;
}

.chat-button:hover {
  background-color: #20bd5a;
}

.chat-button span:first-child {
  margin-right: 0;
}

.chat-button .material-symbols-outlined {
  font-size: 1rem;
}

.socialContainerContactPage {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #e8ede8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.2s;
}

.socialContainerContactPage:hover {
  background-color: #d8ddd8;
}

/* Responsive Styles */
@media (min-width: 640px) {
  .info-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-mobile {
    display: none;
  }

  .footer-content {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {

  .info-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 640px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .info-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-mobile {
    display: none;
  }

  .contact-info {
    padding: 4rem 3rem;
  }

  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-content {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {


  .info-title {
    font-size: 3.5rem;
  }

  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .contact-container {
    padding: 4rem 2rem;
  }
  .contact-methods {
    font-size: 1rem;
  }
  .method-icon{
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 400px) {
  .contact-container {
    padding: 2rem 1rem;
  }
  .contact-methods {
    font-size: 1rem;
  }
  .method-icon{
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}