@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,600;9..40,800&display=swap');



:root {

  --primary: #0ea5e9;

  --primary-glow: rgb(255, 140, 0);

  --accent: #f59e0b;

  --bg-dark: #ffffff;

  --bg-darker: #ffffff;

  --text-light: #ffffff;

  --text-muted: #94a3b8;

  --text-dark: #000000;

}



* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: 'DM Sans', sans-serif;

  background-color: var(--bg-darker);

  background-image: linear-gradient(rgba(79, 138, 255, 0.88), rgba(34, 0, 255, 0.925)),

    url('https://images.unsplash.com/photo-1600164318854-471e98d9ab6a?auto=format&fit=crop&q=80&w=2000');

  background-size: cover;

  background-attachment: fixed;

  background-position: center;

  color: var(--text-light);

  line-height: 1.6;

  overflow-x: hidden;

  padding-top: 120px;

}



/* ══════════════════════════════════════════════

   HEADER & NAVBAR

══════════════════════════════════════════════ */



.navbar-brand img {

  transition: transform 0.3s ease;

}

.navbar-brand:hover img {

  transform: scale(1.1);

}



.container {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 1.5rem;

  width: 100%;

}



.main-header {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 1000;

  background: rgba(2, 6, 23, 0.95);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid transparent;

}



.top-header {

  background: var(--primary);

  color: #fff;

  font-size: 0.85rem;

  padding: 0.5rem 0;

  font-weight: 600;

}



.top-header .container {

  display: flex;

  justify-content: space-between;

  align-items: center;

}



.navbar-content {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0.5rem 0;

}



.logo a {

  text-decoration: none;

  display: flex;

  align-items: center;

  gap: 10px;

}



.logo-text {

  display: flex;

  flex-direction: column;

}



.brand-name {

  color: #fff;

  font-weight: 800;

  font-size: 1.5rem;

  line-height: 1;

  letter-spacing: 1px;

}



.brand-sub {

  color: var(--primary);

  font-weight: 600;

  font-size: 0.9rem;

}



.nav-menu {

  display: flex;

  list-style: none;

  gap: 2rem;

  align-items: center;

}



.nav-menu a {

  color: var(--text-light);

  text-decoration: none;

  font-weight: 600;

  transition: color 0.3s ease;

  font-size: 1rem;

}



.nav-menu a:hover,
.nav-menu a.active {

  color: var(--primary) !important;

  text-decoration: underline !important;

}



.urgencia-link {

  color: var(--accent) !important;

}



.btn-call {

  background: var(--accent);

  color: #fff;

  text-decoration: none;

  padding: 0.75rem 1.5rem;

  border-radius: 50px;

  font-weight: 800;

  font-size: 1.1rem;

  transition: all 0.3s ease;

  display: flex;

  align-items: center;

  gap: 0.5rem;

  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);

  white-space: nowrap;

}



.btn-call:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);

  background: #d97706;

}



/* ── Hamburger ── */

.mobile-menu-icon {

  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

  padding: 4px;

  z-index: 1100;

}



.mobile-menu-icon span {

  width: 25px;

  height: 3px;

  background: var(--text-light);

  border-radius: 3px;

  transition: all 0.3s ease;

  display: block;

}



/* Hamburger → X animation */

.mobile-menu-icon.active span:nth-child(1) {

  transform: translateY(8px) rotate(45deg);

}

.mobile-menu-icon.active span:nth-child(2) {

  opacity: 0;

  transform: scaleX(0);

}

.mobile-menu-icon.active span:nth-child(3) {

  transform: translateY(-8px) rotate(-45deg);

}



/* ══════════════════════════════════════════════

   FOOTER

══════════════════════════════════════════════ */



.footer {

  background: #0f172a;

  padding: 4rem 0 0 0;

  margin-top: 4rem;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

}



.footer-container {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 1.5rem;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 3rem;

  margin-bottom: 3rem;

}



.footer-title {

  color: #fff;

  font-size: 1.25rem;

  margin-bottom: 1.5rem;

  font-weight: 800;

}



.footer-description {

  color: var(--text-muted);

  margin-bottom: 1.5rem;

}



.footer-contact,

.footer-links {

  list-style: none;

}



.footer-contact li {

  color: var(--text-muted);

  margin-bottom: 1rem;

}



