/* ===================================
   PARCELAS CHAIGNAL - STYLES
   =================================== */

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

body {
  font-family: 'Mulish', 'Poppins', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #233745;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0 auto;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #90E0A0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-button:hover {
  background: #fff;
  color: #00B050;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: heroZoom 20s ease-in-out infinite;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Specific positioning for hero images */
.hero-slide[style*="hero1.jpg"],
.hero-slide[style*="hero3.jpg"],
.hero-slide[style*="hero4.jpg"] {
  background-position: center center !important;
}

@keyframes heroZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}


.hero-content {
  max-width: 950px;
  padding: 0 6rem;
  text-align: left;
  margin-left: -300px;
}

.hero-line {
  width: 60px;
  height: 3px;
  background: #4CAF50;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  line-height: 1.1;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  background: #233745;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
}

.btn:hover {
  background: #233745;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,176,80,0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #00B050;
}

.btn-green {
  background: #233745;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
}

.btn-green:hover {
  background: #009040;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,176,80,0.3);
}

.btn-white {
  background: #fff;
  color: #00B050;
  border: 2px solid #00B050;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
}

.btn-white:hover {
  background: #233745;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,176,80,0.3);
}

/* ===================================
   SECTIONS
   =================================== */
section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #00B050;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   PROYECTO SECTION
   =================================== */
.proyecto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.proyecto-text {
  padding-left: 2rem;
}

.proyecto-text h3 {
  font-size: 2.5rem;
  color: #00B050;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.proyecto-text p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.proyecto-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.3s ease;
}

.proyecto-image:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.proyecto-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ===================================
   VIDEO SECTION
   =================================== */
.video_section {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.video_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    background-color: #000;
}

.background_image {
    position: absolute;
    top: -40%;
    width: 100%;
    height: 240%;
    object-fit: cover;
    transform: translateY(0);
    will-change: transform;
    z-index: 1;
}

.play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.play_button button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    padding: 20px;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
}

.play_button button:hover {
    background: rgba(255, 255, 255, 1);
}



/* ===================================
   VIDEO MODAL - ORIGINAL STYLES
   =================================== */
.video_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal_content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.modal_content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close_button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 30px;
    color: #000;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 35px;
    z-index: 10000;
}

/* ===================================
   ATRIBUTOS SECTION
   =================================== */
.attributes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.attribute {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  max-width: 350px;
  margin: 0 auto;
}

.attribute:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.attribute i {
  font-size: 3.5rem;
  color: #00B050;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
  display: block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background: rgba(0, 119, 170, 0.1);
}

.attribute:hover i {
  transform: scale(1.1);
  color: #00B050;
  background: rgba(0, 119, 170, 0.2);
}

.attribute h3 {
  font-size: 1.3rem;
  color: #00B050;
  margin-bottom: 1rem;
}

.attribute p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 280px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* ===================================
   GALERÍA SECTION - RIBERA RÍO CISNES STYLE
   =================================== */
#galeria {
  background: #fff;
  padding: 1.5rem 0;
  margin: 0;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  padding: 1.5rem 80px;
  background: #fff;
  width: 100%;
  max-width: none;
  margin: 0;
  justify-content: center;
}

.gallery-item {
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* ===================================
   IMAGE MODAL
   =================================== */
.image_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.image_modal_content {
    position: relative;
    max-width: 75%;
    max-height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image_modal_content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.close_image_button {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 30px;
    color: #000;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 35px;
    z-index: 10001;
    transition: all 0.3s ease;
}

.close_image_button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Responsive para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    padding: 1.5rem 40px;
    width: 100%;
    margin: 0;
    justify-content: center;
  }

  .gallery-item img {
    height: 220px;
  }

  .masterplan-iframe {
    width: 98%;
    height: 500px;
  }

  .grax_tm_title_holder h3 {
    font-size: 2rem;
    letter-spacing: 5px;
  }

  .image_modal_content {
    max-width: 85%;
    max-height: 85%;
  }
}

/* ===================================
   MASTERPLAN SECTION
   =================================== */
.masterplan-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: #f8f9fa;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 3rem 0;
}

.grax_tm_title_holder {
  width: 100%;
  height: auto;
  clear: both;
  margin-bottom: 2rem;
}

.grax_tm_title_holder span {
  color: #00955f;
}

.grax_tm_title_holder h3 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 10px;
  font-size: 2.5rem;
  color: #00B050;
  margin: 0;
}

.masterplan-iframe {
  width: 95%;
  height: 600px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  max-width: 1400px;
}

.grax_tm_button_masterplan {
  width: 100%;
  height: auto;
  clear: both;
  margin-top: 20px;
}

.grax_tm_button_masterplan a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  background-color: #00955f;
  border: 2px solid #00955f;
  padding: 10px 40px;
  border-radius: 5px;
  transition: all .3s ease;
  font-weight: 500;
}

.grax_tm_button_masterplan a:hover {
  background-color: transparent !important;
  color: #00955f;
}

