/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css2?family=Yellowtail&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');



/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url("../css/animate.min.a332e9019e2a.css");
@import url("../css/normalize.8d9d541cc4c3.css");
@import url("../css/slick.f46bd015743c.css");
@import url("../css/nice-select.7641aec4b8c4.css");

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
    box-sizing: border-box !important;
    transition: ease all 0.5s;
    margin-top: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    
   

  
}

/* Premium editorial service cards */
body .services {
  background:
    radial-gradient(circle at 10% 0%, rgba(211, 154, 69, .09), transparent 26%),
    #f1f0ec;
}

.services .services-grid {
  align-items: stretch;
  gap: clamp(18px, 2vw, 28px);
}

.services-grid .service-card {
  position: relative;
  display: block;
  min-height: 440px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(16, 35, 48, .09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 35, 48, .08);
  isolation: isolate;
}

.services-grid .service-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 330px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(7, 20, 29, .93), rgba(7, 20, 29, 0) 62%);
}

.services-grid .service-card::after {
  content: "↗";
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 4;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(16, 35, 48, .18);
  border-radius: 50%;
  color: var(--premium-ink);
  font-size: 1rem;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.services-grid .service-card > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 330px;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.services-grid .service-card h3 {
  position: absolute;
  z-index: 3;
  top: 246px;
  right: 22px;
  left: 22px;
  display: flex;
  min-height: 66px;
  align-items: flex-end;
  margin: 0;
  padding: 0 0 13px;
  color: #fff;
  font: 700 clamp(1.05rem, 1.3vw, 1.3rem)/1.2 'Playfair Display', serif;
  letter-spacing: .015em;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.services-grid .service-card h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--premium-gold);
}