.footer-contact li strong {

  color: #fff;

}



.footer-contact a {

  color: var(--primary);

  text-decoration: none;

}



.footer-links li {

  margin-bottom: 0.75rem;

}



.footer-links a {

  color: var(--text-muted);

  text-decoration: none;

  transition: color 0.3s;

}



.footer-links a:hover {

  color: var(--primary);

}



.btn-location {

  display: inline-block;

  padding: 0.8rem 1.5rem;

  background: var(--primary);

  color: #fff !important;

  text-decoration: none;

  border-radius: 50px;

  transition: all 0.3s;

  margin-top: 0.5rem;

  font-weight: 600;

  border: 1px solid var(--primary);

  text-align: center;

}



.btn-location:hover {

  background: #0284c7;

  transform: translateY(-2px);

  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);

}



.footer-bottom {

  background: #020617;

  padding: 1.5rem;

  text-align: center;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 1rem;

  border-top: 1px solid rgba(255, 255, 255, 0.02);

}



.footer-bottom p {

  color: var(--text-muted);

}



.legal-links a {

  color: var(--text-muted);

  text-decoration: none;

  margin: 0 0.5rem;

  font-size: 0.9rem;

}



.legal-links a:hover {

  color: var(--primary);

}



/* ══════════════════════════════════════════════

   HERO SECTION

══════════════════════════════════════════════ */



.hero-section {

  padding: 6rem 0;

  background: transparent;

  position: relative;

  overflow: hidden;

}



.hero-container {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 4rem;

}



.hero-content {

  flex: 1;

  max-width: 600px;

}



.badge-reviews {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  background: rgba(245, 158, 11, 0.1);

  padding: 0.5rem 1rem;

  border-radius: 50px;

  margin-bottom: 1.5rem;

  border: 1px solid rgba(245, 158, 11, 0.3);

}



.stars {

  color: var(--accent);

  font-size: 1.2rem;

  letter-spacing: 2px;

}



.reviews-text {

  font-weight: 600;

  color: var(--text-light);

  font-size: 0.9rem;

}



.hero-content h1 {

  font-size: 3.5rem;

  font-weight: 800;

  line-height: 1.1;

  margin-bottom: 1.5rem;

  color: var(--text-light);

}



.hero-content h1 span.legacy-span {

  color: var(--primary);

  position: relative;

  display: inline-block;

}



.hero-content h1 span.legacy-span::after {

  content: "";

  position: absolute;

  width: 100%;

  height: 8px;

  background: var(--primary-glow);

  bottom: 8px;

  left: 0;

  z-index: -1;

  border-radius: 4px;

}



.hero-subtitle {

  font-size: 1.2rem;

  color: #ffffff;

  margin-bottom: 2.5rem;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}



.hero-buttons {

  display: flex;

  gap: 1rem;

  flex-wrap: wrap;

}



.btn-primary {

  background: var(--primary);

  color: #fff;

  padding: 1rem 2rem;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  font-size: 1.1rem;

  transition: all 0.3s ease;

  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);

}



.btn-primary:hover {

  transform: translateY(-3px);

  box-shadow: 0 15px 25px rgba(14, 165, 233, 0.4);

}



.btn-secondary {

  background: transparent;

  color: var(--text-light);

  padding: 1rem 2rem;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  font-size: 1.1rem;

  border: 2px solid var(--text-light);

  transition: all 0.3s ease;

}



.btn-secondary:hover {

  background: #000;

  color: #fff;

}



.hero-image {

  flex: 1;

  position: relative;

  min-height: 400px;

  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);

  display: flex;

  justify-content: center;

  align-items: center;

}



.image-wrapper {

  position: relative;

  width: 300px;

  height: 300px;

  background: transparent;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 5rem;

}



.image-wrapper::before {

  display: none;

}



.floating-card {

  position: absolute;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(12px);

  padding: 1rem 1.5rem;

  border-radius: 16px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

  display: flex;

  align-items: center;

  gap: 1rem;

  bottom: 20px;

  left: -40px;

  animation: float 4s ease-in-out infinite;

  border: 1px solid rgba(255, 255, 255, 0.3);

}



.floating-card .icon {

  background: rgba(245, 158, 11, 0.1);

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  font-size: 1.2rem;

  flex-shrink: 0;

}



