/* -----------------------------------------------------
   RESET & BASE
----------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5eee6;
  color: #fff;
}

body {
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* FLOATING CALL BUTTON */
.float-call-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;

  width: 62px;
  height: 62px;

  background: linear-gradient(135deg, #0e6ba8, #123d5c);
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.7rem;
  text-decoration: none;

  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  z-index: 999;
  cursor: pointer;

  transition: 0.3s ease;
}

.float-call-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}

/* SHAKE ANIMATION */
@keyframes callShake {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-4px, 2px); }
  40% { transform: translate(4px, -2px); }
  60% { transform: translate(-4px, 2px); }
  80% { transform: translate(4px, -2px); }
  100% { transform: translate(0, 0); }
}

.float-call-btn.shake {
  animation: callShake 0.6s ease;
}

/* -----------------------------------------------------
   HEADER / NAV
----------------------------------------------------- */
.site-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.432);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  background: #b3541e;
  color: #fff;
  font-weight: 800;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0,0,0,0.45);
}

.logo-text span {
  color: #ffb58c;
}

/* Desktop nav */
.main-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
  transition: 0.25s;
}

.main-nav a:hover,
.main-nav .active {
  color: #ffb58c;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-line {
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 3px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.33);
  backdrop-filter: blur(16px);
  padding: 30px 0;
  z-index: 90;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.mobile-nav a {
  text-decoration: none;
  color: #111;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  padding: 16px;
}

/* -----------------------------------------------------
   HERO SECTION
----------------------------------------------------- */
.hero {
  width: 100%;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .hero { background-image: url("desktopbg.png"); }
}

@media (max-width: 991px) {
  .hero { background-image: url("mobilebg.png"); }
}

/* Capa de hojas */
.hero-leaf-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.leaf {
  position: absolute;
  width: 40px;
  pointer-events: none;
  opacity: 1;
}

/* -----------------------------------------------------
   GLASS (DESKTOP ONLY)
----------------------------------------------------- */
.glass-dark {
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(16px);
  padding: 22px 28px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.10),
    0 12px 30px rgba(0,0,0,0.55);
}

/* -----------------------------------------------------
   HERO CONTENT
----------------------------------------------------- */
.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-content {
  flex: 1 1 480px;
}

/* TEXT BLOCKS (Desktop default) */
.hero-tag,
.hero-title,
.hero-subtitle,
.hero-text,
.hero-highlights {
  background: rgba(1, 9, 30, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 18px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.65);
  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.12),
    0 10px 26px rgba(0,0,0,0.45);
  margin-bottom: 16px;
}

.hero-tag {
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffb478;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffc8a0;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.75;
}

/* -----------------------------------------------------
   CTA BUTTON
----------------------------------------------------- */
#call-now-btn {
  margin-top: 24px;
  display: inline-block;
  padding: 18px 36px;
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff8a4e 0%, #cc4818 100%);
  box-shadow: 0 16px 32px rgba(204,72,24,0.55);
  transition: 0.25s ease;
}

#call-now-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(204,72,24,0.65);
}

/* -----------------------------------------------------
   RIGHT SIDE LIST (DESKTOP)
----------------------------------------------------- */
.hero-side {
  flex: 1 1 380px;
}

.hero-highlights {
  list-style: none;
  padding: 26px 30px;
 
}

.hero-highlights li {
  margin-bottom: 14px;
  padding: 6px 2px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(0,0,0,0.85);
}

.hero-highlights li:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------
   BADGE (KEEP BLUR IN MOBILE)
----------------------------------------------------- */
.hero-badge {
  margin-bottom: 22px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(1, 9, 30, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.15),
    0 12px 26px rgba(0,0,0,0.45);
  color: #fff;
}

.hero-badge-text {
  font-size: 1.35rem;
  font-weight: 900;
}