.services-grid .service-card > p {
  display: -webkit-box;
  min-height: 108px;
  margin: 0;
  overflow: hidden;
  padding: 20px 64px 20px 22px;
  color: #68737b;
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.services-grid .service-card:hover,
.services-grid .service-card:focus-visible {
  border-color: rgba(211, 154, 69, .75);
  box-shadow: 0 26px 58px rgba(16, 35, 48, .16);
  transform: translateY(-7px);
}

.services-grid .service-card:hover > img,
.services-grid .service-card:focus-visible > img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

.services-grid .service-card:hover::after,
.services-grid .service-card:focus-visible::after {
  border-color: var(--premium-gold);
  background: var(--premium-gold);
  color: #10202b;
  transform: rotate(45deg);
}

@media (max-width: 720px) {
  .services {
    padding-right: 0;
    padding-left: 0;
  }

  .services > .services-title,
  .services > .services-subtitle {
    margin-right: 22px;
    margin-left: 22px;
  }

  .services .services-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 22px 28px;
    scroll-padding-left: 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .services .services-grid::-webkit-scrollbar {
    display: none;
  }

  .services-grid .service-card {
    min-height: 410px;
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .services-grid .service-card > img,
  .services-grid .service-card::before {
    height: 300px;
  }

  .services-grid .service-card h3 {
    top: 216px;
  }

  .services-grid .service-card > p {
    min-height: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-grid .service-card,
  .services-grid .service-card > img,
  .services-grid .service-card::after {
    transition: none;
  }
}

/* Institutional landing summaries and pages */
.landing-teaser{display:grid;grid-template-columns:1fr 1fr;min-height:560px;background:#fff}.landing-teaser__media img{width:100%;height:100%;min-height:560px;object-fit:cover}.landing-teaser__content{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;padding:clamp(48px,8vw,110px)}.landing-teaser__eyebrow{display:inline-block;margin-bottom:16px;color:#b68936;font-size:.82rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase}.landing-teaser h2,.trust-teaser h2,.internal-page h2{color:#16212c;font-family:'Playfair Display',serif;font-size:clamp(2.2rem,4vw,4rem);line-height:1.08}.landing-teaser__content p{max-width:650px;margin:24px 0 30px;color:#56616b;font-size:1.12rem;line-height:1.8}.landing-teaser__button{display:inline-flex;align-items:center;gap:12px;padding:14px 22px;border:1px solid #16212c;border-radius:999px;color:#16212c;font-weight:700;text-decoration:none;transition:.25s ease}.landing-teaser__button:hover{background:#16212c;color:#fff;transform:translateY(-2px)}
.trust-teaser{padding:clamp(70px,9vw,125px) 8%;background:linear-gradient(125deg,rgba(10,23,36,.97),rgba(28,52,68,.93)),url("../../assets/img/ing.b9a3462c0f57.png") center/cover;color:#fff;text-align:center}.trust-teaser h2{color:#fff}.trust-teaser__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;max-width:1100px;margin:45px auto}.trust-teaser__grid div{display:flex;min-height:150px;flex-direction:column;align-items:center;justify-content:center;gap:14px;padding:24px;border:1px solid rgba(255,255,255,.2);border-radius:18px;background:rgba(255,255,255,.07)}.trust-teaser__grid strong,.trust-teaser__grid i{color:#d5ad61;font-size:2.3rem}.trust-teaser__grid span{font-size:1rem;font-weight:600}.landing-teaser__button--light{border-color:#fff;color:#fff}.landing-teaser__button--light:hover{background:#fff;color:#16212c}
.internal-hero{position:relative;min-height:68vh;overflow:hidden;background:#101c27}.internal-hero>img{position:absolute;width:100%;height:100%;object-fit:cover;opacity:.48}.internal-hero__overlay{position:relative;z-index:1;display:flex;min-height:68vh;max-width:1050px;flex-direction:column;justify-content:flex-end;padding:100px 7% 80px;color:#fff}.internal-hero__overlay span{color:#e1bd75;font-weight:700;letter-spacing:.12em;text-transform:uppercase}.internal-hero__overlay h1{max-width:850px;margin:18px 0;font:700 clamp(2.8rem,6vw,5.7rem)/1.02 'Playfair Display',serif}.internal-hero__overlay p{max-width:700px;font-size:1.2rem;line-height:1.7}.internal-page{background:#f5f4f0;padding:clamp(65px,8vw,110px) 7%}.internal-intro{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(35px,8vw,100px);max-width:1200px;margin:0 auto 80px}.internal-intro p,.internal-split p{color:#57636d;font-size:1.1rem;line-height:1.85}
.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1200px;margin:0 auto 90px}.value-grid article{padding:38px 32px;border-radius:18px;background:#fff;box-shadow:0 12px 35px rgba(17,34,48,.06)}.value-grid i{color:#b68936;font-size:2rem}.value-grid h3{margin:22px 0 12px;color:#172431;font:700 1.5rem 'Playfair Display',serif}.value-grid p{color:#63707a;line-height:1.7}.internal-split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(35px,7vw,90px);max-width:1200px;margin:0 auto 90px;align-items:center}.internal-split img{width:100%;min-height:460px;border-radius:22px;object-fit:cover}.internal-split .landing-teaser__button{margin-top:18px}
.process-section{max-width:1200px;margin:0 auto 90px;text-align:center}.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:45px;text-align:left}.process-grid article{padding:30px;border-top:3px solid #b68936;background:#fff}.process-grid b{color:#b68936;font-size:1.8rem}.process-grid h3{margin:18px 0 10px;color:#172431}.process-grid p{color:#63707a;line-height:1.65}.internal-cta{max-width:1200px;margin:0 auto;padding:70px 8%;border-radius:24px;background:#162633;color:#fff;text-align:center}.internal-cta h2{color:#fff}.internal-cta p{margin:20px 0 30px;font-size:1.1rem}.internal-cta a{display:inline-block;padding:14px 24px;border-radius:999px;background:#d5ad61;color:#172431;font-weight:700;text-decoration:none}
@media(max-width:900px){.landing-teaser,.internal-intro,.internal-split{grid-template-columns:1fr}.landing-teaser__media img{min-height:380px}.trust-teaser__grid,.process-grid{grid-template-columns:repeat(2,1fr)}.value-grid{grid-template-columns:1fr 1fr}}@media(max-width:600px){.trust-teaser__grid,.process-grid,.value-grid{grid-template-columns:1fr}.internal-hero,.internal-hero__overlay{min-height:590px}.internal-hero__overlay{padding:100px 24px 55px}.internal-page{padding-left:20px;padding-right:20px}}


html {
    scroll-behavior: smooth;
}

/* Premium landing refinement */
:root {
  --premium-ink: #102330;
  --premium-ink-soft: #1b3443;
  --premium-gold: #d39a45;
  --premium-cream: #f5f2eb;
}

.header_section .swiper::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 16, 24, .86) 0%, rgba(5, 16, 24, .58) 52%, rgba(5, 16, 24, .18) 100%),
    linear-gradient(0deg, rgba(5, 16, 24, .5), transparent 48%);
}

.header_section .swiper-content.hero-premium {
  max-width: 1500px;
  padding-top: 82px;
}

.hero-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #f0c77c;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  animation: premium-rise .7s both;
}

.hero-premium__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero-premium .swiper-title {
  max-width: 1030px;
  margin-bottom: 5px;
  padding: 0;
  font-style: normal;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 1.01;
  letter-spacing: -.035em;
  animation: premium-rise .8s .08s both;
}

.hero-premium h2.swiper-title {
  max-width: 920px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(2rem, 3.5vw, 3.9rem);
}

.hero-premium .swiper-description {
  max-width: 700px;
  margin: 22px 0 26px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  animation: premium-rise .8s .16s both;
}

.hero-premium .swiper-buttons {
  animation: premium-rise .8s .24s both;
}

.hero-premium .swiper-buttons a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 23px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.hero-premium .btn-linea {
  border-color: var(--premium-gold);
  background: var(--premium-gold);
  color: #10202b;
}

.hero-premium .btn-linea:hover {
  border-color: #efc579;
  background: #efc579;
  color: #10202b;
  transform: translateY(-2px);
}

.hero-premium .btn-cotiza {
  border-width: 1px;
  border-color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-premium .btn-cotiza:hover {
  border-color: #fff;
  background: #fff;
  color: var(--premium-ink);
  transform: translateY(-2px);
}

.hero-premium__proof {
  display: flex;
  max-width: 800px;
  margin-top: 32px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  animation: premium-rise .8s .32s both;
}

.hero-premium__proof > div {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 11px;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.hero-premium__proof > div:first-child {
  padding-left: 0;
}

.hero-premium__proof > div:last-child {
  border-right: 0;
}

.hero-premium__proof strong,
.hero-premium__proof i {
  flex: 0 0 auto;
  color: #efc579;
  font-size: 1.45rem;
}

.hero-premium__proof span {
  color: rgba(255, 255, 255, .86);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

body .topbar {
  border: 0;
  background: var(--premium-ink);
  color: #fff;
  box-shadow: 0 14px 35px rgba(11, 29, 41, .12);
}

.topbar .contact-item {
  align-items: flex-start;
  margin-top: .2rem;
  margin-bottom: .2rem;
  text-align: left;
}

.topbar .contact-item i,
.topbar .contact-item .highlight {
  color: #efc579;
}

.topbar .contact-item .label {
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.topbar .contact-item .phone {
  color: #fff;
  font-size: 1rem;
}

.topbar .contact-btn .btn-emergency {
  border: 1px solid rgba(255, 255, 255, .36);
  background: transparent;
  font-size: .82rem;
  letter-spacing: .06em;
}

.topbar .contact-btn .btn-emergency:hover {
  border-color: var(--premium-gold);
  background: var(--premium-gold);
  color: var(--premium-ink);
}

.services-title,
.team_title {
  letter-spacing: -.025em;
}

.services-title::after,
.team_title::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--premium-gold);
}

.service-card,
.team_card,
.portfolio-reel__card,
.quick-quote {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card:hover,
.team_card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(15, 34, 47, .14);
}

.readmore_bt a,
.landing-teaser__button,
.quick-quote__actions button {
  letter-spacing: .035em;
}

@keyframes premium-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .header_section .swiper-content.hero-premium {
    justify-content: flex-end;
    padding: 110px 22px 42px;
  }

  .hero-premium__eyebrow {
    margin-bottom: 14px;
    font-size: .67rem;
  }

  .hero-premium .swiper-title {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-premium h2.swiper-title {
    font-size: clamp(1.55rem, 7vw, 2.4rem);
  }

  .hero-premium .swiper-description {
    margin: 14px 0 20px;
  }

  .hero-premium .swiper-buttons {
    gap: 9px;
  }

  .hero-premium .swiper-buttons a {
    min-height: 44px;
    padding: 9px 13px;
    font-size: .68rem;
  }

  .hero-premium__proof {
    margin-top: 24px;
    padding-top: 17px;
  }

  .hero-premium__proof > div {
    gap: 6px;
    padding: 0 10px;
  }

  .hero-premium__proof strong,
  .hero-premium__proof i {
    font-size: 1.05rem;
  }

  .hero-premium__proof span {
    font-size: .65rem;
  }

  .topbar .topbar-content {
    gap: 8px;
  }

  .topbar .contact-item {
    margin-right: .35rem;
    margin-left: .35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-premium__eyebrow,
  .hero-premium .swiper-title,
  .hero-premium .swiper-description,
  .hero-premium .swiper-buttons,
  .hero-premium__proof {
    animation: none;
  }
}

body {
    color: #666666;
    font-size: 14px;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;
    
    
    
 
    
}

a {
    color: #1f1f1f;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    font-weight: normal;
    line-height: normal;
    color: #111111;
    margin: 0
}

h1 {
    font-size: 24px
}

h2 {
    font-size: 22px
}

h3 {
    font-size: 18px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 13px
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #212121;
    text-decoration: none!important;
    opacity: 1
}

button:focus {
    outline: none;
}



ul,
li,
ol {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

p {
    margin: 20px;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
}

a {
    color: #222222;
    text-decoration: none;
    outline: none !important;
}

a,
.btn {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

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

 :focus {
    outline: 0;
}

.paddind_bottom_0 {
    padding-bottom: 0 !important;
}

.btn-custom {
    margin-top: 20px;
    background-color: transparent !important;
    border: 2px solid #ddd;
    padding: 12px 40px;
    font-size: 16px;
}

.lead {
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    margin: 0;
    padding: 0;
}

.form-control:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}



.badge {
    font-weight: 500;
}

blockquote {
    margin: 20px 0 20px;
    padding: 30px;
}

button {
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.full {
    float: left;
    width: 100%;
}

.layout_padding {
    padding-top: 90px;
    padding-bottom: 0px;
}

.padding_0 {
    padding: 0px;
}


/* header section start *








/* Topbar Contact */
.topbar {
  background: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.8rem 0; /* un poco más de espacio */
  font-family: 'Roboto', sans-serif;
}

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

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.5rem 1.5rem; /* más espacio entre bloques */
  text-align: center;
}

.contact-item i {
  color: #1e88e5;
  font-size: 1.rem; /* íconos más grandes */
  margin-bottom: 0.3rem;
}

.contact-item .label {
  font-size: 1rem;  /* texto de la etiqueta más grande */
  color: #444;
}

.contact-item .highlight {
  color:#0d1b2a;
  font-weight: bold;
  font-size: 1.rem; /* resaltar más */
}

.contact-item .phone {
  font-size: 1rem; /* número principal más grande */
  font-weight: bold;
  color: #222;
}

.contact-btn .btn-emergency {
  background: #4B4B4B;
  color: #fff;
  padding: 0.6rem 1.1rem; /* botón más grande */
  border-radius: 20px;
  font-size: 1.1rem; /* texto del botón más grande */
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-btn .btn-emergency:hover {
  background: #0d1b2a;
}




/* about section start */

.about_section {
    width: 100%;
    float: left;
    padding-bottom: 76px;
}

.about_taital_main {
    width: 100%;
    padding-left: 86px;
    padding-top: 58px;
   
}

.padding_right_0 {
    padding-right: 0px;
}

.about_taital {
    width: 80%;
    float: left;
    color: gray;
    font-size: 30px; 
    font-family: 'Playfair Display', serif;

    
}

.about_subtitle {
    width: 100%;
    float: left;
    color: white;
    font-size: 64px;
    margin-top: 8px;
    font-family: 'Playfair Display', serif;
}
.about_subtitle2 {
    width: 100%;
    float: left;
    color: white;
    font-size: 37px;
    margin-top: 8px;
    font-family: 'Playfair Display', serif;

}

.about_text {
    width: 100%;
    float: left;
    font-size: 1.35rem;
    color: white;
    margin: 0px;
    padding-top: 30px;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    font-family: 'Playfair Display', serif;

}

.readmore_bt {
    width: 280px;
    float: left;
    margin-top: 48px;
    position: relative;
    z-index: 10;
    
}

.readmore_bt a {
    display: inline-block; /* mejor control que float */
    width: 100%;
    font-size: 20px;
    color: white;
    background-color:  transparent;
    text-align: center;
    padding: 10px 0px;
    border-radius: 20px;
    text-transform: uppercase;
    border: 1.5px solid white; /* borde visible */
    box-sizing: border-box;   /* asegura que no se corte el borde */
}

.readmore_bt a:hover {
    color: white;
    background-color: gray;
}

.about_img {
    width: 100%;
    float: left;
}

/* Carrusel de "Quienes Somos" */
.about_section {
  background-color: #0d1b2a; /* o el color que quieras */
  position: relative;
  z-index: 1;
  margin-bottom: 68px;

}

.swiper-about {
  max-width: 800px;  /* más pequeño */
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  
}

.about_section .swiper-about {
  height: min(850px, 88vh);
}

.swiper-about .swiper-slide img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*carrucel 2*/

.swiper, .swiper-wrapper, .swiper-slide, .swiper-button-next, .swiper-button-prev {
  z-index: 1 !important;
}


/* contact section end */

.swiper {
    width: 100%;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
     
  }

 .swiper-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;              /* Ocupar todo el ancho */
  height: 100%;             /* Ocupar todo el alto del slide */
  display: flex;            /* Para distribuir el contenido */
  flex-direction: column;   /* Colocar título arriba y botones abajo */
  justify-content: center;  /* Centrado vertical */
  align-items: flex-start;  /* Comienza desde la izquierda */
  padding: 0 10%;           /* Espacios laterales */
  color: #fff;
  z-index: 10;
  font-family: 'Poppins', sans-serif;
}
/* Título */
.swiper-title {
  font-size: 5rem;  
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
   text-shadow: 2px 2px 8px rgba(0,0,0,0.6); 
   color: #fff;
   font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* Subtítulo */
.swiper-description {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 35px;
  color: white;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);

}

/* Botones */
.swiper-buttons {
  display: flex;
  gap: 20px;
}

.swiper-buttons a {
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 575.98px) {
  .swiper-buttons {
    gap: 8px;
    width: 100%;
    justify-content: flex-start;
  }

  .swiper-buttons a {
    padding: 9px 12px;
    font-size: 0.78rem;
    border-radius: 20px;
    min-width: 118px;
    max-width: 140px;
  }
}

/* Portfolio */
.portfolio-preview {
  padding: 72px 0;
  background: #f7f8fa;
}

@media (min-width: 1200px) {
  .portfolio-preview__container {
    width: calc(100% - 64px);
    max-width: 1320px;
  }
}

.portfolio-preview__intro,
.portfolio-project__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}

.portfolio-preview__intro h2,
.portfolio-project__heading h2,
.portfolio-proof h2 {
  margin: 5px 0 8px;
  color: #111827;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
}

.portfolio-preview__intro p,
.portfolio-project__heading p {
  max-width: 680px;
  margin: 0;
  color: #667085;
  line-height: 1.75;
}

.portfolio-eyebrow,
.portfolio-tag {
  color: #e86f24;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.portfolio-link {
  color: #111827;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.portfolio-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-preview__card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.portfolio-preview__card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .82));
}

.portfolio-preview__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.portfolio-preview__card:hover img { transform: scale(1.045); }

.portfolio-preview__card span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 19px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.portfolio-reel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(380px, 1fr);
  gap: 18px;
  width: 100%;
  height: 500px;
  min-height: 0;
  margin: 0 auto;
}

.portfolio-lightbox-trigger { cursor: zoom-in; }

.portfolio-lightbox[hidden] { display: none; }

.portfolio-lightbox {
  position: fixed;
  z-index: 10050;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 76px 28px 28px;
  background: rgba(2, 6, 12, .94);
  backdrop-filter: blur(10px);
}

.portfolio-lightbox__stage {
  width: min(1180px, calc(100vw - 56px));
  height: min(820px, calc(100vh - 104px));
  height: min(820px, calc(100dvh - 104px));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.portfolio-lightbox__media--video {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block;
  object-fit: contain !important;
  object-position: center center;
  border-radius: 12px;
  background: #05080d;
}

.portfolio-lightbox__media--image {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block;
  object-fit: contain !important;
  object-position: center center;
  border-radius: 12px;
}

.portfolio-lightbox__stage--loading::after,
.portfolio-lightbox__stage--error::after {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 8, 13, .82);
  font-size: .9rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.portfolio-lightbox__stage--loading::after { content: "Cargando video…"; }
.portfolio-lightbox__stage--error::after { content: "No fue posible cargar este video."; }

.portfolio-lightbox__close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.portfolio-lightbox-open { overflow: hidden; }

.portfolio-reel__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 0;
}

.portfolio-reel__card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #0c1420;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .15);
}

.portfolio-reel__card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}

.portfolio-reel__card:hover video { transform: scale(1.025); }

.portfolio-reel__shade {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(3, 8, 15, .9));
}

.portfolio-reel__content {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 23px;
  color: #fff;
}

.portfolio-reel__content small {
  display: block;
  margin-bottom: 5px;
  color: #ff9a56;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.portfolio-reel__content strong {
  display: block;
  max-width: 560px;
  font-size: clamp(1.05rem, 2.3vw, 2rem);
  line-height: 1.2;
  font-weight: 850;
}

.portfolio-reel__side .portfolio-reel__content strong {
  font-size: 1.05rem;
}

.portfolio-reel__content em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: .82rem;
  font-style: normal;
  font-weight: 750;
}

