* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #ECEFEC;
  color: #4A5450;
}

.site-header {
  background-color: rgba(22, 42, 37, 0.82);
  padding: 18px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.main-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  min-width: 0;
}

.site-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.site-name {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.menu-toggle:hover,
.menu-toggle:focus {
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle-line {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active .menu-toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  padding: 6px 0;
  position: relative;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: #DDE7E2;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  opacity: 0;
  transform: scaleX(0.7);
  transform-origin: left;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (min-width: 901px) {
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .nav-top-row {
    flex: 0 1 auto;
  }

  .nav-links {
    margin-top: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 0;
  }

  .site-logo {
    width: 60px;
    height: 60px;
  }

  .site-name {
    font-size: 26px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
  position: absolute;
  top: calc(100% + 10px);
  left: 20px;
  right: 20px;
  display: none;
  margin-top: 0;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(18, 38, 33, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  width: 100%;
  font-size: 17px;
  padding: 12px 10px;
  border-radius: 10px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav-links a::after {
  display: none;
}
}

@media (max-width: 600px) {
  .main-nav {
    padding: 0 16px;
  }

  .nav-top-row {
    gap: 14px;
  }

  .site-brand {
    gap: 12px;
  }

  .site-logo {
    width: 52px;
    height: 52px;
  }

  .site-name {
    font-size: 20px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .nav-links {
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
  }

  .nav-links a {
    font-size: 16px;
  }
}

section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #1B2421;
}

p {
  font-size: 20px;
  margin-bottom: 20px;
}

footer {
  background-color: #162A25;
  color: white;
  padding: 30px 20px;
  margin-top: 60px;
}

footer p {
  max-width: 1200px;
  margin: 0 auto 10px auto;
  font-size: 16px;
}

a {
  color: #2D4D43;
}

.hero-buttons {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin-right: 15px;
  transition: 0.3s;
}
.home-hero {
  position: relative;
  max-width: 1200px;
  margin: 46px auto 36px;
  padding: 42px 20px 40px;
  border-radius: 28px;
  overflow: hidden;
  min-height: 620px;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/pagina-home.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.58) 38%,
    rgba(255, 255, 255, 0.34) 68%,
    rgba(255, 255, 255, 0.20) 100%
  );
  z-index: 1;
}

.home-hero-grid,
.home-hero-content,
.home-hero-side {
  position: relative;
  z-index: 2;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: stretch;
}

.home-hero-content {
  padding: 12px 0 10px;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid #D4DBD6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #738078;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: 62px;
  line-height: 1.02;
  color: #1B2421;
  letter-spacing: -1.3px;
}

.hero-text-wrap {
  max-width: 760px;
}

.hero-text-wrap p {
  font-size: 20px;
  line-height: 1.75;
  color: #4A5450;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 0;
}

.hero-buttons .btn {
  margin-right: 0;
}

.home-hero-side {
  display: flex;
}

.hero-highlight-card {
  width: 100%;
  padding: 28px 28px 26px;
  border: 1px solid rgba(212, 219, 214, 0.9);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 248, 245, 0.96) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-self: stretch;
}

.hero-card-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #738078;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.hero-highlight-card h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.12;
  color: #1B2421;
}

.hero-highlight-card p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #4A5450;
}