.floating-card .text {

  display: flex;

  flex-direction: column;

}



.floating-card strong {

  color: #ffffff;

  font-size: 1.1rem;

  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);

}



.floating-card span {

  color: rgba(255, 255, 255, 0.9);

  font-size: 0.85rem;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}



@keyframes float {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }

}



/* ══════════════════════════════════════════════

   URGENCY BANNER

══════════════════════════════════════════════ */



.urgency-section {

  padding: 2rem 0;

}



.urgency-banner {

  background: linear-gradient(135deg, #f59e0b, #ea580c);

  border-radius: 24px;

  padding: 3rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  color: #fff;

  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);

  gap: 2rem;

}



.urgency-text h2 {

  font-size: 2rem;

  font-weight: 800;

  margin-bottom: 0.5rem;

}



.urgency-text p {

  font-size: 1.1rem;

  opacity: 0.9;

}



.btn-urgent {

  background: #fff;

  color: #ea580c;

  padding: 1rem 2rem;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 800;

  font-size: 1.1rem;

  transition: all 0.3s ease;

  white-space: nowrap;

  flex-shrink: 0;

}



.btn-urgent:hover {

  transform: scale(1.05);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

}



/* ══════════════════════════════════════════════

   SERVICES

══════════════════════════════════════════════ */



.services-section {

  padding: 6rem 0;

  background: transparent;

}



.section-header {

  text-align: center;

  margin-bottom: 4rem;

}



.section-header h2 {

  font-size: 2.5rem;

  font-weight: 800;

  color: var(--text-light);

  margin-bottom: 1rem;

}



.section-header p {

  color: #555;

  font-size: 1.1rem;

}



.services-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

}



.service-card {

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(15px);

  padding: 2.5rem 2rem;

  border-radius: 20px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;

  border: 1px solid rgba(255, 255, 255, 0.2);

  text-align: center;

}



.service-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);

  border-color: rgba(255, 255, 255, 0.5);

}



.service-icon {

  width: 70px;

  height: 70px;

  background: rgba(14, 165, 233, 0.1);

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 2rem;

  margin: 0 auto 1.5rem;

  color: var(--primary);

  transition: transform 0.3s ease;

}



.service-card:hover .service-icon {

  transform: scale(1.1);

  background: var(--primary);

  color: #fff;

}



.service-card h3 {

  font-size: 1.3rem;

  font-weight: 700;

  margin-bottom: 1rem;

  color: var(--text-light);

}



.service-card p {

  color: rgba(255, 255, 255, 0.9);

  line-height: 1.6;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}



/* ══════════════════════════════════════════════

   SERVICE DETAIL SECTIONS  (id-container)

══════════════════════════════════════════════ */



section {

  width: 100%;

  max-width: 1200px;

  margin: 20px auto;

  padding: 20px;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* ⚠ Removed global display:flex — it broke inner layouts on mobile */

}



section img {

  max-width: 100%;

  height: auto;

  border-radius: 12px;

  object-fit: cover;

}



.info-link {

  color: #4A90E2;

  text-decoration: none;

  font-weight: bold;

}



.info-link:hover {

  text-decoration: underline;

}



.id-container {

  max-width: 1000px;

  margin: 0 auto;

  padding: 40px 20px;

}



.id-container section {

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 12px;

  padding: 3rem 4rem;
  /* was 70px — too wide for tablet */

  margin-bottom: 50px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  overflow: hidden;

}



.id-container section:hover {

  transform: translateY(-5px);

  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);

}



.id-container section::after {

  content: "";

  display: table;

  clear: both;

}



.id-container h2 {

  color: #ffffff;

  font-size: 1.6rem;

  margin-bottom: 15px;

  font-weight: 600;

  margin-top: 30px;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}



.id-container p {

  color: rgba(255, 255, 255, 0.9);

  line-height: 1.8;

  margin-bottom: 10px;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}



.id-container p strong {

  color: #ffffff;

}



/* ══════════════════════════════════════════════

   SERVICE GALLERY ACCORDION

══════════════════════════════════════════════ */



.service-gallery {

  margin-top: 1.5rem;

  width: 100%;

}