.portfolio-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: end;
  padding: 150px 0 80px;
  color: #fff;
  overflow: hidden;
  background: #080d16;
}

.portfolio-hero__video,
.portfolio-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-hero__video {
  object-fit: cover;
}

.portfolio-hero__overlay {
  background: linear-gradient(90deg, rgba(6, 12, 22, .94), rgba(6, 12, 22, .57) 58%, rgba(6, 12, 22, .28));
}

.portfolio-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.portfolio-hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .96;
  font-weight: 900;
}

.portfolio-hero p {
  max-width: 720px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .84);
  font-size: 1.08rem;
  line-height: 1.75;
}

.portfolio-hero .btn-service-primary {
  gap: 10px;
  line-height: 1.2;
}

.portfolio-hero .btn-service-primary i {
  flex: 0 0 auto;
  margin: 0;
  font-size: 1.12em;
  line-height: 1;
  vertical-align: middle;
}

.portfolio-page { background: #fff; }
.portfolio-local-nav {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid #e6e9ee;
  background: #fff;
}

.portfolio-local-nav__links {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 14px;
  padding-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.portfolio-local-nav__links::-webkit-scrollbar { display: none; }

.portfolio-local-nav a {
  flex: 0 0 auto;
  padding: 9px 15px;
  border-radius: 999px;
  color: #344054;
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.portfolio-local-nav a:hover {
  color: #c85318;
  background: #fff1e8;
}

.portfolio-project { padding: 88px 0; }
.portfolio-project--featured { background: #f7f8fa; }
.portfolio-project--dark { background: #101722; color: #fff; }
.portfolio-project--dark h2 { color: #fff; }
.portfolio-project--dark .portfolio-project__heading p { color: #bbc3cf; }

.portfolio-project__heading > p { max-width: 540px; }

.portfolio-feature-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.portfolio-feature-grid {
  grid-template-rows: repeat(2, 300px);
}

.portfolio-feature-grid .portfolio-media--video {
  grid-row: span 2;
}

.portfolio-grid { grid-auto-rows: 420px; }
.portfolio-grid--four { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 390px; }
.portfolio-media--wide { grid-column: span 1; }

.portfolio-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 18px;
  background: #0e1520;
  box-shadow: 0 16px 35px rgba(15, 23, 42, .10);
}

.portfolio-media:has(video)::before {
  content: "▶  Video";
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 13, 22, .76);
  backdrop-filter: blur(7px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  pointer-events: none;
}

.portfolio-media img,
.portfolio-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.portfolio-media__label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(8, 13, 22, .76);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 700;
}

.portfolio-media__label span {
  display: block;
  margin-bottom: 2px;
  color: #ff9a56;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.portfolio-proof { padding: 0 0 90px; }

.portfolio-archive {
  padding: 88px 0;
  background: #f4f6f8;
}

.portfolio-archive--videos {
  background: #101722;
  color: #fff;
}

.portfolio-archive--videos h2 { color: #fff; }
.portfolio-archive--videos .portfolio-project__heading p { color: #bbc3cf; }

.portfolio-archive--photos {
  border-top: 1px solid #e3e8ee;
  background: #f4f6f8;
}

.portfolio-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-archive-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #2a3545;
  border-radius: 18px;
  background: #172130;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.portfolio-archive-card::before {
  content: "▶  Video";
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 13, 22, .8);
  font-size: .7rem;
  font-weight: 800;
  pointer-events: none;
}

.portfolio-archive-card video {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
  background: #0b111a;
}

.portfolio-archive-card h4 {
  margin: 0;
  padding: 15px 17px 17px;
  color: #fff;
  font-size: .94rem;
  font-weight: 750;
}

.portfolio-archive-card h4 i {
  margin-right: 6px;
  color: #ff8a43;
}

.portfolio-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-photo-card {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #111827;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .09);
}

.portfolio-photo-card img,
.portfolio-photo-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}

.portfolio-photo-card:hover img,
.portfolio-photo-card:hover video { transform: scale(1.025); }

.portfolio-photo-card--video::before {
  content: "▶  Video";
  position: absolute;
  z-index: 2;
  top: 11px;
  right: 11px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 13, 22, .82);
  font-size: .7rem;
  font-weight: 800;
  pointer-events: none;
}

.portfolio-photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 35px 14px 13px;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  background: linear-gradient(transparent, rgba(4, 8, 14, .88));
}

.portfolio-proof__box {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 28px;
  padding: 42px;
  border: 1px solid #e8ecf1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
}

.portfolio-proof__heading {
  margin-bottom: 24px;
}

.portfolio-proof__heading h2 {
  margin: 5px 0 0;
}

.portfolio-proof__box h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.portfolio-proof__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-proof__box--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.portfolio-proof__box--link:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-3px);
  border-color: #f2b28a;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .13);
}

.portfolio-proof__icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff2e9;
  color: #e86f24;
  font-size: 2rem;
}

.portfolio-proof p { max-width: 860px; color: #5d6675; line-height: 1.75; }
.portfolio-proof small { color: #7b8491; }

.portfolio-proof__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #c85318;
  font-size: .92rem;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .portfolio-preview__grid,
  .portfolio-grid,
  .portfolio-grid--four { grid-template-columns: repeat(2, 1fr); }
  .portfolio-feature-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 300px; }
  .portfolio-feature-grid .portfolio-media--video { grid-column: span 2; grid-row: auto; }
  .portfolio-video-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .portfolio-proof__list { grid-template-columns: 1fr; }
  .portfolio-reel {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    min-height: auto;
  }
  .portfolio-reel__card--main { height: 360px; }
  .portfolio-reel__side { grid-template-columns: 1fr 1fr; grid-template-rows: 220px; }
}

@media (max-width: 575.98px) {
  .portfolio-preview,
  .portfolio-project { padding: 60px 0; }
  .portfolio-preview__intro,
  .portfolio-project__heading { align-items: start; flex-direction: column; gap: 14px; }
  .portfolio-preview__grid,
  .portfolio-grid,
  .portfolio-grid--four,
  .portfolio-feature-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .portfolio-preview__card { height: 280px; }
  .portfolio-hero { min-height: 560px; padding: 130px 0 60px; background-position: 58% center; }
  .portfolio-feature-grid .portfolio-media--video { grid-column: auto; }
  .portfolio-media { height: 410px; }
  .portfolio-proof__box { grid-template-columns: 1fr; padding: 28px 20px; }
  .portfolio-video-grid { grid-template-columns: 1fr; }
  .portfolio-archive-card video { height: 420px; }
  .portfolio-local-nav__links { justify-content: flex-start; }
  .portfolio-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .portfolio-reel__card--main { height: 300px; }
  .portfolio-reel__side { grid-template-columns: 1fr; grid-template-rows: repeat(2, 190px); }
  .portfolio-reel__content { left: 18px; right: 18px; bottom: 18px; }
  .portfolio-lightbox { padding: 68px 10px 14px; }
  .portfolio-lightbox__stage {
    width: calc(100vw - 20px);
    height: calc(100vh - 82px);
    height: calc(100dvh - 82px);
  }
  .portfolio-lightbox__close {
    top: 12px;
    right: 12px;
  }
}

/* Botón principal */
.btn-linea {
  background: #4B4B4B; /* gris corporativo */
  color: #fff;
  border: 1px solid white;
}

.btn-linea:hover {
  background: white;
}

/* Botón secundario */
.btn-cotiza {
  border: 3px solid  #4B4B4B;
  color: #2B2B2B;
  background: white;
}

.btn-cotiza:hover {
  background: transparent;
  color: #2B2B2B;
}


/*sesión servicios*/
.services {
  padding: 80px 10%;
  background: #ECECEC;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.services-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2B2B2B;
  font-family: 'Playfair Display', serif;
}

.services-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #666666;
}

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

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.service-card > img {
  width: 100%;
  height: 320px;
  margin-bottom: 20px;
  object-fit: cover; 
  border-bottom: 2px solid grey;
  border-radius: 20px 20px 0 0;
}

.service-card > .service-before,
.service-card > .service-after {
  position: absolute;
  top: 30px;
  left: 20px;
  width: calc(100% - 40px);
  height: 320px;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  will-change: opacity, transform;
}

.service-state {
  position: absolute;
  top: 46px;
  left: 36px;
  z-index: 3;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(13, 27, 42, 0.82);
  backdrop-filter: blur(5px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}

.service-state-after {
  opacity: 0;
  background: rgba(27, 123, 74, 0.9);
}

.service-card:hover > .service-before,
.service-card:focus-visible > .service-before {
  animation: service-before-frame 4.8s ease-in-out infinite;
}

.service-card:hover > .service-after,
.service-card:focus-visible > .service-after {
  animation: service-after-frame 4.8s ease-in-out infinite;
}

.service-card:hover > .service-state-before,
.service-card:focus-visible > .service-state-before {
  animation: service-label-before 4.8s ease-in-out infinite;
}

.service-card:hover > .service-state-after,
.service-card:focus-visible > .service-state-after {
  animation: service-label-after 4.8s ease-in-out infinite;
}

@keyframes service-before-frame {
  0%, 8% { opacity: 0; transform: scale(1.025); }
  16%, 48% { opacity: 1; transform: scale(1); }
  58%, 100% { opacity: 0; transform: scale(1); }
}

@keyframes service-after-frame {
  0%, 48% { opacity: 0; transform: scale(1.025); }
  58%, 92% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1); }
}

@keyframes service-label-before {
  0%, 8% { opacity: 0; transform: translateY(5px); }
  16%, 48% { opacity: 1; transform: translateY(0); }
  58%, 100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes service-label-after {
  0%, 48% { opacity: 0; transform: translateY(5px); }
  58%, 92% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-5px); }
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0d1b2a;
}

.service-card p {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* ---- Subservicios ---- */
.subservices {
  display: none;
}

.subservices ul {
  text-align: left;
  margin: 0;
  padding-left: 18px;
}

.subservices li {
  list-style: disc;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

/* Mostrar subservicios al pasar el mouse */
.service-card:hover .subservices { display: none; }

@media (hover: none) {
  .service-card > .service-before,
  .service-card > .service-after,
  .service-card > .service-state {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card > .service-before,
  .service-card > .service-after,
  .service-card > .service-state {
    animation: none !important;
  }
}

/* ---- Ajuste visual ---- */
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-top: 8px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}



  
/*sesión servicios2*/

.services1 {
  padding: 80px 10%;
  background: #ECECEC;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding: 80px 10% 60px 10%; 
}

.services-title1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2B2B2B;
  
  font-family: 'Playfair Display', serif;
}
.services-subtitle1 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #666666;
}

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

