/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 8px;
}

.btn-call {
  background: #10b981;
  color: white;
}

.btn-call:hover {
  background: #059669;
  transform: translateY(-2px);
}

.btn-quote {
  background: #f59e0b;
  color: white;
}

.btn-quote:hover {
  background: #d97706;
}

.btn-service {
  background: #3b82f6;
  color: white;
  width: 100%;
}

.btn-service:hover {
  background: #2563eb;
}

.btn-cta {
  background: #f59e0b;
  color: white;
  font-size: 18px;
  padding: 16px 32px;
}

.btn-cta:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.btn-cta-white {
  background: white;
  color: #f59e0b;
  font-size: 18px;
  padding: 16px 32px;
}

.btn-cta-white:hover {
  background: #f9fafb;
  transform: translateY(-2px);
}

.btn-cta-orange {
  background: #f59e0b;
  color: white;
  font-size: 18px;
  padding: 16px 32px;
}

.btn-cta-orange:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.btn-phone {
  background: #10b981;
  color: white;
  font-size: 14px;
  padding: 8px 16px;
}

.btn-emergency {
  background: #ef4444;
  color: white;
  font-size: 14px;
  padding: 8px 16px;
}

.btn-footer {
  background: #f59e0b;
  color: white;
  font-size: 14px;
  padding: 8px 16px;
}

.btn-gallery {
  background: #f59e0b;
  color: white;
  font-size: 18px;
  padding: 16px 32px;
}

.btn-gallery:hover {
  background: #d97706;
}

.btn-license {
  background: #f59e0b;
  color: white;
  width: 100%;
  margin-top: 16px;
}

.btn-license:hover {
  background: #d97706;
}

.btn-process {
  background: #f59e0b;
  color: white;
  font-size: 18px;
  padding: 16px 32px;
}

.btn-process:hover {
  background: #d97706;
}

.btn-projects {
  background: #f59e0b;
  color: white;
  font-size: 18px;
  padding: 16px 32px;
}

.btn-projects:hover {
  background: #d97706;
}

.btn-areas {
  background: #f59e0b;
  color: white;
  font-size: 18px;
  padding: 16px 32px;
}

.btn-areas:hover {
  background: #d97706;
}

.btn-testimonials {
  background: #f59e0b;
  color: white;
  font-size: 18px;
  padding: 16px 32px;
}

.btn-testimonials:hover {
  background: #d97706;
}

.btn-faq {
  background: #f59e0b;
  color: white;
  font-size: 18px;
  padding: 16px 32px;
}

.btn-faq:hover {
  background: #d97706;
}

.btn-icon {
  font-size: 1.2em;
}

/* Message Container */
.message-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.message {
  padding: 16px 24px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.message.success {
  background: #10b981;
  color: white;
}

.message.error {
  background: #ef4444;
  color: white;
}

/* Header */
/*
.header {
  background: #1f2937;
  color: white;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}*/

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}
/*.logo-icon {
  font-size: 2.5rem;
  background: #f59e0b;
  padding: 8px;
  border-radius: 8px;
}
*/

.company-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.company-subtitle {
  font-size: 12px;
  color: #d1d5db;
  margin: 0;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f59e0b;
}

.language-switch {
  display: flex;
  background: #374151;
  border-radius: 8px;
  padding: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: #d1d5db;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: #f59e0b;
  color: white;
}