.service-gallery summary {

  cursor: pointer;

  padding: 0.8rem 1.2rem;

  background-color: var(--primary);

  color: white;

  border-radius: 8px;

  font-weight: 600;

  display: inline-block;

  list-style: none;

  transition: background-color 0.3s ease;

  outline: none;

}



.service-gallery summary::-webkit-details-marker {
  display: none;
}

.service-gallery summary::after {
  content: " ▼";
  font-size: 0.8em;
  margin-left: 5px;
}

.service-gallery[open] summary::after {
  content: " ▲";
}



.service-gallery summary:hover {

  background-color: #0284c7;

}



.gallery-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

  gap: 1.5rem;

  margin-top: 1.5rem;

  padding: 1.5rem;

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.2);

}



section .gallery-grid img {

  width: 100% !important;

  height: 200px !important;

  border-radius: 8px !important;

  object-fit: cover !important;

  border: none !important;

  background: none !important;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;

  transition: transform 0.3s ease !important;

}



section .gallery-grid img:hover {

  transform: scale(1.05) !important;

}



/* ══════════════════════════════════════════════

   BLOG

══════════════════════════════════════════════ */



.blog-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 2rem;

  margin-bottom: 3rem;

}



.blog-card {

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;

  flex-direction: column;

}



.blog-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);

  border-color: rgba(255, 255, 255, 0.6);

}



.blog-image {

  width: 100%;

  height: 220px;

  overflow: hidden;

}




/* ══════════════════════════════════════════════
   TRUST SECTION
══════════════════════════════════════════════ */

.trust-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.trust-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-card-item {
  margin-bottom: 1.5rem;
}

.trust-card-item:last-child {
  margin-bottom: 0;
}

.trust-card-item h4 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.trust-card-item p {
  color: #fff;
}

.trust-image-wrapper {
  position: relative;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.trust-image-wrapper img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}





.blog-card:hover .blog-image img {

  transform: scale(1.05);

}



.blog-content {

  padding: 1.5rem;

  display: flex;

  flex-direction: column;

  flex: 1;

}



.blog-category {

  display: inline-block;

  background-color: var(--primary);

  color: white;

  padding: 0.3rem 0.8rem;

  border-radius: 20px;

  font-size: 0.8rem;

  font-weight: 600;

  margin-bottom: 1rem;

  align-self: flex-start;

  text-transform: uppercase;

  letter-spacing: 0.5px;

}



.blog-content h3 {

  color: #ffffff;

  font-size: 1.4rem;

  margin-bottom: 1rem;

  line-height: 1.3;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}



.blog-content p {

  color: #ffffff;

  font-size: 0.95rem;

  line-height: 1.6;

  margin-bottom: 1.5rem;

  flex: 1;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}



.btn-read-more {

  color: var(--accent);

  font-weight: bold;

  text-decoration: none;

  display: flex;

  align-items: center;

  transition: color 0.3s ease;

}



.btn-read-more:hover {

  color: #ffffff;

}



/* ── Blog Post ── */



.blog-post-header {

  text-align: center;

  padding: 4rem 20px 2rem;

  max-width: 900px;

  margin: 0 auto;

}



.location-img-container {

  width: 100%;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 12px;

  margin-bottom: 1.5rem;

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

}



.location-img-container img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;

}



.service-card:hover .location-img-container img {

  transform: scale(1.1);

}



.blog-post-meta {

  color: rgba(255, 255, 255, 0.9);

  font-size: 1rem;

  margin-top: 1.5rem;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

  display: flex;

  justify-content: center;

  gap: 1.5rem;

  flex-wrap: wrap;

}



.blog-post-cover {

  width: 100%;

  max-width: 1000px;

  height: 450px;

  margin: 0 auto 3rem;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);

  border: 1px solid rgba(255, 255, 255, 0.3);

}



.blog-post-cover img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.blog-post-content {

  max-width: 800px;

  margin: 0 auto 5rem;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);

  padding: 4rem;

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  color: #ffffff;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);

  line-height: 1.8;

  font-size: 1.15rem;

}



.blog-post-content h2 {
  font-size: 2.2rem;
  margin: 3rem 0 1.5rem;
  color: #ffffff;
}

.blog-post-content h3 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: #ffffff;
}



.blog-post-content ul,

.blog-post-content ol {

  margin: 2rem 0;

  padding-left: 2rem;

}