.service-card1 {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card1 img {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
  object-fit: cover; 
  border-bottom: 2px solid grey;
  border-radius: 20px 20px 0 0;
}

.service-card1 h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0d1b2a;
}

.service-card1 p {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.6;
}

.service-card1:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}



.swiper2 {
    width: 100%;
    height: 88vh;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
  }

/* Sección plegable: conserva el contenido completo sin alargar la landing */
.why-fold {
  width: 100%;
  margin: 0;
  padding: 0;
}

.why-fold__details {
  overflow: hidden;
  border-radius: 0;
  background: #142431;
  box-shadow: none;
}

.why-fold__summary {
  position: relative;
  display: flex;
  min-height: clamp(285px, 36vw, 430px);
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  overflow: hidden;
  padding: 40px 10%;
  background:
    linear-gradient(90deg, rgba(4, 14, 21, .68), rgba(4, 14, 21, .28)),
    url("../../assets/img/ing.b9a3462c0f57.png") center / cover;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.why-fold__summary::-webkit-details-marker {
  display: none;
}

.why-fold__intro {
  position: relative;
  z-index: 1;
  max-width: 1050px;
}

.why-fold__intro h2,
.why-fold__intro h3 {
  margin: 0;
  color: #fff;
  font: 700 clamp(2.8rem, 5vw, 5rem)/1.12 'Playfair Display', serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, .6);
}

.why-fold__intro h3 {
  margin-top: 8px;
}

.why-fold__toggle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 54px;
  height: 54px;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: rgba(0, 0, 0, .2);
  font-size: 1.1rem;
  backdrop-filter: blur(8px);
}

.why-fold__toggle i {
  transition: transform .3s ease;
}

.why-fold__details[open] .why-fold__toggle i {
  transform: rotate(180deg);
}

.why-fold__body {
  position: relative;
  background: #fff;
}

.why-fold__body .swiper2 {
  height: 100vh;
}

.why-fold__page-link {
  position: absolute;
  right: 34px;
  bottom: 30px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 19px;
  border-radius: 999px;
  background: #fff;
  color: #182a37;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(7, 21, 31, .2);
}

.why-fold__page-link:hover {
  color: #a86d20;
}
  
  .swiper-slide2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;   
  }

 .swiper-content2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;              /* Ocupar todo el ancho */
  height: 60%;             /* Ocupar todo el alto del slide */
  display: flex;            /* Para distribuir el contenido */
  flex-direction: column;   /* Colocar título arriba y botones abajo */
  justify-content: center;  /* Centrado vertical */
  align-items: flex-start;  /* Comienza desde la izquierda */
  padding: 0 10%;           /* Espacios laterales */
  color: #fff;
  z-index: 10;
  font-family: 'Poppins', sans-serif;
}


/* Título */
.swiper-title2, .swiper-title21 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
   text-shadow: 2px 2px 8px rgba(0,0,0,0.6); 
   color: #fff;
   font-family: 'Playfair Display', serif;
}



/* Subtítulo */
.swiper-subtitle2 {
  font-size: 1.58rem;
  font-weight: 400;
  margin-bottom: 26px;
  color: #e6e6e6;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  font-family: 'Playfair Display', serif;

}



/* Inicio navbar */

/* Transparencia y desenfoque del navbar */
.transparent-navbar {
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparente */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
  z-index: 1030;
  
}

/* Estilo para los links y marca */
.transparent-navbar .navbar-nav .nav-link,
.transparent-navbar .navbar-brand {
  color: white !important;
}



/* Hover bonito */
.transparent-navbar .nav-link:hover {
  color: #2B2B2B !important;
}

/* Padding y estilos previos */
.navbar-nav .nav-item {
 
  padding-left: 1rem;
  padding-right: 1rem;
  white-space: nowrap;
  font-size: 1.1rem !important;

}

.navbar-brand {
  margin-left: 2rem;
  font-size: 1.3rem !important;
  font-style: italic;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  color: white !important;
}

.navbar-brand img {
  margin-right: 1rem; 
}

.nav-link {
  font-size: 1.3rem !important;
  color: white !important;
  transition: color 0.3s ease;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* Fin navbar */


/* footer section start */

.footer_section {
  background-color: #ECECEC; /* azul muy claro de fondo */
  padding: 46px 20px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  font-size: 40px;
  margin-bottom: 40px;
  color: #0d1b2a;
  font-family: 'Playfair Display', serif;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Playfair Display', serif;
  
}

.footer-list li {
  font-size: 20px;
  color:  #0d1b2a;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.footer-coverage__summary {
  max-width: 520px;
  margin: -24px 0 20px;
  color: #52616d;
  font-size: .98rem;
  line-height: 1.55;
}

.footer-coverage__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.footer-coverage__list li {
  display: flex;
  min-height: 38px;
  align-items: center;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(13, 27, 42, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .48);
  font-family: inherit;
  font-size: .9rem;
}

.footer-coverage__button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 11px 17px;
  border-radius: 999px;
  background: #0d1b2a;
  color: #fff;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.footer-coverage__button:hover {
  background: #075e54;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .footer-coverage__summary {
    margin-top: -14px;
    text-align: left;
  }

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-link i {
  font-size: 3rem; /* iconos más grandes */
  color: #002855;  /* azul oscuro */
  transition: color 0.3s;
}

.social-link i:hover {
  color: #004080;
}

.footer-text {
  margin-top: 8px;
  font-size: 20px;
  color: #002855;
  font-family: 'Playfair Display', serif;
}

.social-bottom {
  align-self: flex-end; /* facebook e instagram más abajo */
}


/* footer section end */

.copyright_section {
    width: 100%;
    float: left;
    background-color:  #2B2B2B;
    height: auto;
    
}

.copyright_text {
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    margin-left: 0px;
    padding: auto;
}

.copyright_text a {
    color: #ffffff;
}

.copyright_text a:hover {
    color: #e27141;
}


/* Vídeos responsivos para la sección de embebido */
.embed_videos_section {
  background: linear-gradient(135deg, #f8f9fa, #eef4f9); /* fondo con leve degradado */
  padding: 80px 0;
}

.embed_taital {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #2B2B2B; 
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

.embed_text {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 18px;
  color: #444;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.embed_videos_section .card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.embed_videos_section .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.embed_videos_section .card-body {
  padding: 1.2rem;
  text-align: center;
}

.embed_videos_section .card-title {
  font-size: 1.2rem;
  color: #d48872; /* toque cálido */
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.embed_videos_section .card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.embed_videos_section .ratio {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 4px solid red; /* detalle debajo del video */
}


.galeria-img {
      width: 150%;
      height: 700px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
}

.galeria-img:hover {
      transform: scale(1.03);
   }

.mb-4 {
      margin-bottom: 1.5rem;
   }
   
/* Modal personalizado */
.cotizar-modal {
  border-radius: 18px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}


.testimonials {
  background:  #0d1b2a; /* fondo gris muy claro */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 60px;
}

.testimonials-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: white; /* azul oscuro */
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0066ff;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #002855;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #777;
}



/* Encabezado */
.cotizar-modal .modal-header {
  background:  #111827; /* Azul oscuro corporativo */
  color: #fff;
  border-bottom: none;
}

.cotizar-modal .modal-title span {
  color: #1e88e5; /* Azul brillante */
  font-weight: bold;
}
.cotizar-modal .modal-title {
  color: white;
}

/* Inputs */
.cotizar-modal .form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #dcdcdc;
  transition: all 0.3s;
}

.cotizar-modal .form-control:focus {
  border-color: #1e88e5;
  box-shadow: 0 0 8px rgba(30, 136, 229, 0.3);
}

/* Labels */
.cotizar-modal .form-label {
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

/* Botón principal */
.btn-submit {
  background:  #111827;
  color: white;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  width: 100%;
  border: none;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background:  gray;
}


.whatsapp-btn {
  position: fixed;
  bottom: 30px;       /* separación inferior */
  right: 30px;        /* separación derecha */
  background: #0056b3; 
  color: white;
  font-size: 3rem;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background 0.3s, transform 0.2s;
  z-index: 9999 !important; /* Siempre por encima */
}

.whatsapp-btn:hover {
  background: green;  /* azul más oscuro al hover */
  color: white;
  transform: scale(1.1);
}

.whatsapp-btn i {
  font-size: 3rem; /* ícono más grande */
}



/* Hover */
.btn-destaqueo:hover {
  background: white;
  color: #0056b3;        /* mantiene contraste al pasar el mouse */
  transform: scale(1.08);
}

/* Animación para destacar */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}


.team_section {
  background: #ECECEC;/* gris claro elegante */
  padding: 80px 20px;
  text-align: center;
}

.team_title {
  font-size: 3rem;
  font-weight: 700;
  color: #2B2B2B; 
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.team_subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 50px;
}

.team_card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.team_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team_img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team_name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2B2B2B;
}

.team_role {
  font-size: 1rem;
  font-weight: 500;
  color: gray;
  margin-bottom: 10px;
}

.team_desc {
  font-size: 0.95rem;
  color: #444;
}



.aliados-section {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.aliados-section h2 {
  font-size: 3rem;
  color:  #2B2B2B;
  margin-bottom: 10px;
  font-weight: 700;
   font-family: 'Playfair Display', serif;
}

.aliados-subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 40px;
   font-family: 'Playfair Display', serif;
}