.desktop-contact {
  display: none;
  align-items: center;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.contact-icon {
  font-size: 1.2em;
}

.contact-email {
  display: none;
}


/* Menu movil original*/

/* Botón hamburguesa 
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 3px;
  background: white;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background: white;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Menú móvil 
.mobile-menu {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #374151;
}

.mobile-menu.active {
  display: block;
}

/* mobile navegacion*/
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.mobile-nav-link:hover {
  color: #f59e0b;
}

/* mobile switch de idioma */
.mobile-language-switch {
  display: flex;
  background: #374151;
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 16px;
}

.mobile-lang-btn {
  background: none;
  border: none;
  color: #d1d5db;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-lang-btn.active {
  background: #f59e0b;
  color: white;
}

/* mobile contact*/
.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #374151;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* Hero Section */
.hero {
  /* Fondo: degradado oscuro encima de la imagen */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
              url(../images/trabajos_pladur.jpg);
  
  /* Evitar repetición de la imagen */
  background-repeat: no-repeat;

  /* Hacer que la imagen cubra todo el contenedor */
  background-size: cover;

  /* Centrar la imagen */
  background-position: center;

  /* Opcional: fijar la imagen para efecto parallax suave */
  background-attachment: fixed;

  /* Color del texto */
  color: white;

  /* Espaciado interno */
  padding: 80px 0;

  /* Alinear texto al centro */
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-attention {
  font-size: 18px;
  color: #fbbf24;
  margin: 0;
}

.pulse {
  animation: pulse 2s infinite;
}

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

/* About Section */
.about {
  padding: 80px 0;
  background: #f9fafb;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1f2937;
}

.section-title-large {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  color: #1f2937;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: #6b7280;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle-large {
  font-size: 20px;
  text-align: center;
  color: #6b7280;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-description {
  font-size: 16px;
  text-align: center;
  color: #6b7280;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  text-align: center;
}

.about-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  background: #f59e0b;
  padding: 12px;
  border-radius: 12px;
  flex-shrink: 0;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
}

.quote-box {
  background: #f59e0b;
  color: white;
  padding: 24px;
  border-radius: 12px;
  margin-top: 32px;
}

.quote-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
}