.blog-post-content li {
  margin-bottom: 1rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}



.back-to-blog {

  display: inline-flex;

  align-items: center;

  margin-bottom: 2rem;

  color: #ffffff;

  text-decoration: none;

  font-weight: bold;

  padding: 0.8rem 1.2rem;

  text-align: center;

  background: rgba(255, 255, 255, 0.2);

  border-radius: 50px;

  transition: all 0.3s ease;

  backdrop-filter: blur(5px);

  border: 1px solid rgba(255, 255, 255, 0.2);

}



.back-to-blog:hover {

  background: rgba(255, 255, 255, 0.3);

  transform: translateX(-5px);

}



/* ══════════════════════════════════════════════

   FAQ

══════════════════════════════════════════════ */



.faq-container {

  display: flex;

  flex-direction: column;

  gap: 1.2rem;

}



.faq-item {

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;

}



.faq-item:hover {

  background: rgba(255, 255, 255, 0.2);

  border-color: rgba(255, 255, 255, 0.5);

  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);

}



.faq-item summary {

  padding: 1.5rem 2rem;

  font-size: 1.15rem;

  font-weight: 600;

  color: #ffffff;

  cursor: pointer;

  list-style: none;

  display: flex;

  justify-content: space-between;

  align-items: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

  transition: background 0.3s ease;

}



.faq-item summary::-webkit-details-marker {
  display: none;
}



.faq-item summary::after {

  content: "+";

  font-size: 1.8rem;

  color: var(--accent);

  transition: transform 0.3s ease;

  font-weight: 400;

  flex-shrink: 0;

  margin-left: 1rem;

}



.faq-item[open] summary::after {

  content: "−";

  transform: none;

}



.faq-item[open] summary {

  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}



.faq-content {

  padding: 1.5rem 2rem;

  color: #ffffff;

  line-height: 1.7;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

  font-size: 1.05rem;

  animation: slideDown 0.3s ease-in-out;

}



@keyframes slideDown {

  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}



/* ══════════════════════════════════════════════

   DROPDOWN

══════════════════════════════════════════════ */



.nav-menu li.dropdown {

  position: relative;

}



.dropdown-menu {

  position: absolute;

  top: 100%;

  left: 50%;

  transform: translateX(-50%) translateY(10px);

  background: rgba(15, 23, 42, 0.95);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 15px;

  min-width: 280px;

  padding: 0.5rem 0;

  opacity: 0;

  visibility: hidden;

  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

  z-index: 1001;

  max-height: 400px;

  overflow-y: auto;

}



.nav-menu li.dropdown:hover .dropdown-menu {

  opacity: 1;

  visibility: visible;

  transform: translateX(-50%) translateY(0);

}



.dropdown-menu li {

  width: 100%;

  list-style: none;

}



.dropdown-menu li a {

  padding: 0.8rem 1.2rem;

  display: block;

  color: rgba(255, 255, 255, 0.8) !important;

  font-size: 0.95rem;

  font-weight: 500;

  transition: all 0.2s ease;

  text-align: center;

}



.dropdown-menu li a:hover {

  background: rgba(14, 165, 233, 0.1);

  color: var(--primary) !important;

}



.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}



.dropdown-menu li:not(:last-child) {

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}



/* ══════════════════════════════════════════════

   CENTERED SERVICE PAGES

══════════════════════════════════════════════ */



.service-details-extra,

main.container section {

  text-align: center !important;

}



.service-details-extra p,

main.container section p {

  text-align: center !important;

  margin-left: auto !important;

  margin-right: auto !important;

}



.service-details-extra ul,

main.container section ul {

  display: inline-block;

  text-align: left;

  margin: 0 auto;

}



/* ══════════════════════════════════════════════

   RESPONSIVE — TABLET  (≤ 992px)

══════════════════════════════════════════════ */