.aliados-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.aliado {
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aliado img {
  max-width: 100%;
  height: 100px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 10px;
   
}

.aliado span {
  display: block;
  color: #2B2B2B;
  font-weight: 600;
  font-size: 0.9rem;
   font-family: 'Playfair Display', serif;
}

.aliado:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


/* ============================= */
/* 📱 Mejoras Responsivas */
/* ============================= */

/* Celulares pequeños */
@media (max-width: 576px) {
  /* Ajuste de títulos */
  h1, .swiper-title{
    font-size: 2rem;
    text-align: center;
     
  }

  h2, .services-title, .about-title, .team_title, .testimonials-title {
    font-size: 1.5rem;
    text-align: center;
  }

  p, .swiper-subtitle {
    font-size: 0.9rem;
    text-align: center;
  }

  /* 🔹 Botones más compactos en celular */
  .btn, .btn-linea, .btn-cotiza, .btn-ver-mas, .btn-submit {
    font-size: 0.85rem;     /* Texto un poco más pequeño */
    padding: 8px 16px;      /* Menos alto y ancho */
    border-radius: 8px;     /* Bordes más suaves */
    display: inline-block;  /* Que no se estiren a todo el ancho */
    margin: 8px auto;
  }

  /* Centrar los botones importantes */
  .btn-contact, .btn-cotiza {
    display: block;         /* Cada uno en su línea */
    width: auto;            /* No ocupan todo el ancho */
    max-width: 220px;       /* Límite para que no se vean gigantes */
  }

  /* Grillas en 1 columna */
  .services-grid,
  .services-grid1,
  .team-container,
  .videos-container {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* Footer centrado */
  footer {
    text-align: center;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* Tablets (pantallas medianas) */
@media (min-width: 577px) and (max-width: 768px) {
  h1, .swiper-title {
    font-size: 2.5rem;
  }

  h2, .services-title, .about-title, .team_title, .testimonials-title {
    font-size: 2rem;
  }

  /* Botones un poco más equilibrados en tablets */
  .btn, .btn-linea, .btn-cotiza, .btn-ver-mas, .btn-submit {
    font-size: 1rem;
    padding: 10px 22px;
  }

  /* Grillas en 2 columnas */
  .services-grid,
  .services-grid1,
  .team-container,
  .videos-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sección About en columna */
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

/* Laptops pequeñas */
@media (min-width: 769px) and (max-width: 1200px) {
  /* Grillas en 3 columnas */
  .services-grid,
  .services-grid1,
  .team-container,
  .videos-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Por defecto: mostrar versión escritorio, ocultar versión móvil */
.swiper-content2 {
  display: block;
}

.elegirnos-mobile {
  display: none;
  padding: 20px;
  background: #fff; /* para que no quede texto blanco sobre blanco */
  color: #333;
}

/* En móviles (pantallas menores a 768px) */
@media (max-width: 768px) {
  .swiper-content2 {
    display: none; /* Ocultamos la versión escritorio */
  }

  .elegirnos-mobile {
    display: block; /* Mostramos la versión móvil */
    text-align: center;
  }

  .elegirnos-mobile h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #444444;
  }

  .elegirnos-mobile p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #666666;
  }
}

/* Institutional pages: editorial presentation */
.internal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 32, .86) 0%, rgba(10, 22, 32, .4) 58%, rgba(10, 22, 32, .12) 100%);
}

.internal-hero > video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}

.internal-hero__overlay {
  z-index: 2;
}

.internal-intro--featured {
  padding: clamp(34px, 5vw, 64px);
  border-left: 4px solid #c69b4b;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 34, 48, .08);
}

.institutional-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: -20px auto 110px;
  overflow: hidden;
  border-radius: 22px;
  background: #162633;
  color: #fff;
}

.institutional-stats article {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.institutional-stats article:last-child {
  border-right: 0;
}

.institutional-stats strong {
  color: #e0bb73;
  font: 700 clamp(2.2rem, 4vw, 3.8rem)/1 'Playfair Display', serif;
}

.institutional-stats span {
  margin-top: 12px;
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.institutional-story {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(50px, 8vw, 110px);
  max-width: 1200px;
  margin: 0 auto 120px;
  align-items: center;
}

.institutional-story__media {
  position: relative;
  min-height: 650px;
}

.institutional-story__main {
  width: 82%;
  height: 570px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(12, 27, 39, .18);
}

.institutional-story__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 300px;
  border: 10px solid #f5f4f0;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(12, 27, 39, .22);
}

.institutional-story__content p {
  margin: 24px 0 30px;
  color: #57636d;
  font-size: 1.1rem;
  line-height: 1.85;
}

.internal-split__portrait {
  position: relative;
}

.internal-split__portrait img {
  display: block;
  height: 620px;
  min-height: 0;
  object-position: center 30%;
}

.internal-split__portrait span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 17px 20px;
  border-radius: 12px;
  background: rgba(16, 33, 46, .88);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.why-proof {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: repeat(2, 280px);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto 100px;
}

.why-proof article {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #162633;
}

.why-proof__lead {
  grid-row: 1 / 3;
}

.why-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.why-proof article:hover img {
  transform: scale(1.045);
}

.why-proof article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 23, 33, .9), rgba(9, 23, 33, 0) 68%);
}

.why-proof article div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  color: #fff;
}

.why-proof span {
  color: #e0bb73;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.why-proof h2,
.why-proof h3 {
  margin: 10px 0 0;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.why-proof h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.process-grid--connected {
  position: relative;
}

.process-grid--connected::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #b68936, #e2c484);
}

.process-grid--connected article {
  position: relative;
  border-top: 0;
  box-shadow: 0 16px 40px rgba(17, 34, 48, .07);
}

@media (max-width: 900px) {
  .institutional-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .institutional-stats article:nth-child(2) {
    border-right: 0;
  }

  .institutional-story {
    grid-template-columns: 1fr;
  }

  .why-proof {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 280px;
  }

  .why-proof__lead {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .internal-hero::after {
    background: linear-gradient(0deg, rgba(10, 22, 32, .88), rgba(10, 22, 32, .28));
  }

  .institutional-stats {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 75px;
  }

  .institutional-stats article {
    min-height: 128px;
    padding: 22px 18px;
  }

  .institutional-story {
    margin-bottom: 80px;
  }

  .institutional-story__media {
    min-height: 490px;
  }

  .institutional-story__main {
    width: 92%;
    height: 430px;
  }

  .institutional-story__accent {
    width: 56%;
    height: 210px;
    border-width: 7px;
  }

  .internal-split__portrait img {
    height: 500px;
  }

  .why-proof {
    display: flex;
    flex-direction: column;
  }

  .why-proof article,
  .why-proof__lead {
    min-height: 360px;
  }
}

/* Geographic coverage */
.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  max-width: 1280px;
  margin: clamp(70px, 9vw, 130px) auto;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(17, 34, 48, .1);
}

.coverage-section__map {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 22%, rgba(198, 155, 75, .22), transparent 28%),
    radial-gradient(circle at 78% 74%, rgba(36, 100, 103, .28), transparent 34%),
    linear-gradient(145deg, #0f202d, #1d3944 62%, #132a36);
}

.coverage-section__map::before,
.coverage-section__map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 48% 52% 42% 58% / 55% 44% 56% 45%;
  transform: rotate(-18deg);
}

.coverage-section__map::before {
  inset: 8% 16% 9% 14%;
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, .025),
    0 0 0 78px rgba(255, 255, 255, .018);
}

.coverage-section__map::after {
  inset: 25% 31% 23% 30%;
  border-color: rgba(226, 189, 114, .18);
}

.coverage-map__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 480px;
  border-radius: 50%;
  background: rgba(222, 179, 94, .08);
  filter: blur(30px);
  transform: translate(-50%, -50%) rotate(-12deg);
}

.coverage-map__route {
  position: absolute;
  top: 12%;
  bottom: 16%;
  left: 49%;
  width: 6px;
  border: 1px solid rgba(235, 199, 129, .7);
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(226, 189, 114, .22);
  transform: rotate(9deg);
}

.coverage-map__pin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: rgba(20, 44, 56, .84);
  color: #e5bd70;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  backdrop-filter: blur(8px);
}

.coverage-map__pin::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(226, 189, 114, .22);
  border-radius: 50%;
}

.coverage-map__pin--north { top: 17%; left: 40%; }
.coverage-map__pin--center { top: 43%; left: 54%; width: 64px; height: 64px; font-size: 1.35rem; }
.coverage-map__pin--east { top: 57%; left: 31%; }
.coverage-map__pin--south { top: 72%; left: 57%; }

.coverage-map__label {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 38px;
  left: 36px;
  padding: 23px 25px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(10, 26, 36, .7);
  color: #fff;
  backdrop-filter: blur(12px);
}

.coverage-map__label span {
  display: block;
  margin-bottom: 7px;
  color: #e4bc70;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.coverage-map__label strong {
  font: 700 clamp(1.45rem, 3vw, 2.35rem)/1.15 'Playfair Display', serif;
}

.coverage-section__content {
  padding: clamp(46px, 6vw, 82px);
}

.coverage-section__content h2 {
  margin: 0;
  color: #16212c;
  font: 700 clamp(2.45rem, 4.5vw, 4.5rem)/1.03 'Playfair Display', serif;
}

.coverage-section__content > p {
  margin: 22px 0 30px;
  color: #63707a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.coverage-section__cities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-section__cities li {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border: 1px solid #e5e3dd;
  border-radius: 10px;
  color: #31424f;
  font-weight: 700;
}

.coverage-section__cities i {
  color: #b68936;
}

.coverage-section__outside {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 26px 0;
  padding: 18px;
  border-radius: 14px;
  background: #f3f1eb;
}

.coverage-section__outside > i {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #162633;
  color: #e2bd72;
}

.coverage-section__outside div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.coverage-section__outside strong {
  color: #263744;
}

.coverage-section__outside span {
  color: #69757e;
  font-size: .9rem;
  line-height: 1.5;
}

.coverage-section__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 23px;
  border-radius: 999px;
  background: #162633;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.coverage-section__button:hover {
  background: #075e54;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.coverage-section__button i {
  font-size: 1.2rem;
}

@media (max-width: 1050px) {
  .coverage-section {
    margin-right: 24px;
    margin-left: 24px;
  }
}

@media (max-width: 820px) {
  .coverage-section {
    grid-template-columns: 1fr;
  }

  .coverage-section__map {
    min-height: 480px;
  }
}

@media (max-width: 600px) {
  .coverage-section {
    margin: 65px 14px;
    border-radius: 22px;
  }

  .coverage-section__map {
    min-height: 420px;
  }

  .coverage-section__content {
    padding: 40px 20px;
  }

  .coverage-section__content h2 {
    font-size: 2.3rem;
  }

  .coverage-section__content > p {
    text-align: left;
  }

  .coverage-section__cities {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .coverage-section__cities li {
    min-height: 42px;
    padding: 8px 10px;
    font-size: .88rem;
  }

  .coverage-map__label {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }
}

/* Quick quote section */
.quick-quote {
  display: grid;
  grid-template-columns: minmax(290px, .7fr) minmax(0, 1.3fr);
  max-width: 1240px;
  margin: clamp(40px, 5.5vw, 68px) auto;
  overflow: hidden;
  border-radius: 30px;
  background: #f5f4f0;
  box-shadow: 0 28px 80px rgba(17, 34, 48, .12);
}

.quick-quote__visual {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: #162633;
}

.quick-quote__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 25, 36, .94), rgba(10, 25, 36, .08) 72%);
}

.quick-quote__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.quick-quote:hover .quick-quote__visual > img {
  transform: scale(1.025);
}

.quick-quote__visual-copy {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 36px;
  left: 34px;
  color: #fff;
}

.quick-quote__visual-copy span {
  display: block;
  margin-bottom: 12px;
  color: #e2bd72;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quick-quote__visual-copy strong {
  font: 700 clamp(1.8rem, 3vw, 3rem)/1.15 'Playfair Display', serif;
}