.quote-signature {
  font-weight: 600;
  margin: 0;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-icon {
  font-size: 2.5rem;
  background: #f59e0b;
  padding: 12px;
  border-radius: 12px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.card-description {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 24px;
}

.service-features li {
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

.services-cta {
  text-align: center;
  margin-top: 64px;
}

.cta-box {
  background: #f59e0b;
  color: white;
  padding: 48px 32px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* CTA Sections */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-orange {
  background: #f59e0b;
  color: white;
}

.cta-dark {
  background: #1f2937;
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-actions {
  margin-bottom: 32px;
}

.cta-action {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cta-contact {
  font-size: 16px;
  opacity: 0.8;
}

.cta-conclusion {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.8;
}

/* Architecture Projects Section */
.architecture-projects {
  padding: 80px 0;
  background: #f9fafb;
}

.architecture-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.architecture-image {
  text-align: center;
}

.architecture-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.architecture-features {
  margin-bottom: 32px;
}

.features-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

.architecture-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Quality Control Section */
.quality-control {
  padding: 80px 0;
  background: white;
}

.quality-control-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.quality-control-image {
  text-align: center;
}

.quality-control-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-control-features {
  margin-bottom: 32px;
}

.quality-control-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Major Works License Section */
.major-works-license {
  padding: 80px 0;
  background: #f9fafb;
}

.major-works-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.major-works-image {
  text-align: center;
}

.major-works-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.major-works-features {
  margin-bottom: 32px;
}

.major-works-process {
  margin-bottom: 32px;
}

.process-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
}

.process-steps-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.step-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f59e0b;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.step-number-inline {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.step-text-inline {
  white-space: nowrap;
}

.major-works-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Minor Works License Section */
.minor-works-license {
  padding: 80px 0;
  background: white;
}

.minor-works-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.minor-works-image {
  text-align: center;
}

.minor-works-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.minor-works-features {
  margin-bottom: 32px;
}

.minor-works-advantages {
  margin-bottom: 32px;
}

.advantages-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f4f6;
  padding: 12px 16px;
  border-radius: 8px;
}

.advantage-icon {
  font-size: 1.5rem;
}

.advantage-text {
  font-weight: 500;
  color: #374151;
}

.minor-works-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Construction Phases Section */
.construction-phases {
  padding: 80px 0;
  background: #f9fafb;
}

.phases-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.phase-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.phase-number {
  background: #f59e0b;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.phase-content {
  flex: 1;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.phase-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.phase-description {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

.phase-tasks {
  list-style: none;
  padding: 0;
}

.phase-tasks li {
  color: #374151;
  margin-bottom: 6px;
  line-height: 1.5;
}

/* Choose Constructor Section */
.choose-constructor {
  padding: 80px 0;
  background: white;
}

.choose-constructor-content {
  margin-bottom: 48px;
}

.constructor-criteria {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 64px;
}

.criteria-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.criteria-icon {
  font-size: 3rem;
  background: #f59e0b;
  padding: 16px;
  border-radius: 16px;
  flex-shrink: 0;
}

.criteria-content {
  flex: 1;
}

.criteria-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.criteria-description {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

.criteria-checklist {
  list-style: none;
  padding: 0;
}

.criteria-checklist li {
  color: #10b981;
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 500;
}

.constructor-warning {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 12px;
  padding: 32px;
}

.warning-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #92400e;
}

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

.warning-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
}

.warning-icon {
  font-size: 1.2rem;
}

.warning-text {
  color: #92400e;
  font-weight: 500;
}

/* Construction Participants Section */
.construction-participants {
  padding: 80px 0;
  background: #f9fafb;
}

.participants-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.participant-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.participant-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.participant-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.participant-description {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.participant-responsibilities {
  list-style: none;
  padding: 0;
  text-align: left;
}

.participant-responsibilities li {
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

.participants-note {
  background: #dbeafe;
  border: 1px solid #3b82f6;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.note-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e40af;
}

.note-text {
  color: #1e40af;
  line-height: 1.6;
  margin: 0;
}

/* Change of Use Section */
.change-of-use {
  padding: 80px 0;
  background: white;
}

.change-of-use-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.change-of-use-image {
  text-align: center;
}

.change-of-use-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.change-of-use-requirements {
  margin-bottom: 32px;
}

.requirements-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.requirements-list {
  list-style: none;
  padding: 0;
}

.requirements-list li {
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

.change-of-use-process {
  margin-bottom: 32px;
}

.process-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

.timeline-horizontal {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-number {
  background: #f59e0b;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
}

.timeline-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1f2937;
}

.timeline-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.change-of-use-benefits {
  margin-bottom: 32px;
}

.benefits-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f4f6;
  padding: 12px 16px;
  border-radius: 8px;
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit-text {
  font-weight: 500;
  color: #374151;
}

.change-of-use-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Activity License Section */
.activity-license {
  padding: 80px 0;
  background: #f9fafb;
}

.activity-license-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.activity-license-image {
  text-align: center;
}

.activity-license-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.activity-types {
  margin-bottom: 32px;
}

.types-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

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

.type-category {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2937;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  color: #374151;
  margin-bottom: 6px;
  line-height: 1.4;
  font-size: 14px;
}

.activity-requirements {
  margin-bottom: 32px;
}

.activity-license-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* First Occupation License Section */
.first-occupation-license {
  padding: 80px 0;
  background: white;
}

.first-occupation-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.first-occupation-image {
  text-align: center;
}

.first-occupation-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.first-occupation-when {
  margin-bottom: 32px;
}

.when-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.when-list {
  list-style: none;
  padding: 0;
}

.when-list li {
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

.first-occupation-process {
  margin-bottom: 32px;
}

.process-steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-vertical {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-icon {
  background: #f59e0b;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1f2937;
}

.step-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.first-occupation-benefits {
  margin-bottom: 32px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.first-occupation-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Topographic Studies Section */
.topographic-studies {
  padding: 80px 0;
  background: #f9fafb;
}

.topographic-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.topographic-image {
  text-align: center;
}

.topographic-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.topographic-services {
  margin-bottom: 32px;
}

.services-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

.services-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-category {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-services {
  list-style: none;
  padding: 0;
}

.category-services li {
  color: #374151;
  margin-bottom: 6px;
  line-height: 1.4;
  font-size: 14px;
}

.topographic-technology {
  margin-bottom: 32px;
}

.technology-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

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

.tech-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tech-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.tech-content {
  flex: 1;
}

.tech-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1f2937;
}

.tech-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

.topographic-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Age Certificates Section */
.age-certificates {
  padding: 80px 0;
  background: white;
}

.age-certificates-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.age-certificates-image {
  text-align: center;
}

.age-certificates-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.age-certificates-when {
  margin-bottom: 32px;
}

.age-certificates-methodology {
  margin-bottom: 32px;
}

.methodology-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.method-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f9fafb;
  padding: 20px;
  border-radius: 8px;
}

.method-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.method-content {
  flex: 1;
}

.method-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.method-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.age-certificates-content-includes {
  margin-bottom: 32px;
}

.includes-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.includes-list {
  list-style: none;
  padding: 0;
}

.includes-list li {
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

.age-certificates-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Legalizations Section */
.legalizations {
  padding: 80px 0;
  background: #f9fafb;
}

.legalizations-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.legalizations-image {
  text-align: center;
}

.legalizations-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legalizations-types {
  margin-bottom: 32px;
}

.legalization-type {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}

.type-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2937;
}

.type-list {
  list-style: none;
  padding: 0;
}

.type-list li {
  color: #374151;
  margin-bottom: 6px;
  line-height: 1.4;
  font-size: 14px;
}

.legalizations-process {
  margin-bottom: 32px;
}

.legalization-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-marker {
  background: #f59e0b;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.legalizations-requirements {
  margin-bottom: 32px;
}

.legalizations-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* ITE Buildings Section */
.ite-buildings {
  padding: 80px 0;
  background: white;
}

.ite-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.ite-image {
  text-align: center;
}

.ite-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ite-when {
  margin-bottom: 32px;
}

.ite-inspection {
  margin-bottom: 32px;
}

.inspection-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

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

.inspection-category {
  background: #f9fafb;
  padding: 20px;
  border-radius: 8px;
}

.category-items {
  list-style: none;
  padding: 0;
}

.category-items li {
  color: #374151;
  margin-bottom: 6px;
  line-height: 1.4;
  font-size: 14px;
}

.ite-results {
  margin-bottom: 32px;
}

.results-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

.results-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-option {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
}

.result-option.favorable {
  background: #d1fae5;
  border: 1px solid #10b981;
}

.result-option.conditional {
  background: #fef3c7;
  border: 1px solid #f59e0b;
}

.result-option.unfavorable {
  background: #fee2e2;
  border: 1px solid #ef4444;
}

.result-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.result-content {
  flex: 1;
}

.result-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1f2937;
}

.result-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

.ite-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Work Direction Section */
.work-direction {
  padding: 80px 0;
  background: #f9fafb;
}

.work-direction-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.work-direction-image {
  text-align: center;
}

.work-direction-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.direction-types {
  margin-bottom: 32px;
}

.direction-roles {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.role-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.role-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.role-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.role-description {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

.role-responsibilities {
  list-style: none;
  padding: 0;
  text-align: left;
}

.role-responsibilities li {
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

.direction-functions {
  margin-bottom: 32px;
}

.functions-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

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

.function-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.function-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.function-content {
  flex: 1;
}

.function-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1f2937;
}

.function-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

.direction-benefits {
  margin-bottom: 32px;
}

.direction-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Project Manager Section */
.project-manager {
  padding: 80px 0;
  background: white;
}

.project-manager-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.project-manager-image {
  text-align: center;
}

.project-manager-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pm-functions {
  margin-bottom: 32px;
}

.pm-areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pm-area {
  background: #f9fafb;
  padding: 20px;
  border-radius: 8px;
}

.area-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2937;
}

.area-tasks {
  list-style: none;
  padding: 0;
}

.area-tasks li {
  color: #374151;
  margin-bottom: 6px;
  line-height: 1.4;
  font-size: 14px;
}

.pm-methodology {
  margin-bottom: 32px;
}

.methodology-phases {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phase-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #f9fafb;
  padding: 16px;
  border-radius: 8px;
}

.phase-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pm-benefits {
  margin-bottom: 32px;
}

.pm-conclusion {
  color: #6b7280;
  line-height: 1.6;
}

/* Home Reforms Section */
.home-reforms {
  padding: 80px 0;
  background: #f9fafb;
}

.reform-section {
  margin-bottom: 64px;
}

.reform-reverse {
  background: white;
  padding: 48px 0;
  border-radius: 16px;
  margin: 64px 0;
}

.reform-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.reform-image {
  text-align: center;
}

.reform-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reform-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 16px;
}

.reform-icon {
  font-size: 2rem;
  background: #f59e0b;
  padding: 12px;
  border-radius: 12px;
}

.reform-description {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 18px;
}

.reform-features {
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f4f6;
  padding: 12px 16px;
  border-radius: 8px;
}

.feature-check {
  color: #10b981;
  font-size: 1.2rem;
  font-weight: 700;
}

.property-types {
  margin-bottom: 64px;
}

.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}

.property-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.property-card.residential {
  border-top: 4px solid #10b981;
}

.property-card.commercial {
  border-top: 4px solid #3b82f6;
}

.property-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.property-icon {
  font-size: 2rem;
}

.property-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.property-list {
  list-style: none;
  padding: 0;
}

.property-list li {
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

.process-section {
  margin-bottom: 64px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
  background: #f59e0b;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  color: #374151;
  font-weight: 500;
  line-height: 1.5;
}

.quality-section {
  margin-bottom: 64px;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.quality-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quality-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.quality-text {
  color: #374151;
  font-weight: 500;
  line-height: 1.5;
}

/* Gallery Reforms Section */
.gallery-reforms {
  padding: 80px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.gallery-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-info {
  padding: 24px;
}

.gallery-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-icon {
  font-size: 1.2rem;
}

.gallery-description {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-tag {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.gallery-tag.orange {
  background: #f59e0b;
}

.gallery-tag.blue {
  background: #3b82f6;
}

.gallery-tag.purple {
  background: #8b5cf6;
}

.gallery-tag.green {
  background: #10b981;
}

.gallery-tag.indigo {
  background: #6366f1;
}

.gallery-tag.teal {
  background: #14b8a6;
}

.gallery-tag.yellow {
  background: #eab308;
}

.gallery-cta {
  text-align: center;
}

.gallery-cta-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1f2937;
}

/* Licenses Section */
.licenses {
  padding: 80px 0;
  background: #f9fafb;
}

.licenses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.license-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.license-card.minor {
  border-top: 4px solid #10b981;
}

.license-card.major {
  border-top: 4px solid #f59e0b;
}

.license-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
}

.license-info {
  flex: 1;
}

.license-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.license-description {
  color: #6b7280;
  line-height: 1.6;
}

.license-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.license-badge.minor {
  background: #10b981;
}

.license-badge.major {
  background: #f59e0b;
}

.license-content {
  margin-bottom: 24px;
}

.license-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.license-features li {
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

.license-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.detail-icon {
  font-size: 1.2rem;
}

.detail-text {
  color: #6b7280;
}

.license-process {
  background: white;
  padding: 48px 32px;
  border-radius: 16px;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #f9fafb;
  padding: 16px;
  border-radius: 8px;
}

.process-cta {
  text-align: center;
}

/* Projects Section */
.projects {
  padding: 80px 0;
  background: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.project-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.project-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 24px;
}

.project-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.project-description {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

.project-tag {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.project-tag.orange {
  background: #f59e0b;
}

.project-tag.green {
  background: #10b981;
}

.project-tag.blue {
  background: #3b82f6;
}

.projects-cta {
  text-align: center;
}

.projects-cta-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1f2937;
}

/* Work Areas Section */
.work-areas {
  padding: 80px 0;
  background: #f9fafb;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.area-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.area-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.area-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.area-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.areas-cta {
  text-align: center;
}

.areas-cta-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.areas-cta-text {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.testimonial-card {
  background: #f9fafb;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-text {
  color: #374151;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.author-name {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.author-project {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.testimonials-cta {
  text-align: center;
}

.testimonials-cta-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.testimonials-cta-text {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #f9fafb;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 64px;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #f59e0b;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: #6b7280;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-link {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
}

.faq-link:hover {
  text-decoration: underline;
}

.faq-cta {
  text-align: center;
}

.faq-cta-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.faq-cta-text {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.contact-form-container {
  background: #f9fafb;
  padding: 48px 32px;
  border-radius: 16px;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.form-description {
  color: #6b7280;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.form-label {
  font-weight: 600;
  color: #374151;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.captcha-group {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 20px;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-question-box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.captcha-equals {
  font-size: 18px;
  font-weight: 700;
  color: #92400e;
}

.captcha-input {
  width: 80px;
  text-align: center;
  font-weight: 700;
}

.btn-refresh-captcha {
  background: #f59e0b;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-refresh-captcha:hover {
  background: #d97706;
}

.btn-submit {
  background: #f59e0b;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.btn-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  margin: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: #f9fafb;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.info-icon {
  font-size: 1.5rem;
}

.info-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.info-content {
  color: #374151;
}

.info-address,
.info-city,
.info-phone,
.info-email {
  font-weight: 600;
  margin-bottom: 8px;
}

.info-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.schedule-item {
  margin-bottom: 4px;
}

.emergency-card {
  background: #fee2e2;
  border: 1px solid #ef4444;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.emergency-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #dc2626;
}

.emergency-text {
  color: #dc2626;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  font-size: 2rem;
  background: #f59e0b;
  padding: 8px;
  border-radius: 8px;
}

.footer-company-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-company-subtitle {
  font-size: 12px;
  color: #d1d5db;
  margin: 0;
}

.footer-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-buttons {
  display: flex;
  gap: 16px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #f59e0b;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  color: #d1d5db;
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 14px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #d1d5db;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 32px;
  text-align: center;
}

.copyright {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 8px;
}

.legal {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
  line-height: 1.5;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-title {
    font-size: 56px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .services-categories {
    grid-template-columns: 1fr 1fr;
  }

  .pm-areas {
    grid-template-columns: 1fr 1fr;
  }

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

  .direction-roles {
    flex-direction: row;
  }

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

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

  .desktop-contact {
    display: flex;
  }

  .contact-email {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .architecture-content {
    grid-template-columns: 1fr 1fr;
  }

  .quality-control-content {
    grid-template-columns: 1fr 1fr;
  }

  .major-works-content {
    grid-template-columns: 1fr 1fr;
  }

  .minor-works-content {
    grid-template-columns: 1fr 1fr;
  }

  .change-of-use-content {
    grid-template-columns: 1fr 1fr;
  }

  .activity-license-content {
    grid-template-columns: 1fr 1fr;
  }

  .first-occupation-content {
    grid-template-columns: 1fr 1fr;
  }

  .topographic-content {
    grid-template-columns: 1fr 1fr;
  }

  .age-certificates-content {
    grid-template-columns: 1fr 1fr;
  }

  .legalizations-content {
    grid-template-columns: 1fr 1fr;
  }

  .ite-content {
    grid-template-columns: 1fr 1fr;
  }

  .work-direction-content {
    grid-template-columns: 1fr 1fr;
  }

  .project-manager-content {
    grid-template-columns: 1fr 1fr;
  }

  .reform-content {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .process-steps-inline {
    flex-wrap: nowrap;
  }

  .step-text-inline {
    white-space: normal;
  }

  .timeline-horizontal {
    flex-direction: row;
    align-items: flex-start;
  }

  .timeline-step {
    flex-direction: column;
    text-align: center;
    flex: 1;
  }

  .timeline-number {
    margin-bottom: 12px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 64px;
  }

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

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

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

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

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

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

  .services-categories {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .pm-areas {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

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

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

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

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

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

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

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

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

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

/* Print Styles */
@media print {
  .header,
  .mobile-menu,
  .back-to-top,
  .btn,
  .contact-form {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section-title {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .section-subtitle {
    font-size: 14pt;
  }

  .cta-section {
    display: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .pulse {
    animation: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }

  .service-card,
  .testimonial-card,
  .project-item,
  .gallery-item {
    border: 2px solid #000;
  }
}

/* Focus Styles */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Error States */
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: #ef4444;
  font-size: 14px;
  margin-top: 4px;
}

/* Success States */
.form-input.success,
.form-select.success,
.form-textarea.success {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.success-message {
  color: #10b981;
  font-size: 14px;
  margin-top: 4px;
}

/* pop up cookies */
/* Overlay (fondo oscuro) */
.cookie-consent::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-consent.show::before {
    opacity: 1;
}

/* Contenedor principal del popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: calc(100vw - 40px); /* Máximo: ancho de pantalla menos 40px de margen */
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 16px;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-consent.show {
    display: block;
}

/* Contenido interno */
.cookie-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: left;
}

.cookie-icon {
    font-size: 2rem;
}

.cookie-text {
    flex: 1;
    min-width: 180px;
}

.cookie-text p {
    margin: 0 0 6px 0;
    color: #333;
    font-size: 0.95rem;
}

.cookie-link {
    color: #0056b3;
    text-decoration: underline;
    font-size: 0.85rem;
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

.btn-cookie-primary,
.btn-cookie-secondary {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-cookie-primary {
    background: #0056b3;
    color: white;
}

.btn-cookie-secondary {
    background: #e9e9e9;
    color: #333;
}

.btn-cookie-primary:hover {
    background: #003d82;
}

.btn-cookie-secondary:hover {
    background: #dcdcdc;
}

/* Animación */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsive: En pantallas pequeñas, más compacto */
@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent {
        width: 95%;
        max-width: calc(100vw - 20px);
        padding: 14px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: calc(20px + env(safe-area-inset-right)); /* Ajusta para iPhone/notch */
    background: #f59e0b;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 80px; /* 10px por encima del back-to-top */
    right: calc(20px + env(safe-area-inset-right));
    z-index: 1000;
}

.btn-floating {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #ff6b00; /* Naranja profesional */
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.btn-icon {
    line-height: 1;
}


/* === Header Móvil con botón centrado === */
.header {
    background: #111827;
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.2em;
}

.logo-icon {
    font-size: 2.5em;
    margin-right: 8px;
	background: #f59e0b;
    padding: 8px;
    border-radius: 8px;
}



/* === Botón hamburguesa (sin cuadradito, 3 líneas, centrado visualmente) === */
.mobile-menu-btn {
    display: none;
    background: transparent; /* 🔴 Fondo completamente transparente */
    border: none; /* 🔴 Sin borde */
    cursor: pointer;
    padding: 8px; /* Espacio interno reducido */
    margin-left: auto; /* Empuja el botón a la derecha */
    z-index: 1100;
    /* 🔴 Elimina cualquier efecto visual no deseado */
    outline: none;
    box-shadow: none;
}

/* Asegura que no haya resaltado en focus */
.mobile-menu-btn:focus {
    outline: none;
    border: none;
}

/* Mostrar solo en móviles */
@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: block; /* ✅ Ahora sí aparece en móviles */
    }

    .header .nav-menu {
        display: none;
    }
}


/* Icono hamburguesa con 3 líneas */
.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    background: white; /* Línea central */
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    left: 0;
}

.hamburger::before {
    top: -6px; /* Línea superior */
}

.hamburger::after {
    bottom: -6px; /* Línea inferior */
}

/* Cada línea del icono */
.hamburger::before,
.hamburger::middle,
.hamburger::after {
    content: '';
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Línea superior */
.hamburger::before {
    align-self: center;
}

/* Línea central */
.hamburger::middle {
    align-self: center;
}

/* Línea inferior */
.hamburger::after {
    align-self: center;
}

/* === Menú Móvil (contenedor principal) === */
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #111827;
    padding: 60px 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    z-index: 1050;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-menu.active {
    display: flex;
}

/* === Botón de cerrar (X) === */
.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.close-icon {
    width: 24px;
    height: 3px;
    background: white;
    position: relative;
    transform: rotate(45deg);
}

.close-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: white;
    transform: rotate(90deg);
    top: 0;
    left: 0;
}

/* === Enlaces del menú === */
.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    margin: 16px 0;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
    width: 80%;
    max-width: 300px;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* === Selector de idioma en menú === */
.mobile-menu .language-selector {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.mobile-menu .lang-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.mobile-menu .lang-btn.active {
    background: white;
    color: #111827;
}

/* === Mostrar menú móvil en dispositivos pequeños === */
@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: block;
    }

    .header .nav-menu {
        display: none;
    }
}

/* === Asegurar que no haya scroll horizontal === */
.mobile-menu {
    overflow-x: hidden;
}

/* Asegurar que el menú no cause scroll horizontal */
.mobile-menu {
    overflow-x: hidden;
    touch-action: pan-y;
}