@media (max-width: 992px) {

  body {

    padding-top: 90px;

  }



  /* Hide desktop nav, show hamburger */

  .nav-menu {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100vh;

    background: rgba(2, 6, 23, 0.98);

    backdrop-filter: blur(20px);

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 2rem;

    z-index: 999;

    padding: 2rem;

  }



  /* JS adds .open class on the ul to show it */

  .nav-menu.open {

    display: flex;

  }



  .nav-menu a {

    font-size: 1.3rem;

  }



  /* Show hamburger icon */

  .mobile-menu-icon {

    display: flex;

    position: relative;

    z-index: 1100;

  }



  /* Show call button inside mobile menu instead */

  .btn-call {

    display: none;

  }



  .nav-menu .btn-call-mobile {

    display: flex;

  }



  .top-header .container {

    flex-direction: column;

    gap: 0.2rem;

    text-align: center;

  }



  /* Dropdown becomes static inside mobile menu */

  .dropdown-menu {

    position: static;

    transform: none;

    opacity: 1;

    visibility: visible;

    box-shadow: none;

    background: rgba(255, 255, 255, 0.05);

    border-radius: 10px;

    min-width: unset;

    width: 100%;

    max-height: none;

    transition: none;

    padding: 0.25rem 0;

    display: none;

  }



  .nav-menu li.dropdown.open .dropdown-menu {

    display: block;

  }

}



/* ══════════════════════════════════════════════

   RESPONSIVE — MOBILE  (≤ 768px)

══════════════════════════════════════════════ */