.quick-quote__content {
  padding: clamp(28px, 3.8vw, 46px);
}

.quick-quote__content h2 {
  max-width: 760px;
  margin: 0;
  color: #16212c;
  font: 700 clamp(2.1rem, 3.5vw, 3.55rem)/1.04 'Playfair Display', serif;
}

.quick-quote__content > p {
  max-width: 720px;
  margin: 16px 0 26px;
  color: #63707a;
  font-size: 1.05rem;
  line-height: 1.6;
}

.quick-quote__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 18px;
}

.quick-quote__field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.quick-quote__field--full {
  grid-column: 1 / -1;
}

.quick-quote__field label {
  margin: 0;
  color: #253442;
  font-size: .9rem;
  font-weight: 750;
}

.quick-quote__field label small {
  color: #76818a;
  font-weight: 500;
}

.quick-quote__field input,
.quick-quote__field select,
.quick-quote__field textarea {
  width: 100%;
  border: 1px solid #d8dcd9;
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: #172431;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.quick-quote__field input,
.quick-quote__field select {
  height: 48px;
  padding: 0 15px;
}

.quick-quote__field textarea {
  min-height: 96px;
  padding: 14px 15px;
  resize: vertical;
}

.quick-quote__field input:focus,
.quick-quote__field select:focus,
.quick-quote__field textarea:focus {
  border-color: #b68936;
  box-shadow: 0 0 0 4px rgba(182, 137, 54, .13);
}

.quick-quote__file {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.quick-quote__upload {
  display: flex;
  min-height: 74px;
  flex-direction: row !important;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border: 1px dashed #b6aa91;
  border-radius: 14px;
  background: rgba(255, 255, 255, .65);
  cursor: pointer;
}

.quick-quote__upload:hover {
  border-color: #b68936;
  background: #fff;
}

.quick-quote__upload i {
  color: #b68936;
  font-size: 1.8rem;
}

.quick-quote__upload span {
  display: flex;
  flex-direction: column;
  color: #74808a;
  font-size: .82rem;
}

.quick-quote__upload strong {
  color: #263744;
  font-size: .98rem;
}

.quick-quote__preview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.quick-quote__preview:empty {
  display: none;
}

.quick-quote__preview figure {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #dfe3e3;
}

.quick-quote__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-quote__preview span {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  overflow: hidden;
  padding: 3px 5px;
  border-radius: 4px;
  background: rgba(12, 27, 39, .78);
  color: #fff;
  font-size: .64rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-quote__hint {
  color: #737f88;
  line-height: 1.5;
}

.quick-quote__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
}

.quick-quote__actions button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 0;
  border-radius: 999px;
  background: #162633;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.quick-quote__actions button:hover {
  background: #075e54;
  transform: translateY(-2px);
}

.quick-quote__actions button i {
  font-size: 1.25rem;
}

.quick-quote__actions > small {
  max-width: 280px;
  color: #77828a;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .quick-quote {
    margin-right: 24px;
    margin-left: 24px;
    grid-template-columns: .7fr 1.3fr;
  }
}

@media (max-width: 820px) {
  .quick-quote {
    grid-template-columns: 1fr;
  }

  .quick-quote__visual {
    min-height: 290px;
  }
}

@media (max-width: 600px) {
  .why-fold {
    margin: 0;
    padding: 0;
  }

  .why-fold__details {
    border-radius: 0;
  }

  .why-fold__summary {
    min-height: 285px;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    padding: 30px 24px;
    background-position: center;
  }

  .why-fold__intro h2,
  .why-fold__intro h3 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .why-fold__toggle {
    width: 46px;
    height: 46px;
    padding: 0;
  }

  .why-fold__body .swiper2 {
    height: auto;
    min-height: 0;
  }

  .why-fold__page-link {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 20px 24px;
  }

  .quick-quote {
    margin: 38px 14px;
    border-radius: 22px;
  }

  .quick-quote__visual {
    min-height: 230px;
  }

  .quick-quote__visual-copy {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .quick-quote__content {
    padding: 25px 20px;
  }

  .quick-quote__content h2 {
    font-size: 2.25rem;
  }

  .quick-quote__content > p {
    text-align: left;
  }

  .quick-quote__form {
    grid-template-columns: 1fr;
  }

  .quick-quote__field--full {
    grid-column: auto;
  }

  .quick-quote__preview {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-quote__actions {
    align-items: stretch;
    flex-direction: column;
  }
}


/* =========================
   SERVICE DETAIL FINAL
========================= */

.service-detail-hero {
  padding: 90px 0 50px;
  background:
    linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.service-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #6b7280;
}

.service-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.25s ease;
}

.service-breadcrumb a:hover {
  color: #111827;
}

.service-breadcrumb span {
  margin: 0 8px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
}

.service-detail-badge,
.section-badge {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #111827;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-detail-text h1 {
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.service-detail-text h2 {
  font-size: 1.08rem;
  line-height: 1.5;
  color: #374151;
  font-weight: 600;
  margin-bottom: 14px;
  max-width: 90%;
}

.service-detail-description {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 18px;
  max-width: 92%;
}

.service-detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.highlight-pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 600;
}

.service-detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-service-primary,
.btn-service-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-service-primary {
  background: #111827;
  color: #fff;
  border: 1px solid #111827;
}

.btn-service-primary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.btn-service-secondary {
  background: #fff;
  color: #111827;
  border: 1px solid #d1d5db;
}

.btn-service-secondary:hover {
  background: #f9fafb;
  color: #111827;
  transform: translateY(-2px);
}

.service-detail-image-wrap {
  position: relative;
}

.service-detail-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.10);
}

.service-detail-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.service-detail-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}

.service-trust-section {
  padding: 18px 0 55px;
  background: #ffffff;
}

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

.trust-card {
  background: #ffffff;
  border: 1px solid #e9eef5;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  text-align: left;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111827;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.trust-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.65;
  font-size: 0.95rem;
}

.service-detail-items {
  padding: 55px 0 65px;
  background: #f8fafc;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.section-header p {
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.7;
}

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

.service-item-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f1f5f9;
}

.service-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.10);
}

.service-item-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-item-body {
  padding: 18px;
}

.service-item-body h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.4;
}

.service-item-body p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 0;
}

.service-benefits-section {
  padding: 0 0 65px;
  background: #ffffff;
}

.benefits-box {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  border-radius: 24px;
  padding: 36px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.benefits-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.benefits-text p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0;
  font-size: 0.98rem;
}

.benefits-list {
  display: grid;
  gap: 12px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  line-height: 1.55;
  font-weight: 600;
  font-size: 0.95rem;
}

.service-cta-final {
  padding: 0 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.service-cta-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  border: 1px solid #edf0f3;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.service-cta-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.service-cta-box p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #6b7280;
}

.service-back-link {
  margin-top: 18px;
}

.service-back-link a {
  text-decoration: none;
  color: #374151;
  font-weight: 700;
  transition: color 0.25s ease;
}

.service-back-link a:hover {
  color: #111827;
}

@media (max-width: 991.98px) {
  .service-detail-grid,
  .benefits-box {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .service-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-text h1 {
    font-size: 2.35rem;
  }

  .service-detail-image img {
    height: 360px;
  }
}

@media (max-width: 575.98px) {
  .service-detail-hero {
    padding: 80px 0 40px;
  }

  .service-detail-text h1 {
    font-size: 2rem;
  }

  .service-detail-text h2 {
    font-size: 1rem;
    max-width: 100%;
  }

  .service-detail-description {
    max-width: 100%;
  }

  .trust-grid,
  .service-items-grid {
    grid-template-columns: 1fr;
  }

  .service-item-image img,
  .service-detail-image img {
    height: 220px;
  }

  .section-header h2,
  .benefits-text h2,
  .service-cta-box h2 {
    font-size: 1.5rem;
  }

  .benefits-box,
  .service-cta-box {
    padding: 26px 16px;
  }

  .btn-service-primary,
  .btn-service-secondary {
    width: 100%;
  }
}

/* Premium featured projects */
.portfolio-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(211, 154, 69, .11), transparent 28%),
    #f6f4ef;
}

.portfolio-preview__intro h2 {
  color: var(--premium-ink);
  font-family: 'Playfair Display', serif;
  letter-spacing: -.025em;
}

.portfolio-preview .portfolio-eyebrow {
  color: #b77928;
}

.portfolio-preview .portfolio-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 17px;
  border: 1px solid rgba(16, 35, 48, .22);
  border-radius: 999px;
  color: var(--premium-ink);
  font-size: .82rem;
  letter-spacing: .025em;
}

.portfolio-preview .portfolio-link:hover {
  border-color: var(--premium-gold);
  background: var(--premium-gold);
  color: var(--premium-ink);
  transform: translateY(-2px);
}

.portfolio-preview .portfolio-reel {
  gap: 20px;
}

.portfolio-preview .portfolio-reel__side {
  gap: 20px;
}

.portfolio-preview .portfolio-reel__card {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(13, 29, 41, .15);
}

.portfolio-preview .portfolio-reel__card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color .3s ease;
}

.portfolio-preview .portfolio-reel__card:hover::after {
  border-color: rgba(211, 154, 69, .8);
}

.portfolio-preview .portfolio-reel__shade {
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgba(4, 14, 21, .95));
}

.portfolio-preview .portfolio-reel__content {
  z-index: 3;
}

.portfolio-preview .portfolio-reel__content small {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  padding: 5px 9px;
  border: 1px solid rgba(239, 197, 121, .45);
  border-radius: 999px;
  background: rgba(5, 18, 27, .5);
  color: #efc579;
  backdrop-filter: blur(7px);
}

.portfolio-reel__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: .73rem;
  font-weight: 600;
}

.portfolio-reel__meta i {
  color: #efc579;
}

.portfolio-preview .portfolio-reel__content em {
  width: fit-content;
  margin-top: 12px;
  color: #fff;
  transition: color .25s ease, gap .25s ease;
}

.portfolio-preview .portfolio-reel__card:hover em {
  gap: 12px;
  color: #efc579;
}

.portfolio-preview .portfolio-reel__side .portfolio-reel__content {
  bottom: 18px;
}

.portfolio-preview .portfolio-reel__side .portfolio-reel__content em {
  margin-top: 8px;
  font-size: .72rem;
}