/* ===================================
   CONTACTO SECTION
   =================================== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #00B050;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-item img {
  width: 20px;
  height: 20px;
  margin-right: 1rem;
  opacity: 0.7;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00B050;
  box-shadow: 0 0 0 3px rgba(0,119,170,0.1);
}

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

/* ===================================
   FOOTER
   =================================== */
footer {
  background: #233745;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 60px;
}

.footer-text {
  color: #e8f5e8;
  line-height: 1.6;
}

/* ===================================
   WHATSAPP BUTTON
   =================================== */
.whatsapp-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(37,211,102,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-chat:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* ===================================
   ENTORNO SECTION STYLES
   =================================== */
.entorno-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Tabs Navigation */
.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  background: white;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-button {
  background: transparent;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-button:hover {
  color: #00B050;
}

.tab-button.active-tab {
  background: linear-gradient(135deg, #00B050, #4a7c59);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 176, 80, 0.3);
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Actividades Styles */
.actividades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.actividad-card {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.actividad-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.actividad-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.actividad-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 176, 80, 0.15), rgba(74, 124, 89, 0.15));
  display: flex;
  align-items: flex-start;
  padding: 25px;
}

.actividad-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Atractivos Styles */
.atractivos-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 25px;
}

.atractivo-card {
  min-width: 350px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.atractivo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.atractivo-content {
  padding: 25px;
}

.atractivo-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #00B050;
  margin-bottom: 15px;
}

.atractivo-description {
  color: #666;
  line-height: 1.6;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.carousel-btn {
  background: #233745;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: #4a7c59;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Como Llegar Styles */
.como-llegar-content {
  margin-top: 30px;
}

.rutas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.ruta-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.ruta-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #00B050;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ruta-icon {
  width: 24px;
  height: 24px;
  background: #233745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.ruta-description {
  color: #666;
  line-height: 1.6;
}

.mapa-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1rem;
}

.mapa-placeholder {
  text-align: center;
  padding: 40px;
}

.mapa-placeholder::before {
  content: "📍";
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

/* Entorno Responsive Styles */
@media (max-width: 768px) {
  .tabs-nav {
    flex-direction: column;
    border-radius: 15px;
    padding: 15px;
  }

  .tab-button {
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .tab-button:last-child {
    margin-bottom: 0;
  }

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

  .actividad-card {
    height: 200px;
  }

  .atractivo-card {
    min-width: 280px;
  }

  .carousel-container {
    gap: 15px;
    padding: 0 20px;
  }

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

  .ruta-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .entorno-section {
    padding: 40px 15px;
  }

  .actividad-card {
    height: 180px;
  }

  .actividad-title {
    font-size: 1.1rem;
  }

  .atractivo-card {
    min-width: 250px;
  }

  .atractivo-content {
    padding: 20px;
  }
}

/* ===================================
   FAQ SECTION STYLES
   =================================== */
.faq-section {
  padding: 80px 0;
  position: relative;
}

.faq-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 40px;
}

.faq-item {
  margin-bottom: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 30px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: #f8f9fa;
  color: #00B050;
}

.faq-question:focus {
  outline: 2px solid #00B050;
  outline-offset: 2px;
}

.faq-question[aria-expanded="true"] {
  background: #f8f9fa;
  color: #00B050;
  border-bottom: 1px solid #e9ecef;
}

.faq-question span {
  flex: 1;
  margin-right: 20px;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00B050;
  transition: transform 0.3s ease;
  font-style: normal;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer[aria-hidden="false"] {
  max-height: 500px;
  transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.faq-answer-content {
  padding: 0 30px 25px 30px;
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-answer-content strong {
  color: #00B050;
  font-weight: 600;
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0 80px 0;
  }

  .faq-container {
    padding: 0 20px;
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 1rem;
  }

  .faq-question span {
    margin-right: 15px;
  }

  .faq-answer-content {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
  }

  .faq-icon {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 50px 0 70px 0;
  }

  .faq-container {
    padding: 0 15px;
  }

  .faq-question {
    padding: 18px 15px;
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 0 15px 18px 15px;
    font-size: 0.9rem;
  }

  .faq-item {
    margin-bottom: 15px;
  }
}

/* ===================================
   WHATSAPP BUTTON STYLES
   =================================== */
.whatsapp-button-container {
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  align-items: center;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

.floating-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 60px;
  height: 60px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 12px;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-icon {
  font-size: 30px;
  width: 30px;
  height: 30px;
  background: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg') no-repeat center;
  background-size: contain;
}

.whatsapp-button-text {
  margin-right: 10px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-align: center;
  animation: bounce 2s infinite;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 6px;
  padding: 4px 10px;
}

.floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
  .whatsapp-button-container {
    bottom: 15px;
    right: 15px;
  }

  .floating-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding: 10px;
  }

  .whatsapp-icon {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }

  .whatsapp-button-text {
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 6px;
    padding: 2px 6px;
  }
}

@media (max-width: 480px) {
  .whatsapp-button-container {
    bottom: 10px;
    right: 10px;
  }

  .floating-button {
    width: 45px;
    height: 45px;
    font-size: 18px;
    padding: 8px;
  }

  .whatsapp-icon {
    font-size: 20px;
    width: 20px;
    height: 20px;
  }

  .whatsapp-button-text {
    font-size: 12px;
    padding: 2px 4px;
  }
}

/* ===================================
   MODERN CONTACT SECTION STYLES
   =================================== */

/* Contact Icons Top Section */
.contact-icons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.contact-icon-item {
  text-align: center;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8BC34A, #689F38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
}

.contact-icon i {
  font-size: 24px;
  color: white;
  font-style: normal;
}

.contact-icon-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.contact-icon-item p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Contact Form and Map Container */
.contact-form-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.modern-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.modern-contact-form .form-group {
  margin-bottom: 20px;
}

.modern-contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.modern-contact-form input,
.modern-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
  outline: none;
  border-color: #8BC34A;
  box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

.modern-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.modern-submit-btn {
  background: linear-gradient(135deg, #455A64, #37474F);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: none;
}

.modern-submit-btn:hover {
  background: linear-gradient(135deg, #37474F, #263238);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(69, 90, 100, 0.3);
}

/* Map Section */
.contact-map-section {
  position: relative;
}

.map-container-modern {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Contact Section Responsive */
@media (max-width: 968px) {
  .contact-form-map-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-icons-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
  }

  .contact-icon i {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .contact-icons-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-form-section {
    padding: 30px 20px;
  }

  .modern-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .map-container-modern {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-icons-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
  }

  .contact-icon i {
    font-size: 18px;
  }

  .contact-form-section {
    padding: 25px 15px;
  }

  .modern-submit-btn {
    padding: 12px 30px;
  }
}

/* ===================================
   ASTRA FOOTER STYLES
   =================================== */
.astra-footer {
  background-color: #233745;
  padding: 40px 0;
  margin-top: 0;
}

.astra-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.astra-logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.astra-logo a:hover {
  transform: scale(1.05);
}

.astra-logo img {
  max-width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
}

.astra-social {
  display: flex;
  align-items: center;
  gap: 25px;
}

.astra-social a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.astra-social a:hover {
  transform: scale(1.1);
}

.astra-social img {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}

.astra-copyright p {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Astra Footer Responsive */
@media (max-width: 768px) {
  .astra-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .astra-logo img {
    max-width: 80px;
  }

  .astra-social {
    gap: 20px;
  }

  .astra-copyright p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .astra-footer {
    padding: 30px 0;
  }

  .astra-footer-content {
    gap: 12px;
  }

  .astra-logo img {
    max-width: 70px;
  }

  .astra-social {
    gap: 15px;
  }

  .astra-social img {
    width: 15px;
    height: 15px;
  }

  .astra-copyright p {
    font-size: 11px;
  }
}

/* ===================================
   MOBILE MENU STYLES
   =================================== */

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #233745;
  padding: 80px 30px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

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



.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-links li {
  margin-bottom: 20px;
}

.mobile-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: #fff;
  padding-left: 10px;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.mobile-nav-button {
  display: inline-block;
  background: white;
  color: #00B050;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 30px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-button {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    padding: 0 2rem;
    margin-left: 0;
  }

  .hero-line {
    margin: 0 auto 1.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .btn, .btn-green, .btn-white {
    width: 100%;
    max-width: 300px;
  }

  .proyecto-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .proyecto-text {
    padding-left: 0;
    text-align: center;
  }

  .proyecto-text h3 {
    font-size: 2rem;
  }

  .proyecto-text p {
    font-size: 1.1rem;
  }

  .proyecto-image {
    transform: none;
  }

  .proyecto-image:hover {
    transform: none;
  }

  section {
    padding: 2rem 0.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .attributes {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .attribute {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .attribute p {
    max-width: 100%;
    padding: 0;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 20px;
    width: 100%;
    margin: 0;
    justify-content: center;
  }

  .gallery-item img {
    height: 200px;
  }

  .masterplan-iframe {
    width: 100%;
    height: 400px;
  }

  .grax_tm_title_holder h3 {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .grax_tm_button_masterplan a {
    padding: 8px 30px;
    font-size: 0.9rem;
  }

  .image_modal_content {
    max-width: 90%;
    max-height: 90%;
  }

  .close_image_button {
    top: -40px;
    right: -10px;
    width: 35px;
    height: 35px;
    font-size: 25px;
    line-height: 30px;
  }

  .video-container {
    padding: 1rem 0;
  }

  .modal-content {
    width: 100%;
    height: 100%;
  }

  .close-button {
    top: 10px;
    right: 10px;
  }


}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

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

  .section-title h2 {
    font-size: 1.8rem;
  }

  .proyecto-text h3 {
    font-size: 1.6rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.bg-light {
  background: #f8f9fa;
}

.bg-dark {
  background: #233745;
}

.text-primary {
  color: #00B050;
}

.text-secondary {
  color: #666;
}

.text-white {
  color: #fff;
}

.rounded {
  border-radius: 10px;
}

.shadow {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .whatsapp-chat,
  .nav-links {
    display: none;
  }

  header {
    position: static;
  }

  .hero {
    height: auto;
    min-height: 400px;
  }
} 