@media (max-width: 768px) {

  /* 1. Evita que las secciones con margen rompan el 100% del ancho */
  section {
    width: auto !important;
    max-width: 100vw !important;
    overflow-x: hidden;
  }

  /* 2. Asegura que el contenedor principal y el contenido respeten los bordes */
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .trust-image-wrapper {
    transform: scale(1) !important;
  }

  .container,
  .hero-content {
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }

  /* 3. Fuerza al texto a saltar de línea si es necesario y le da un margen interno */
  .hero-subtitle,
  p,
  h1,
  h2,
  h3 {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    white-space: normal !important;
  }

  h1 {
    font-size: 2.2rem !important;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  /* 4. Arreglo opcional para los botones: 
        En pantallas así de pequeñas es mejor que los botones bajen uno debajo del otro 
        para que no se vean apretados. */
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* 5. Asegura que la imagen no se desborde */
  .hero-image {
    width: 100% !important;
    overflow: visible !important;
    /* Permitir que las tarjetas se vean si se posicionan fuera */
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  .floating-card {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    margin: 1rem auto !important;
    width: fit-content !important;
    transform: none !important;
  }
}



/* ══════════════════════════════════════════════

   RESPONSIVE — SMALL PHONES  (≤ 480px)

══════════════════════════════════════════════ */



@media (max-width: 480px) {

  body {

    padding-top: 75px;

  }



  .hero-content h1 {

    font-size: 1.8rem;

  }



  .hero-subtitle {

    font-size: 0.95rem;

  }



  .btn-primary,

  .btn-secondary {

    padding: 0.85rem 1.25rem;

    font-size: 0.95rem;

    width: 100%;

    text-align: center;

    justify-content: center;

  }



  .hero-buttons {

    flex-direction: column;

    align-items: stretch;

  }



  .urgency-banner {

    padding: 1.5rem 1rem;

  }



  .urgency-text h2 {

    font-size: 1.3rem;

  }



  .btn-urgent {

    font-size: 1rem;

    padding: 0.85rem 1.5rem;

    width: 100%;

    text-align: center;

  }



  .id-container section {

    padding: 1.5rem 1rem;

  }



  .blog-post-content {

    padding: 1.5rem 1rem;

  }



  .faq-item summary {

    padding: 1rem 1.25rem;

    font-size: 0.95rem;

  }



  .faq-content {

    padding: 1rem 1.25rem;

  }



  .gallery-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 0.75rem;

    padding: 0.75rem;

  }



  section .gallery-grid img {

    height: 140px !important;

  }



  .blog-grid {

    grid-template-columns: 1fr;

  }



  .services-grid {

    grid-template-columns: 1fr;

  }



  .section-header h2 {

    font-size: 1.8rem;

  }



  /* Prevent anything from bleeding to the edge */

  .container,

  .id-container {

    padding-left: 1rem;

    padding-right: 1rem;

  }



  section {

    margin-left: 0.5rem;

    margin-right: 0.5rem;

  }

}

/* ==========================================================
   FIX DEFINITIVO: DESBORDAMIENTO Y ELEMENTOS CORTADOS (MÓVIL)
========================================================== */

@media (max-width: 768px) {

  /* 1. Evitar que la pantalla se desborde horizontalmente */
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  section,
  .container,
  .hero-content,
  .hero-container {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .hero-container {
    padding: 0 15px !important;
    flex-direction: column !important;
  }

  /* 2. Forzar que todo el texto respete los bordes */
  p,
  h1,
  h2,
  h3,
  .hero-subtitle {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    white-space: normal !important;
  }

  /* 3. Arreglar la tarjeta oscura (floating-card) */
  .hero-image {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  .floating-card {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 0 0 !important;
    box-sizing: border-box !important;
    transform: none !important;
    animation: none !important;
    /* Desactiva la animación flotante en móvil para que no descuadre */
  }

  /* 4. Arreglar el banner naranja y el botón de solicitar asistencia */
  .urgency-banner {
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 2rem 1.5rem !important;
    overflow: hidden !important;
  }

  .btn-urgent {
    white-space: normal !important;
    /* ESTO ES LA CLAVE para que el botón no se salga */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    height: auto !important;
    padding: 1rem !important;
  }
}

/* ==========================================================
   FIX 2: CORRECCIÓN DE TARJETA FLOTANTE Y BANNER URGENTE
========================================================== */

@media (max-width: 768px) {

  /* 1. Fuerza a que la sección principal apile todo en columna y no se salga */
  .hero-container {
    flex-direction: column !important;
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }

  /* 2. Arregla la tarjeta oscura para que se coloque DEBAJO de la imagen y no al lado/fuera */
  .hero-image {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .floating-card {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 0 0 !important;
    box-sizing: border-box !important;
    transform: none !important;
    /* Desactiva animaciones flotantes si causan desbordamiento */
  }

  /* 3. Arregla el botón naranja para que el texto pueda ocupar dos líneas si no cabe */
  .urgency-banner {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 2rem 1.5rem !important;
    overflow: hidden !important;
  }

  .btn-urgent {
    white-space: normal !important;
    /* Permite que el texto salte de línea */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    padding: 1rem !important;
    height: auto !important;
  }
}

/* ==========================================================
   FIX EXTRA: FORZAR TARJETA OSCURA DEBAJO DE LA IMAGEN
========================================================== */
@media (max-width: 768px) {

  /* Apilamos el contenedor principal y el wrapper en vertical */
  .hero-image,
  .image-wrapper {
    display: flex !important;
    flex-direction: column !important;
    /* Esto es la clave: pone la tarjeta debajo */
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Reiniciamos la tarjeta y la centramos */
  .floating-card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    margin: 20px auto 0 auto !important;
    /* Margen superior para separarla de la foto */
    width: 90% !important;
    max-width: 320px !important;
    box-sizing: border-box !important;
  }

  /* Aseguramos que la imagen en sí no empuje los márgenes */
  .hero-image img,
  .image-wrapper img {
    max-width: 100% !important;
    object-fit: cover !important;
  }
}

/* ==========================================================
   NUEVOS ESTILOS HERO ULTRA-LLAMATIVOS (TEXTO DE ALTO IMPACTO)
   ========================================================== */

.hero-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: subtlePulse 3s infinite ease-in-out;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.4);
  animation: pulseRing 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

.badge-text {
  color: #fca5a5;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-main-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -1px;
  text-align: left;
}

.hero-main-title .title-accent {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #f59e0b; /* Amber/Gold accent */
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.hero-main-title .title-text {
  display: block;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-main-title .highlight-spark {
  color: #fcd34d; /* Soft bright yellow/gold */
  font-weight: 900;
  display: inline-block;
  text-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  border-bottom: none; /* No ugly underline lines */
}

/* Animaciones de apoyo */
@keyframes pulseRing {
  0% {
    transform: scale(0.33);
    opacity: 1;
  }
  80%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

/* Responsividad para móviles del Hero Premium */
@media (max-width: 768px) {
  .hero-main-title {
    font-size: 2.2rem !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
  }

  .hero-main-title .title-accent {
    font-size: 0.95rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.3rem !important;
  }

  .hero-urgency-badge {
    padding: 0.4rem 0.9rem !important;
    margin-bottom: 1rem !important;
  }

  .badge-text {
    font-size: 0.7rem !important;
    letter-spacing: 0.5px !important;
  }
}