/* -----------------------------------------------------
   RESPONSIVE — MOBILE EXPERIENCE
----------------------------------------------------- */
@media (max-width: 768px) {

  /* Margins & spacing */
  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 28px;
  }

  /* Remove blur from text blocks */
  .hero-tag,
  .hero-title,
  .hero-subtitle,
  .hero-text {
    background: none !important;
    border: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 12px !important;
    color: #fff !important;
    text-shadow: 0 0 12px rgba(0,0,0,0.85) !important;
  }

  /* LIST — NO BLUR */
 

  .hero-highlights li {
    padding: 8px 0 !important;
    font-size: 1.15rem !important;
    font-weight: 900 !important;
  }

  /* BADGE — KEEP BLUR */
  .hero-badge {
    margin-top: 15px;
  }

  /* LAYOUT */
  .main-nav { display: none; }
  .nav-toggle { display: block; }

  .hero {
    text-align: center;
    padding-top: 100px;
  }

  #call-now-btn {
    width: 100%;
    text-align: center;
  }
}


/* -----------------------------------------------------
   ABOUT SECTION
----------------------------------------------------- */

.about-section {
  width: 100%;
  padding: 90px 0;
  background: #ffffff;
}

.about-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE SIDE */
.about-image {
  width: 100%;
  height: 480px;
  background-image: url("image.png"); /* aquí reemplaza la img */
  background-size: cover;
  background-position: center;
  border-radius: 22px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.25),
    inset 0 0 20px rgba(255,255,255,0.20);
}

/* CONTENT SIDE */
.about-content {
  padding: 30px 36px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.15),
    inset 0 0 10px rgba(255,255,255,0.4);
}

.about-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.about-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #b3541e;
  margin-bottom: 25px;
}

.about-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 500;
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-image {
    height: 360px;
    border-radius: 18px;
  }

  .about-content {
    padding: 26px 22px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 70px 0;
  }

  .about-container {
    width: 92%;
  }

  .about-image {
    height: 300px;
    border-radius: 16px;
  }

  .about-content {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-subtitle {
    font-size: 1.2rem;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* -----------------------------------------------------
   SERVICES SECTION
----------------------------------------------------- */
.services-section {
  width: 100%;
  padding: 90px 0;
  background: #ffffff;
}

.services-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Title */
.services-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.18),
    inset 0 0 10px rgba(255,255,255,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.20),
    inset 0 0 14px rgba(255,255,255,0.45);
}

/* IMAGE */
.service-image {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.28));
}

/* CONTENT */
.service-content {
  padding: 26px 28px;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #b3541e;
  margin-bottom: 12px;
}

.service-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.65;
  font-weight: 500;
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .service-image {
    height: 240px;
  }

  .services-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 22px;
  }

  .service-name {
    font-size: 1.35rem;
  }

  .service-text {
    font-size: 1rem;
  }
}
/* -----------------------------------------------------
   CTA SECTION
----------------------------------------------------- */

.cta-section {
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #f28b47 0%, #b3541e 50%, #8a3f17 100%);
  /* Gradiente cálido profesional */
}

.cta-container {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.cta-image {
  width: 100%;
  height: 420px;
  background-image: url("image5.png"); /* <-- tu imagen aquí */
  background-size: cover;
  background-position: center;
  border-radius: 22px;

  box-shadow:
    0 14px 32px rgba(0,0,0,0.25),
    inset 0 0 20px rgba(255,255,255,0.18);
}

/* CONTENT */
.cta-content {
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(14px);
  padding: 50px 42px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.35);

  box-shadow:
    inset 0 0 14px rgba(255,255,255,0.25),
    0 14px 36px rgba(0,0,0,0.25);
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 0 14px rgba(0,0,0,0.55);
}

.cta-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffe7d7;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(0,0,0,0.45);
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 18px 32px;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffae7a 0%, #d86a2e 100%);
  box-shadow: 0 16px 32px rgba(0,0,0,0.30);
  transition: 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.40);
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */

@media (max-width: 992px) {

  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-image {
    height: 360px;
  }

  .cta-content {
    padding: 36px 30px;
  }

  .cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {

  .cta-section {
    padding: 70px 0;
  }

  .cta-container {
    width: 94%;
  }

  .cta-image {
    height: 300px;
    border-radius: 18px;
  }

  .cta-content {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .cta-title {
    font-size: 1.9rem;
  }

  .cta-subtitle {
    font-size: 1.2rem;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
  }
}
/* -----------------------------------------------------
   TRUST / CREDENTIALS SECTION
----------------------------------------------------- */

.trust-section {
  width: 100%;
  padding: 50px 0;
  background: #ffffff;
}

.trust-container {
  width: 92%;
  max-width: 1350px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARDS */
.trust-card {
  height: 300px;
  border-radius: 22px;
  padding: 36px 26px;
  color: white;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;

  box-shadow:
    0 12px 28px rgba(0,0,0,0.15),
    inset 0 0 10px rgba(255,255,255,0.25);

  transition: 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.25),
    inset 0 0 14px rgba(255,255,255,0.3);
}

/* COLORS */
.trust-blue {
  background: linear-gradient(135deg, #1d6adf, #4a88ff);
}

.trust-green {
  background: linear-gradient(135deg, #1f8f4b, #32b76a);
}

.trust-aqua {
  background: linear-gradient(135deg, #11b8c9, #3be4ff);
}

.trust-rating {
  background: linear-gradient(135deg, #ffffff, #f9f9f7);
  color: #fdde2d;
}

.trust-location {
  background: linear-gradient(135deg, #0066cc, #0099ff);
}

.trust-trust {
  background: linear-gradient(135deg, #004c4c, #009f9f);
}

/* TEXT */
.trust-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
}

.trust-card p {
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.95;
}

.trust-icon {
  font-size: 48px;
  margin-bottom: 6px;
  text-shadow: 0 0 6px rgba(0,0,0,0.4);
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */

@media (max-width: 992px) {
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-card {
    height: 260px;
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .trust-container {
    grid-template-columns: 1fr;
  }

  .trust-card {
    height: auto;
    padding: 36px 24px;
  }

  .trust-card h3 {
    font-size: 1.3rem;
  }

  .trust-card p {
    font-size: 1rem;
  }
}

/* -----------------------------------------------------
   CONTACT SECTION
----------------------------------------------------- */

.contact-section {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #f2f2f2 0%, #ffffff 100%);
}

.contact-container {
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.contact-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

/* FORM CARD */
.contact-form {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  padding: 40px 50px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);

  box-shadow:
    0 14px 32px rgba(0,0,0,0.15),
    inset 0 0 12px rgba(255,255,255,0.35);
}

/* ROWS */
.form-row {
  width: 100%;
  display: flex;
  gap: 22px;
  margin-bottom: 20px;
}

.form-row input {
  flex: 1;
}

/* INPUTS */
.contact-form input {
  width: 100%;
  padding: 16px 18px;
  font-size: 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.2);
  background: #ffffff;
  outline: none;
  transition: 0.25s;
}

.contact-form input:focus {
  border-color: #b3541e;
  box-shadow: 0 0 8px rgba(179,84,30,0.4);
}

/* BUTTON */
#contact-submit {
  margin-top: 12px;
  width: 100%;
  padding: 16px 0;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;

  background: linear-gradient(135deg, #ff8a4e 0%, #cc4818 100%);
  box-shadow: 0 16px 32px rgba(204,72,24,0.35);
  transition: 0.25s ease;
}

#contact-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(204,72,24,0.45);
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media (max-width: 768px) {

  .contact-section {
    padding: 80px 0;
  }

  .contact-form {
    padding: 30px 24px;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .contact-title {
    font-size: 2.2rem;
  }
}
/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
.footer-section {
  width: 100%;
  background: #0f0f0f;
  padding: 80px 0 40px;
  color: #fff;
}

.footer-container {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Titles */
.footer-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffb58c;
  margin-bottom: 14px;
}

/* Text */
.footer-text {
  line-height: 1.65;
  color: #eeeeee;
  font-size: 1rem;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #dddddd;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li i {
  color: #ffb58c;
}

.footer-links a {
  color: #eeeeee;
  text-decoration: none;
  transition: 0.25s;
}

.footer-links a:hover {
  color: #ffb58c;
}

/* COPYRIGHTS */
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 30px;

  text-align: center;
}

.copy,
.arcys-copy {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 10px;
}

.arcys-link {
  color: #4ab8ff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s;
}

.arcys-link:hover {
  color: #7fd4ff;
}

/* SOCIAL MEDIA */
.footer-social {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.footer-social li {
  margin-bottom: 10px;
}

.footer-social a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s;
}

.footer-social a i {
  font-size: 1.2rem;
  color: #ffb58c;
}

.footer-social a:hover {
  color: #ffb58c;
  transform: translateX(4px);
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links li {
    justify-content: center;
  }
}

/* -----------------------------------------------------
   SOCIAL SECTION (VERSION PREMIUM AZUL)
----------------------------------------------------- */

.social-section {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1f33, #114c72, #0e6ba8);
  text-align: center;
  color: #ffffff;
}

.social-container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

/* TITLE */
.social-title {
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #e5f4ff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
}

/* SUBTITLE */
.social-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  color: #d9eeff;
  max-width: 780px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* BUTTON CONTAINER */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* BUTTON STYLE */
.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 28px;
  border-radius: 14px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  transition: 0.25s ease;
}

/* Facebook Gradient */
.fb-btn {
  background: linear-gradient(135deg, #3b5998, #1e3f7f, #0f2e62);
}

/* Instagram Gradient */
.ig-btn {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* ICON STYLE */
.social-btn i {
  font-size: 1.5rem;
}

/* HOVER EFFECT */
.social-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
  opacity: 0.95;
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */

@media (max-width: 768px) {
  .social-title {
    font-size: 2.2rem;
  }

  .social-subtitle {
    font-size: 1.05rem;
  }

  .social-btn {
    width: 100%;
    justify-content: center;
  }
}
.seo-description-section {
  width: 100%;
  padding: 90px 0;
  background: #ffffff;
}

.seo-container {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}

.seo-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #123d5c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.seo-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #333;
  text-align: justify;
}
/* -----------------------------------------------------
   WHY CHOOSE US SECTION
----------------------------------------------------- */

.why-section {
  width: 100%;
  padding: 100px 0;
  background: #f7f7f7;
}

.why-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* TITLE */
.why-title {
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
  color: #153d57;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* INTRO TEXT */
.why-intro {
  max-width: 850px;
  margin: 0 auto 60px auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #444;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARDS */
.why-card {
  padding: 26px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

/* ICON */
.why-icon {
  font-size: 2.2rem;
  color: #0e6ba8;
  margin-bottom: 15px;
}

/* TEXT */
.why-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #123d5c;
}

.why-card p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 2.2rem;
  }

  .why-intro {
    font-size: 1.05rem;
  }
}
/* -----------------------------------------------------
   REVIEWS SECTION
----------------------------------------------------- */

.reviews-section {
  width: 100%;
  padding: 100px 0;
  background: #f4f7f9;
}

.reviews-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reviews-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #123d5c;
  margin-bottom: 12px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.reviews-subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 780px;
  margin: 0 auto 60px auto;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* REVIEW CARD */
.review-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

/* STARS */
.review-stars {
  color: #f7b731;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 14px;
}

/* TEXT */
.review-text {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.55;
  margin-bottom: 14px;
}

.review-author {
  font-size: 1rem;
  font-weight: 700;
  color: #0e6ba8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-title {
    font-size: 2.2rem;
  }

  .reviews-subtitle {
    font-size: 1rem;
  }
}
/* -----------------------------------------------------
   FAQ SECTION
----------------------------------------------------- */

.faq-section {
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
}

.faq-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #123d5c;
  text-align: center;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 750px;
  text-align: center;
  margin: 0 auto 50px auto;
  line-height: 1.65;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  padding: 18px 22px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #123d5c;
  text-align: left;
  background: #f4f7f9;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: 0.25s ease;
}

.faq-question:hover {
  background: #eaf2f7;
}

.faq-icon {
  font-weight: 900;
  font-size: 1.4rem;
  color: #0e6ba8;
  margin-left: 10px;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  border-left: 3px solid #0e6ba8;
  border-radius: 0 0 14px 14px;
  padding: 0 20px;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 16px 4px 20px 4px;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* OPEN STATE */
.faq-item.open .faq-question {
  border-radius: 14px 14px 0 0;
  background: #e9f4fc;
  border-color: #b2dfff;
}

.faq-item.open .faq-answer {
  border-color: #0e6ba8;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .faq-title {
    font-size: 2.1rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.98rem;
  }
}
/* -----------------------------------------------------
   SERVICE AREAS SECTION
----------------------------------------------------- */

.service-areas-section {
  width: 100%;
  padding: 100px 0;
  background: #f4f7f9;
}

.service-areas-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.areas-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #123d5c;
  margin-bottom: 14px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* SUBTITLE */
.areas-subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 850px;
  margin: 0 auto 50px auto;
  line-height: 1.65;
}

/* GRID */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

/* AREA ITEM */
.area-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  font-size: 1.1rem;
  color: #123d5c;
  font-weight: 700;

  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transition: 0.25s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.area-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

/* ICON */
.area-icon {
  color: #0e6ba8;
  font-size: 1.3rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .areas-title {
    font-size: 2.2rem;
  }

  .areas-subtitle {
    font-size: 1rem;
  }

  .area-item {
    font-size: 1rem;
  }
}
/* -----------------------------------------------------
   COMMERCIAL CLIENTS / BUSINESS PARTNERSHIPS
----------------------------------------------------- */

.commercial-section {
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
}

.commercial-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.commercial-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #123d5c;
  margin-bottom: 18px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* SUBTITLE */
.commercial-subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 850px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
}

/* GRID */
.commercial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.commercial-card {
  background: #f7fafd;
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);

  transition: 0.3s ease;
  text-align: center;
}

.commercial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

/* ICON */
.commercial-icon {
  font-size: 2rem;
  color: #0e6ba8;
  margin-bottom: 14px;
}

/* TEXT */
.commercial-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #123d5c;
  margin-bottom: 10px;
}

.commercial-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.55;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .commercial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .commercial-grid {
    grid-template-columns: 1fr;
  }

  .commercial-title {
    font-size: 2.2rem;
  }

  .commercial-subtitle {
    font-size: 1rem;
  }
}
/* -----------------------------------------------------
   HOW IT WORKS / OUR PROCESS
----------------------------------------------------- */

.process-section {
  width: 100%;
  padding: 100px 0;
  background: #f7f9fc;
}

.process-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.process-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #123d5c;
  margin-bottom: 14px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* SUBTITLE */
.process-subtitle {
  font-size: 1.15rem;
  max-width: 850px;
  margin: 0 auto 60px auto;
  color: #555;
  line-height: 1.65;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.process-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

/* NUMBER BADGE */
.process-number {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #0e6ba8, #123d5c);
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* TEXT */
.process-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #123d5c;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 2.2rem;
  }

  .process-subtitle {
    font-size: 1rem;
  }
}
/* -----------------------------------------------------
   CERTIFICATIONS / LICENSES SECTION
----------------------------------------------------- */

.cert-section {
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
}

.cert-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.cert-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #123d5c;
  margin-bottom: 16px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* SUBTITLE */
.cert-subtitle {
  font-size: 1.15rem;
  max-width: 850px;
  color: #555;
  line-height: 1.65;
  margin: 0 auto 60px auto;
}

/* GRID */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.cert-card {
  background: #f7fafd;
  padding: 30px 24px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  transition: 0.3s ease;

  text-align: center;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

/* ICON */
.cert-icon {
  font-size: 2.3rem;
  color: #0e6ba8;
  margin-bottom: 14px;
}

/* TEXT */
.cert-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #123d5c;
  margin-bottom: 10px;
}

.cert-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-title {
    font-size: 2.2rem;
  }

  .cert-subtitle {
    font-size: 1rem;
  }
}