@media (max-width: 1100px) {
  .home-hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 900px) {
  .home-hero {
    margin: 28px auto 28px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-hero-content {
    padding: 0;
  }

  .home-hero h1 {
    font-size: 44px;
    line-height: 1.06;
    letter-spacing: -0.8px;
  }

  .hero-text-wrap p {
    font-size: 18px;
    line-height: 1.7;
  }

  .hero-highlight-card h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .home-hero {
    padding: 28px 16px;
    margin: 22px auto 24px;
    border-radius: 22px;
    background-position: center;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    padding: 7px 12px;
  }

  .home-hero h1 {
    font-size: 36px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero-text-wrap p {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-highlight-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .hero-highlight-card h2 {
    font-size: 26px;
  }

  .hero-highlight-card p {
    font-size: 15px;
  }
}

.btn-primary {
  background-color: #28483E;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #223D35;
}

.btn-secondary {
  background-color: #ffffff;
  color: #2D4D43;
  border: 2px solid #2D4D43;
}

.btn-secondary:hover {
  background-color: #E8ECE7;
}

.services-preview {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.services-preview h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #1B2421;
}

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

.service-card {
  perspective: 1000px;
  height: 220px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1A2F29;
}

.service-card p {
  font-size: 17px;
  margin-bottom: 0;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  overflow: hidden;
}

.service-card-front {
  border: 1px solid #D4DBD6;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-card-front img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-front-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
}

.service-card-front h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 12px 18px;
  max-width: 85%;
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.service-card-back {
  background: #243F37;
  color: #ffffff;
  transform: rotateY(180deg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.service-card-back p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.why-us {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.why-us h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #1B2421;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-card {
  background-color: #ffffff;
  padding: 25px;
  border-left: 5px solid #2D4D43;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #1A2F29;
}

.why-card p {
  font-size: 17px;
  margin-bottom: 0;
}

.coverage-offer {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.coverage-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.coverage-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.coverage-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1B2421;
}

.coverage-box p {
  font-size: 18px;
  margin-bottom: 18px;
}

.offer-list {
  padding-left: 20px;
  margin-bottom: 25px;
}

.offer-list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.offer-buttons {
  margin-top: 20px;
}

.page-hero,
.about-description,
.about-experience,
.about-gallery-placeholder {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-hero h1,
.about-description h2,
.about-experience h2,
.about-gallery-placeholder h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1B2421;
}

.page-hero p,
.about-description p,
.about-experience p,
.about-gallery-placeholder p {
  font-size: 18px;
  margin-bottom: 18px;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.experience-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.experience-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1A2F29;
}

.experience-item p {
  font-size: 17px;
  margin-bottom: 0;
}

.gallery-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.gallery-box {
  background-color: #E8ECE7;
  min-height: 220px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #46504B;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 20px;
}

.about-equipment {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-equipment h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1B2421;
}

.about-equipment p {
  font-size: 18px;
  margin-bottom: 18px;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.equipment-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.equipment-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1A2F29;
}

.equipment-item p {
  font-size: 17px;
  margin-bottom: 0;
}

.services-categories,
.service-list-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-intro,
.service-cta {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.service-intro h2,
.service-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1B2421;
}

.service-intro p,
.service-cta p {
  font-size: 18px;
  margin-bottom: 18px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.service-detail-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-detail-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1A2F29;
}

.service-detail-card p {
  font-size: 17px;
  margin-bottom: 0;
}

.blog-intro,
.qa-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-intro h2,
.qa-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1B2421;
}

.blog-intro p {
  font-size: 18px;
  margin-bottom: 18px;
}

.qa-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.qa-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.qa-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1A2F29;
}

.qa-item p {
  font-size: 17px;
  margin-bottom: 0;
}

.contact-section,
.contact-info {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.contact-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-card h2,
.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1B2421;
}

.contact-card p,
.contact-info p {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-list {
  padding-left: 20px;
}

.contact-list li {
  font-size: 17px;
  margin-bottom: 10px;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-btn {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.whatsapp-btn {
  background-color: #25D366;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.phone-btn {
  background-color: #2D4D43;
}

.phone-btn:hover {
  background-color: #243F37;
}

.floating-svg {
  width: 28px;
  height: 28px;
  display: block;
}

.footer-social {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.12);
  color: white;
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.services-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 32px auto 50px;
  max-width: 1200px;
  min-height: 330px;
  background: linear-gradient(135deg, #1A2F29 0%, #243F37 55%, #2D4D43 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.services-slider-window {
  overflow: hidden;
  width: 100%;
  min-height: 330px;
}

.services-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

.service-slide {
  width: 100%;
  flex: 0 0 100%;
  min-height: 320px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  box-sizing: border-box;
  overflow: hidden;
}

.service-slide-content {
  position: relative;
  z-index: 3;
  padding: 26px 30px 52px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.service-slide-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.service-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.service-slide-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 47, 41, 0.88) 0%,
    rgba(26, 47, 41, 0.60) 18%,
    rgba(26, 47, 41, 0.24) 36%,
    rgba(26, 47, 41, 0.00) 56%
  );
  z-index: 2;
  pointer-events: none;
}

.slide-badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.service-slide h1,
.service-slide h2 {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.1;
  color: #ffffff;
}

.service-slide p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 760px;
}

.slide-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.slider-dots {
  position: absolute;
  left: 52px;
  bottom: 22px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.slider-dot.active {
  background: #ffffff;
  transform: scale(1.15);
}

@media (max-width: 992px) {
  .services-slider {
    min-height: 470px;
    margin: 30px 20px 50px;
  }

  .services-slider-window {
    min-height: 470px;
  }

  .service-slide {
    min-height: 470px;
    grid-template-columns: 1fr;
  }

  .service-slide-content {
    padding: 30px 24px 68px;
    order: 2;
  }

	.service-slide-media {
	  min-height: 220px;
	  order: 1;
	  margin-left: 0;
	}

  .service-slide-media img {
    width: 100%;
    margin-left: 0;
    object-position: center center;
  }

  .service-slide-media::before {
    background: linear-gradient(
      180deg,
      rgba(26, 47, 41, 0.14) 0%,
      rgba(26, 47, 41, 0.34) 100%
    );
  }

  .service-slide h1,
  .service-slide h2 {
    font-size: 34px;
  }

  .service-slide p {
    font-size: 16px;
  }

  .slider-dots {
    left: 24px;
  }
}

@media (max-width: 600px) {
  .services-slider {
    min-height: 500px;
    border-radius: 18px;
  }

  .services-slider-window {
    min-height: 500px;
  }

  .service-slide {
    min-height: 500px;
  }

  .service-slide-content {
    padding: 24px 18px 64px;
  }

  .service-slide-media {
    min-height: 190px;
    margin-left: 0;
  }

  .service-slide-media img {
    width: 100%;
    margin-left: 0;
  }

  .service-slide h1,
  .service-slide h2 {
    font-size: 28px;
  }

  .service-slide p {
    font-size: 15px;
    line-height: 1.65;
  }

  .slide-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .slider-dots {
    left: 18px;
    bottom: 18px;
  }
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #7E8A80;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: 40px;
  color: #1B2421;
}

.section-heading p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #46504B;
}

.services-categories {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.services-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-category-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.category-icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.services-category-card h3 {
  margin: 0 0 16px;
  font-size: 28px;
  color: #1B2421;
}

.services-category-card p {
  margin: 0 0 24px;
  line-height: 1.8;
  color: #46504B;
  font-size: 17px;
}

.services-final-cta {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.services-final-cta-content {
  background: #F6F8F5;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
}

.services-final-cta-content h2 {
  margin: 0 0 16px;
  font-size: 38px;
  color: #1B2421;
}

.services-final-cta-content p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #46504B;
}

.services-final-cta .slide-buttons {
  justify-content: center;
}

@media (max-width: 992px) {
  .services-category-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .services-final-cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .section-heading h2 {
    font-size: 28px;
  }

  .services-category-card {
    padding: 26px 22px;
  }

  .services-category-card h3 {
    font-size: 24px;
  }

  .services-final-cta-content {
    padding: 36px 22px;
  }

  .services-final-cta-content h2 {
    font-size: 28px;
  }

  .services-final-cta-content p {
    font-size: 16px;
  }
}


.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.gallery-modal.active {
  display: block;
}

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.gallery-modal-content {
  position: relative;
  width: min(1000px, calc(100% - 40px));
  max-height: calc(100vh - 60px);
  margin: 30px auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 28px 24px;
  overflow-y: auto;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #F0F3EF;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal-content h2 {
  margin: 0 0 24px;
  font-size: 32px;
  color: #1B2421;
}

.gallery-modal-body {
  min-height: 220px;
}

.gallery-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 2px dashed #D4DBD6;
  border-radius: 16px;
  background: #F6F8F5;
  padding: 24px;
  text-align: center;
}

.gallery-empty-state p {
  margin: 0;
  font-size: 18px;
  color: #46504B;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid-item {
  background: #F6F8F5;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid-item-placeholder {
  color: #6A726D;
  font-size: 15px;
  padding: 20px;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .gallery-modal-content {
    width: calc(100% - 24px);
    margin: 12px auto;
    padding: 22px 18px 18px;
    max-height: calc(100vh - 24px);
  }

  .gallery-modal-content h2 {
    font-size: 26px;
    padding-right: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.faq-question-title {
  margin: 0;
}

.faq-question-title a {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2a27;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.faq-question-title a:hover {
  color: #6f7f6d;
  transform: translateX(4px);
}