@media (max-width: 700px) {
  .portfolio-preview {
    padding-bottom: 56px;
  }

  .portfolio-preview__intro {
    padding-right: 10px;
    padding-left: 10px;
  }

  .portfolio-preview .portfolio-link {
    min-height: 42px;
  }

  .portfolio-preview .portfolio-reel {
    display: flex;
    width: auto;
    height: auto;
    gap: 14px;
    overflow-x: auto;
    margin-right: -12px;
    margin-left: -12px;
    padding: 6px 12px 24px;
    scroll-padding-left: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .portfolio-preview .portfolio-reel::-webkit-scrollbar {
    display: none;
  }

  .portfolio-preview .portfolio-reel__side {
    display: contents;
  }

  .portfolio-preview .portfolio-reel__card,
  .portfolio-preview .portfolio-reel__card--main {
    height: 360px;
    flex: 0 0 min(84vw, 355px);
    scroll-snap-align: start;
  }

  .portfolio-preview .portfolio-reel__content strong,
  .portfolio-preview .portfolio-reel__side .portfolio-reel__content strong {
    font-size: 1.2rem;
  }
}

/* Premium compact about section */
.about_section.about-premium {
  position: relative;
  overflow: hidden;
  margin-bottom: 54px;
  padding: 68px 0 62px;
  background:
    radial-gradient(circle at 10% 20%, rgba(211, 154, 69, .13), transparent 24%),
    linear-gradient(125deg, #0b1c28, #142d3b);
}

.about-premium::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(239, 197, 121, .12);
  border-radius: 50%;
  pointer-events: none;
}

.about-premium .about_taital_main {
  max-width: none;
  padding: 8px clamp(34px, 4.6vw, 68px) 8px clamp(42px, 6vw, 88px);
}

.about-premium__eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #efc579;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-premium__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.about-premium .about_taital {
  width: 100%;
  margin: 0 0 2px;
  padding: 0;
  color: rgba(255, 255, 255, .58);
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-premium .about_subtitle {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.about-premium .about_subtitle2 {
  margin: 5px 0 4px;
  padding: 0;
  color: #efc579;
  font-size: clamp(1.65rem, 2.7vw, 2.75rem);
  line-height: 1.1;
}

.about-premium .about_text {
  padding-top: 16px;
  color: rgba(255, 255, 255, .78);
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.62;
  text-align: left;
}

.about-premium .readmore_bt {
  width: auto;
  margin-top: 28px;
}

.about-premium .readmore_bt a {
  display: inline-flex;
  width: auto;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  padding: 10px 19px;
  border: 1px solid rgba(239, 197, 121, .75);
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
}

.about-premium .readmore_bt a:hover {
  border-color: #efc579;
  background: #efc579;
  color: #102330;
  transform: translateY(-2px);
}

.about-premium .padding_right_0 {
  padding-right: clamp(24px, 4vw, 64px);
}

.about-premium .swiper-about {
  position: relative;
  height: min(700px, 75vh);
  border: 1px solid rgba(239, 197, 121, .24);
  border-radius: 22px;
  background: #0a1822;
  box-shadow: 0 28px 70px rgba(2, 11, 17, .36);
}

@media (min-width: 768px) {
  .about-premium .row {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(380px, .86fr);
    align-items: center;
  }

  .about-premium .row > [class*="col-"] {
    width: auto;
    max-width: none;
  }
}

.about-premium .swiper-about::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(5, 17, 25, .48), transparent 32%);
}

.about-premium .swiper-about .swiper-slide img {
  border-radius: 22px;
  filter: saturate(.93) contrast(1.03);
}

.about-premium__caption {
  position: absolute;
  z-index: 5;
  right: 82px;
  bottom: 26px;
  left: 28px;
  color: rgba(255, 255, 255, .84);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.about-premium .swiper-button-prev,
.about-premium .swiper-button-next {
  z-index: 6 !important;
  top: auto;
  right: 20px;
  bottom: 18px;
  left: auto;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: rgba(7, 20, 29, .5);
  color: #fff;
  backdrop-filter: blur(8px);
}

.about-premium .swiper-button-prev {
  right: 66px;
}

.about-premium .swiper-button-prev::after,
.about-premium .swiper-button-next::after {
  font-size: .78rem;
  font-weight: 800;
}

.about-premium .swiper-button-prev:hover,
.about-premium .swiper-button-next:hover {
  border-color: #efc579;
  background: #efc579;
  color: #102330;
}

@media (max-width: 767px) {
  .about_section.about-premium {
    padding: 54px 0 0;
  }

  .about-premium .about_taital_main {
    padding: 0 24px 42px;
  }

  .about-premium .about_subtitle {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .about-premium .about_text {
    padding-top: 14px;
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .about-premium .padding_right_0 {
    padding: 0;
  }

  .about-premium .swiper-about {
    height: 430px;
    max-width: none;
    border-width: 1px 0 0;
    border-radius: 0;
  }

  .about-premium .swiper-about .swiper-slide img,
  .about-premium .swiper-about::after {
    border-radius: 0;
  }
}

/* Service detail: premium architectural edition */
.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 72px;
  background:
    radial-gradient(circle at 88% 8%, rgba(211, 154, 69, .2), transparent 30%),
    linear-gradient(135deg, #f7f4ed 0%, #e8eeef 100%);
}

.service-detail-hero::before {
  position: absolute;
  width: 420px;
  height: 420px;
  left: -220px;
  bottom: -250px;
  border: 1px solid rgba(16, 35, 48, .1);
  border-radius: 50%;
  content: "";
}

.service-detail-hero .container {
  position: relative;
  z-index: 1;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
  color: #75838b;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  letter-spacing: .035em;
}

.service-breadcrumb strong {
  max-width: 42vw;
  overflow: hidden;
  color: var(--premium-ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-detail-grid {
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(42px, 6vw, 84px);
}

.service-detail-badge,
.service-detail-items .section-badge,
.service-cta-final .section-badge {
  padding: 8px 14px;
  border: 1px solid rgba(183, 121, 40, .28);
  background: rgba(255, 255, 255, .7);
  color: #a66b23;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-detail-text h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--premium-ink);
  font: 700 clamp(2.8rem, 5.2vw, 5rem)/.98 'Playfair Display', serif;
  letter-spacing: -.045em;
}

.service-detail-text h2 {
  max-width: 620px;
  margin-bottom: 18px;
  color: #405763;
  font-size: 1.08rem;
  line-height: 1.65;
}

.service-detail-description {
  max-width: 640px;
  color: #60717a;
  font-size: 1.02rem;
  line-height: 1.78;
}

.service-detail-highlights {
  gap: 9px;
  margin: 24px 0 28px;
}

.service-detail-highlights .highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(16, 35, 48, .1);
  background: rgba(255, 255, 255, .68);
  color: #344b57;
  font-size: .78rem;
}

.service-detail-highlights .highlight-pill i {
  color: #b77928;
  font-size: .68rem;
}

.service-detail-actions {
  gap: 12px;
}

.btn-service-primary,
.btn-service-secondary {
  gap: 9px;
  min-height: 50px;
  padding: 12px 21px;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  letter-spacing: .02em;
}

.btn-service-primary {
  border-color: var(--premium-ink);
  background: var(--premium-ink);
  box-shadow: 0 12px 28px rgba(16, 35, 48, .18);
}

.btn-service-primary:hover {
  border-color: #c48a39;
  background: #c48a39;
  color: #102330;
}

.btn-service-secondary {
  border-color: rgba(16, 35, 48, .18);
  background: rgba(255, 255, 255, .65);
  color: var(--premium-ink);
}

.service-detail-image-wrap {
  padding: 18px 18px 0 0;
}

.service-detail-image-wrap::before {
  position: absolute;
  inset: 0 0 38px 38px;
  border: 1px solid rgba(183, 121, 40, .46);
  border-radius: 26px;
  content: "";
}

.service-detail-image {
  border-radius: 24px 24px 80px 24px;
  box-shadow: 0 28px 60px rgba(16, 35, 48, .2);
}

.service-detail-image img {
  height: 500px;
  filter: saturate(.92) contrast(1.04);
}

.service-detail-image-seal {
  position: absolute;
  right: -6px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  width: 146px;
  height: 146px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  flex-direction: column;
  gap: 9px;
  text-align: center;
  border: 6px solid #f3f1ea;
  border-radius: 50%;
  background: var(--premium-ink);
  color: #fff;
  box-shadow: 0 16px 35px rgba(16, 35, 48, .25);
}

.service-detail-image-seal i {
  color: #e3ae62;
  font-size: 1.45rem;
}

.service-detail-image-seal span {
  font: 700 .7rem/1.35 'Poppins', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-trust-section {
  padding: 50px 0 66px;
  background: #fff;
}

.trust-grid {
  gap: 20px;
}

.trust-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-color: rgba(16, 35, 48, .09);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(16, 35, 48, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.trust-card::after {
  position: absolute;
  width: 64px;
  height: 3px;
  left: 26px;
  bottom: 0;
  background: var(--premium-gold);
  content: "";
}

.trust-card:hover {
  border-color: rgba(211, 154, 69, .5);
  box-shadow: 0 22px 45px rgba(16, 35, 48, .11);
  transform: translateY(-5px);
}

.trust-icon {
  background: #f5efe5;
  color: #b77928;
}

.trust-card h3,
.service-item-body h3 {
  color: var(--premium-ink);
  font-family: 'Playfair Display', serif;
}

.service-detail-items {
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 8% 15%, rgba(211, 154, 69, .09), transparent 25%),
    #f2f3f0;
}

.service-detail-items .section-header {
  margin-bottom: 38px;
}

.service-detail-items .section-header h2 {
  color: var(--premium-ink);
  font: 700 clamp(2.15rem, 4vw, 3.2rem)/1.1 'Playfair Display', serif;
  letter-spacing: -.025em;
}

.service-items-grid {
  gap: 22px;
}

.service-item-card {
  border-color: rgba(16, 35, 48, .08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(16, 35, 48, .08);
}

.service-item-image {
  position: relative;
  overflow: hidden;
}

.service-item-image img {
  height: 225px;
  transition: transform .6s ease, filter .35s ease;
}

.service-item-card:hover .service-item-image img {
  filter: saturate(1.05);
  transform: scale(1.045);
}

.service-item-number {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(16, 35, 48, .86);
  color: #fff;
  font: 700 .74rem 'Poppins', sans-serif;
  backdrop-filter: blur(8px);
}

.service-item-body {
  padding: 22px;
}

.service-item-body h3 {
  font-size: 1.2rem;
  line-height: 1.35;
}

.service-benefits-section {
  padding: 70px 0;
  background: #fff;
}

.benefits-box {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(211, 154, 69, .22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(211, 154, 69, .2), transparent 32%),
    linear-gradient(135deg, #0c1d28 0%, #193846 100%);
  box-shadow: 0 24px 55px rgba(16, 35, 48, .2);
}

.benefits-text h2 {
  font: 700 clamp(2rem, 3vw, 2.75rem)/1.12 'Playfair Display', serif;
}

.benefit-item {
  position: relative;
  padding-left: 46px;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
}

.benefit-item::before {
  position: absolute;
  left: 17px;
  top: 14px;
  color: #e2ad60;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
}

.service-cta-final {
  padding: 0 0 84px;
  background: #fff;
}

.service-cta-box {
  padding: 52px 28px;
  border-color: rgba(16, 35, 48, .09);
  background:
    radial-gradient(circle at 50% 0%, rgba(211, 154, 69, .12), transparent 38%),
    #f7f5f0;
  box-shadow: 0 18px 45px rgba(16, 35, 48, .08);
}

.service-cta-box h2 {
  color: var(--premium-ink);
  font: 700 clamp(2rem, 3.4vw, 2.8rem)/1.12 'Playfair Display', serif;
}

@media (max-width: 991.98px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-image-wrap {
    max-width: 720px;
  }

  .service-detail-image img {
    height: 430px;
  }
}

@media (max-width: 575.98px) {
  .service-detail-hero {
    padding: 98px 0 50px;
  }

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

  .service-breadcrumb strong {
    max-width: 42vw;
  }

  .service-detail-text h1 {
    font-size: 2.55rem;
  }

  .service-detail-image-wrap {
    padding: 10px 10px 0 0;
  }

  .service-detail-image-wrap::before {
    inset: 0 0 25px 24px;
  }

  .service-detail-image {
    border-radius: 18px 18px 54px 18px;
  }

  .service-detail-image img {
    height: 290px;
  }

  .service-detail-image-seal {
    right: -2px;
    bottom: 8px;
    width: 104px;
    height: 104px;
    padding: 14px;
    border-width: 4px;
  }

  .service-detail-image-seal span {
    font-size: .55rem;
  }

  .service-trust-section,
  .service-detail-items,
  .service-benefits-section {
    padding: 52px 0;
  }

  .trust-grid {
    display: flex;
    gap: 15px;
    padding-bottom: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .trust-card {
    min-width: 82vw;
    flex: 0 0 82vw;
    scroll-snap-align: center;
  }

  .service-item-image img {
    height: 235px;
  }

  .benefits-box {
    padding: 30px 20px;
  }
}

/* Premium why choose us */
.why-premium {
  position: relative;
  height: 82vh;
  min-height: 650px;
  background: #091923;
}

.why-premium::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 17, 25, .94) 0%, rgba(5, 17, 25, .78) 52%, rgba(5, 17, 25, .2) 100%),
    linear-gradient(0deg, rgba(5, 17, 25, .42), transparent 48%);
}

.why-premium .swiper-content2 {
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 1240px;
  transform: none;
  padding: 70px 8%;
}

.why-premium__eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  color: #efc579;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.why-premium__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.why-premium .swiper-title2,
.why-premium .swiper-title21 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: clamp(2.8rem, 4.6vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -.035em;
}

.why-premium .swiper-title21 {
  margin: 4px 0 16px;
  color: #efc579;
}

.why-premium .swiper-subtitle2 {
  max-width: 1120px;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, .78);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.08rem, 1.3vw, 1.22rem);
  font-weight: 400;
  line-height: 1.58;
  text-shadow: none;
}

.why-premium__link,
.team-premium__link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  margin-top: 13px;
  padding: 10px 18px;
  border: 1px solid rgba(239, 197, 121, .72);
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.why-premium__link:hover {
  border-color: #efc579;
  background: #efc579;
  color: #102330;
  transform: translateY(-2px);
}

/* Premium professional team */
.team_section.team-premium {
  position: relative;
  padding: 68px 20px 72px;
  background:
    radial-gradient(circle at 5% 10%, rgba(211, 154, 69, .13), transparent 24%),
    linear-gradient(145deg, #e7e5df 0%, #dfe4e4 100%);
}

.team-premium__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #b77928;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.team-premium .team_title {
  margin-bottom: 8px;
  color: var(--premium-ink);
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -.03em;
}

.team-premium .team_subtitle {
  max-width: 680px;
  margin: 0 auto 34px;
  color: #66747d;
  font-size: 1.05rem;
  line-height: 1.6;
}

.team-premium .row > div {
  margin-bottom: 22px;
}

.team-premium .team_card {
  height: 100%;
  overflow: hidden;
  padding: 0 0 18px;
  border: 1px solid rgba(16, 35, 48, .09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 35, 48, .08);
}

.team-premium .team_img {
  width: 100%;
  height: 285px;
  margin: 0 0 18px;
  border-radius: 0;
  filter: saturate(.92) contrast(1.02);
  object-position: center top;
  transition: filter .35s ease, transform .55s ease;
}

.team-premium .team_card:hover {
  border-color: rgba(211, 154, 69, .72);
  box-shadow: 0 25px 55px rgba(16, 35, 48, .15);
  transform: translateY(-6px);
}

.team-premium .team_card:hover .team_img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.025);
}

.team-premium .team_name {
  margin: 0;
  padding: 0 20px;
  color: var(--premium-ink);
  font: 700 1.35rem 'Playfair Display', serif;
}

.team-premium .team_role {
  position: relative;
  margin: 7px 0 11px;
  padding: 0 20px 12px;
  color: #b77928;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.team-premium .team_role::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 32px;
  height: 2px;
  background: #d39a45;
}

.team-premium .team_desc {
  min-height: 65px;
  margin: 0;
  padding: 0 20px;
  color: #67737c;
  font-size: .86rem;
  line-height: 1.55;
}

.team-premium__link {
  margin-top: 12px;
  border-color: rgba(16, 35, 48, .28);
  color: var(--premium-ink);
}

.team-premium__link:hover {
  border-color: var(--premium-gold);
  background: var(--premium-gold);
  color: var(--premium-ink);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .why-premium {
    height: auto;
    min-height: 0;
  }

  .why-premium .swiper-wrapper2 {
    position: absolute;
    inset: 0;
  }

  .why-premium .swiper-content2 {
    display: none;
  }

  .why-premium .elegirnos-mobile {
    position: relative;
    z-index: 3;
    display: block;
    padding: 58px 24px;
    background: transparent;
    text-align: left;
  }

  .why-premium .elegirnos-mobile h2 {
    margin: 0 0 20px;
    color: #fff;
    font: 700 2.35rem/1.08 'Playfair Display', serif;
  }

  .why-premium .elegirnos-mobile p {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.04rem;
    line-height: 1.62;
    text-align: left;
  }

  .team_section.team-premium {
    padding: 56px 8px 60px;
  }

  .team-premium .team_subtitle {
    margin-bottom: 28px;
  }

  .team-premium .team_img {
    height: 320px;
  }
}

/* Videos y testimonios: edición premium */
.videos-premium {
  position: relative;
  overflow: hidden;
  padding: 68px 0 54px;
  background:
    radial-gradient(circle at 8% 12%, rgba(211, 154, 69, .12), transparent 28%),
    linear-gradient(145deg, #f8f6f1 0%, #eef2f3 100%);
}

.videos-premium__eyebrow,
.testimonials-premium__eyebrow {
  display: table;
  margin: 0 auto 12px;
  color: #b8782f;
  font: 700 .76rem/1.2 'Poppins', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.videos-premium .embed_taital {
  margin-bottom: 14px;
  color: var(--premium-ink);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  letter-spacing: -.025em;
}

.videos-premium .embed_text {
  max-width: 780px;
  margin-bottom: 34px;
  color: #52636d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.videos-premium .video-premium__card {
  min-height: 100%;
  border: 1px solid rgba(16, 35, 48, .1) !important;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 42px rgba(16, 35, 48, .1) !important;
  transform: none;
}

.videos-premium .video-premium__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(16, 35, 48, .16) !important;
}

.videos-premium .video-premium__media {
  overflow: hidden;
  border-bottom: 3px solid var(--premium-gold);
  background: #09141c;
}

.videos-premium .video-premium__media video {
  display: block;
  object-fit: cover;
}

.videos-premium .card-body {
  padding: 20px 22px 22px;
  text-align: left;
}

.videos-premium .card-title {
  margin-bottom: 9px;
  color: var(--premium-ink);
  font: 700 1.17rem/1.35 'Poppins', sans-serif;
}

.videos-premium .card-text {
  margin: 0;
  color: #61717a;
  font-size: .96rem;
  line-height: 1.58;
}

.testimonials.testimonials-premium {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  padding: 68px 20px 72px;
  background:
    radial-gradient(circle at 92% 0%, rgba(211, 154, 69, .2), transparent 31%),
    linear-gradient(135deg, #0b1b25 0%, #173344 100%);
}

.testimonials-premium .testimonials-premium__eyebrow {
  color: #e2ad60;
}

.testimonials-premium .testimonials-title {
  margin-bottom: 12px;
  color: #fff;
  font: 700 clamp(2.15rem, 4vw, 3.05rem)/1.1 'Playfair Display', serif;
  letter-spacing: -.02em;
}

.testimonials-premium .testimonials-subtitle {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.04rem;
  line-height: 1.65;
}

.testimonials-premium .testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonials-premium .testimonial-card {
  display: flex;
  min-height: 300px;
  padding: 26px;
  flex-direction: column;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: #fbfaf7;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .2);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.testimonial-card__quote {
  color: var(--premium-gold);
  font-size: 1.55rem;
}

.testimonial-card__rating {
  color: #d99736;
  font-size: .82rem;
  letter-spacing: .12em;
}

.testimonials-premium .testimonial-text {
  margin-bottom: 24px;
  color: #31444f;
  font-size: 1.04rem;
  line-height: 1.7;
}

.testimonials-premium .testimonial-author {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 35, 48, .1);
}

.testimonials-premium .testimonial-author img {
  width: 64px;
  height: 64px;
  padding: 6px;
  object-fit: contain;
  border: 1px solid rgba(16, 35, 48, .12);
  border-radius: 12px;
  background: #fff;
}

.testimonials-premium .testimonial-author h4 {
  margin-bottom: 4px;
  color: var(--premium-ink);
  font-size: .98rem;
  line-height: 1.25;
}

.testimonials-premium .testimonial-author span {
  color: #71808a;
  font-size: .88rem;
}

@media (max-width: 991px) {
  .testimonials-premium .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .videos-premium {
    padding: 54px 0 42px;
  }

  .videos-premium .container,
  .testimonials-premium .container {
    max-width: 100%;
  }

  .videos-premium .embed_text,
  .testimonials-premium .testimonials-subtitle {
    padding: 0 15px;
    font-size: .98rem;
  }

  .videos-premium .row,
  .testimonials-premium .testimonials-grid {
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 4px 18px 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .videos-premium .row > [class*="col-"] {
    width: min(84vw, 350px);
    max-width: none;
    margin-bottom: 0 !important;
    padding: 0;
    flex: 0 0 min(84vw, 350px);
    scroll-snap-align: center;
  }

  .testimonials.testimonials-premium {
    margin-bottom: 38px;
    padding: 54px 0 46px;
  }

  .testimonials-premium .testimonial-card {
    width: min(84vw, 350px);
    min-height: 300px;
    flex: 0 0 min(84vw, 350px);
    scroll-snap-align: center;
  }
}
