
* { margin:0; padding:0; box-sizing:border-box }

:root{
  --primary-color:#e55a2a;         
  --accent-color:#ff8149;          
  --text-color:#1a1a1a;            
  --light:#ffffff;
  --muted:#4a4a4a;
  --bg:#ffffff;
  --secondary:#ffffff;

  --glass-bg: rgba(255,255,255,.70);
  --glass-brd: rgba(255,255,255,.35);

  --radius-s:12px;
  --radius-m:18px;
  --radius-l:22px;

  --shadow-s:0 6px 16px rgba(0,0,0,.08);
  --shadow-m:0 12px 32px rgba(0,0,0,.12);
  --shadow-l:0 22px 60px rgba(229,90,42,.28);

  --t-fast:.25s ease;
  --t-med:.35s cubic-bezier(.2,.8,.2,1);

  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

html{ scroll-behavior:smooth }
body{
  background:var(--bg);
  color:var(--text-color);
  line-height:1.6;
  font-size:16px;
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none }
.container{ width:90%; max-width:1200px; margin:0 auto }

.header-content{
  position: relative;
  z-index: 2147483647;
  background:
    radial-gradient(1100px 450px at 20% -10%, rgba(229,90,42,.28), transparent 60%),
    linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
}

.header-content,
.header-content h1,.header-content h2,.header-content h3,
.header-content p,.header-content li,.header-content a,
.header-content .count{color:#fff}


.top-bar{
  background-color: transparent;
  font-size:.875rem;
  padding:.5rem 0;
}
.top-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.8rem;
  }
  
  .top-container {
    justify-content: center;
    gap: 1rem;
  }
  
  .call-info {
    order: 1;
    flex: 1 1 100%;
    text-align: center;
  }
  
  .social-icons {
    order: 2;
  }
  
  .quote-btn {
    order: 3;
  }
}

.top-bar .call-info a{color:var(--accent-color)}
.social-icons a img {
  width: 20px;
  height: 20px;
  display: inline-block;
  filter: brightness(0) saturate(100%) invert(56%) sepia(81%) saturate(459%) hue-rotate(356deg) brightness(95%) contrast(95%);
  transition: filter var(--t-fast), transform var(--t-fast);
}

.social-icons a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(315deg) brightness(103%) contrast(103%);
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .social-icons {
    display: flex;
    gap: 0.5rem;
  }
  
  .social-icons a img {
    width: 18px;
    height: 18px;
  }
}

.quote-btn{
  background:var(--primary-color);
  color:#fff;
  padding:.45rem 1rem;
  border-radius:8px;
  font-weight:600;
  transition:filter var(--t-fast),transform var(--t-fast);
  white-space: nowrap;
}
.quote-btn:hover{filter:brightness(1.05);transform:translateY(-1px)}

@media (max-width: 640px) {
  .quote-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

.nav-bar{
  margin:12px 4rem 0;
  padding:.75rem 1rem;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.22);
  border-radius:16px;
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  box-shadow:0 8px 24px rgba(0,0,0,.12);
  position: relative;
  z-index: 9998;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
  transition: transform 0.3s ease;
  position: relative;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:center;
}

nav .menu{
  list-style:none;
  display:flex;
  gap:1.4rem;
  flex-wrap:wrap;
  justify-content:center;
}

.menu li a{
  color:#fff;
  font-weight:500;
  letter-spacing:.2px;
  position:relative;
  transition:color var(--t-fast);
}

.menu li a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background:linear-gradient(90deg,var(--primary-color),var(--accent-color));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform var(--t-med);
}

.menu li a:hover{color:#fff}
.menu li a:hover::after{transform:scaleX(1)}

@media (max-width: 768px) {
  .nav-bar{
    position: relative;
    margin: 10px 1rem 0;
    padding: 0.6rem 0.8rem;
    z-index: 2147483647;
    isolation: isolate;
  }

  .menu-toggle{ display: flex; margin-left: auto; align-self: flex-end; }
  .nav-container{ flex-direction: row; align-items: center; justify-content: flex-end; width: 100%; }
  nav{ width: auto; position: static; }

  nav .menu{
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    left: 8px;
    right: 8px;
    margin-top: 10px;

    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 6px 0;

    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.38);
    background:
      linear-gradient(135deg,
        rgba(58,183,149,.28) 0%,
        rgba(242,201,76,.30) 55%,
        rgba(168,224,235,.28) 100%),
      rgba(17,25,40,.60);

    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.35),
      0 6px 20px rgba(0,0,0,.18);

    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height .4s ease, opacity .28s ease, transform .28s ease;

    overflow: hidden;          
    overflow-x: hidden;      

    pointer-events: none;
    visibility: hidden;

    max-width: calc(100vw - 16px);

    z-index: 2147483647;
  }

  nav .menu.active{
    max-height: 70vh;
    opacity: 1;
    transform: translateY(0);

    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;

    pointer-events: auto;
    visibility: visible;

    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background:
      linear-gradient(135deg,
        rgba(58,183,149,.42) 0%,
        rgba(242,201,76,.46) 55%,
        rgba(168,224,235,.42) 100%),
      rgba(17,25,40,.82);
  }
 
  nav .menu::before{
    content: "";
    position: absolute; inset: 0;
    border-radius: inherit; pointer-events: none;
    background:
      radial-gradient(120% 60% at 0% 0%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 60%),
      linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
    mix-blend-mode: screen;
  }

  nav .menu.is-dragging{ cursor: grabbing; user-select: none; }

  nav .menu li{ width: 100%; border-bottom: 1px solid rgba(255,255,255,.18); }
  nav .menu li:last-child{ border-bottom: none; }
  nav .menu li a{
    display: block;
    padding: 14px 18px;
    width: 100%;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,.25);
    cursor: pointer;
    transition: background .2s ease, padding-left .25s ease;
  }
  nav .menu li a:hover{ background: rgba(229,90,42,.22); padding-left: 28px; }
  nav .menu li a::after{ display: none; }
}

@media (max-width: 768px) {
  .nav-container { display: flex; }
  .menu-toggle { margin-left: auto !important; }
  nav .menu li a { text-align: center !important; }
}

@media (max-width: 768px) {
  html.is-nav-open #whatsappBtn {
    z-index: 2147483640 !important;
    pointer-events: none;
  }
}

html.is-nav-open, body.is-nav-open {
  overflow: hidden !important;
  max-width: 100%;
}

.hero.hero--split{
  position: relative;
  color: #fff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: transparent; 
  overflow: hidden;
}

.hero-split{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.hero-copy{
  position: relative;
  z-index: 2;
  margin-right: 0;
}

.tagline{
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-color);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-title{
  color:#fff;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: .2px;
  margin-top: 0.5rem;
  max-width: 22ch;
  text-wrap: balance;
  text-shadow: 0 6px 22px rgba(0,0,0,.38), 0 2px 8px rgba(0,0,0,.28);
  position: relative;
}

.hero-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: min(240px,48%);
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg,var(--primary-color),var(--accent-color));
  box-shadow: 0 8px 20px rgba(229,90,42,.30);
}

.hero-desc{
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 1rem 0 1.8rem;
  max-width: 60ch;
  color: rgba(255,255,255,.92);
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: .14px;
}

.hero-gallery{
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding-right: clamp(.3rem,.6vw,.6rem);
  min-height: 400px;
}

.carousel-frame{
  position: relative;
  flex: 1;
  min-height: clamp(320px,50vh,520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 22px;
}

.hero-logo{
  display: block;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
}

@media (max-width:900px){
  .carousel-frame{ min-height:clamp(280px,48vh,480px) }
  
  .hero-split{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-copy {
    text-align: left;
  }
  .hero-desc {
    text-align: left;
  }
  .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .cta-wrapper .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-gallery{
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-bar {
    margin: 10px 0.5rem 0;
    padding: 0.5rem 0.5rem;
  }
  
  .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.8rem;
  }
  
  .cta-wrapper .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.8rem;
  }
  
  .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .hero.hero--split {
    padding: 2rem 0;
  }
  .hero-copy {
    text-align: left;
    padding: 0 1rem;
  }
  .hero-desc {
    text-align: left;
  }
  .tagline {
    font-size: 1.15rem;
  }
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}

.btn{
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.85rem 1.8rem; border-radius:12px; font-weight:700; font-size:.95rem;
  text-transform:uppercase; letter-spacing:.5px; cursor:pointer; transition:all .3s ease;
}
.btn.btn--sm{ padding:.5rem .8rem; font-size:.85rem; border-radius:10px }
.ai-btn{
  background:linear-gradient(135deg,var(--primary-color),var(--accent-color));
  color:#fff; box-shadow:0 6px 18px rgba(0,0,0,.3);
}
.ai-btn:hover{ transform:translateY(-3px) scale(1.03); box-shadow:0 10px 25px rgba(0,0,0,.4) }
.brochure-btn{
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(8px);
  border:2px solid rgba(255,255,255,.4);
  color:#fff;
}
.brochure-btn:hover{ background:rgba(255,255,255,.25); transform:translateY(-3px) scale(1.03) }


.branch-intro {
  padding-inline: clamp(16px, 4vw, 40px);
  margin: clamp(20px, 4vw, 48px) 0;
}

.branch-media {
  position: relative;
  width: min(92vw, 980px);
  margin: 0 auto;
  overflow: visible; 
}

.branch-media > img {
  width: 92%;
  margin: 0 auto;
  height: auto;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.14);
  aspect-ratio: 16/9;
}

.branch-card1{
  position:absolute;
  top:45%;                                   
  left:0;
  transform: translateX(clamp(-64px,-18%,-32px)) translateY(-38%); 
  width:min(520px,72vw);
  max-width:520px;
  background: var(--light);
  color: var(--text-color);
  border-radius: var(--radius-m);
  padding: clamp(16px,2.2vw,24px);
  border:1px solid #e9edf3;
  box-shadow: var(--shadow-m);
  font-family: inherit; 
}

.branch-card1 h2{
  margin:0 0 .6rem 0;
  font-weight:900;
  letter-spacing:.2px;
  font-size:clamp(1.25rem,3.2vw,1.8rem);
  color: var(--text-color);
}

.branch-card1 p{
  margin:.4rem 0 0 0;
  line-height:1.7;
  color: var(--muted);
}

.branch-card1 .btn{
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color:#fff;
  box-shadow: 0 6px 18px rgba(229,90,42,.25);
}

@media (max-width: 640px) {
  .branch-intro {
    padding-inline: 1rem;
    margin: 1.5rem 0;
  }
  
  .branch-media { 
    width: 100%;
  }
  
  .branch-media > img { 
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 16/10;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  }
  
  .branch-card1 {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    margin: -20px 1rem 0;
    padding: 1.25rem 1rem;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(16, 24, 40, 0.14);
  }
  
  .branch-card1 h2 {
    display: none;
  }
  
  .branch-card1 p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 1rem 0;
  }
  
  .branch-card1 .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
  }
}


.features{
  margin: clamp(1rem,2vw,1.6rem) 4rem;
  color: var(--text-color);
}
@media (max-width:640px){
  .features{ margin-inline:1rem }
}

.features .section-title{
  margin-bottom: .8rem;
  color: var(--text-color); 
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(.8rem, 2vw, 1.2rem);
  margin-top: .6rem;
}

.feature-box{
  background:#fff;
  border:1px solid #e9edf3;
  border-radius: var(--radius-m);
  padding: clamp(.9rem, 1.8vw, 1.2rem);
  display:grid; gap:.45rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.feature-box:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
  border-color:#e5eaf1;
}

.feature-icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  font-size: 1.25rem; line-height:1;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color:#fff;
  box-shadow: 0 6px 18px rgba(229,90,42,.25);
}

.feature-title{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 1rem;
  color:#0b1220;
}

.feature-desc{
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.65;
}

.features nav[aria-label="Locations"]{
  margin-top: .6rem;
  display:flex; flex-wrap:wrap; gap:.5rem .8rem;
}
.features nav[aria-label="Locations"] a{
  display:inline-flex; align-items:center;
  padding:.35rem .6rem;
  border-radius: 999px;
  background:#f7f8fb;
  border:1px solid #e2e8f0;
  font-weight:700; font-size:.85rem;
  color:#0f172a;
  transition: filter var(--t-fast), transform var(--t-fast);
}
.features nav[aria-label="Locations"] a:hover{
  filter:brightness(1.03);
  transform: translateY(-1px);
}

#branch-faq .feature-box{
  background:#fff;
  border:1px solid #eef1f6;
}
#branch-faq .feature-title{
  display:block;
  font-size: 1rem;
}
#branch-faq .feature-desc{
  margin-top:.1rem;
}

.features + .features{ margin-top: clamp(.6rem, 1.6vw, 1rem) }

.branch-showcase{
  margin: clamp(1rem,2vw,1.8rem) clamp(1rem,3.5vw,4rem) clamp(1.6rem,3vw,2.6rem);
  position: relative;
  isolation: isolate;
  scroll-margin-top: clamp(72px, 8vh, 120px);
  background:#fff;
  color:#0b1220;
}
.branch-showcase::before{
  content:"";
  position:absolute; left:50%; transform:translateX(-50%);
  top:-20px; width:100vw; height:20px;
  background:linear-gradient(180deg, rgba(16,24,40,.06), rgba(16,24,40,0));
  pointer-events:none; z-index:-1;
}
@media (max-width:640px){ .branch-showcase{ margin-inline:1rem } }

.showcase-head{
  display:flex; align-items:center; justify-content:space-between; gap:.9rem;
  padding:clamp(.9rem,1.6vw,1.15rem) clamp(1rem,2vw,1.35rem);
  border-radius:16px;
  background:#fff;
  border:1px solid #e9edf3;
  box-shadow:0 8px 24px rgba(16,24,40,.06);
  color:#0b1220;
}
.showcase-title{
  margin:0;
  font-size:clamp(1.25rem,2.8vw,1.9rem);
  font-weight:900;
  letter-spacing:.3px;
  line-height:1.15;
  color:#0b1220;
  background:none;
  -webkit-text-fill-color:currentColor;
  text-shadow:none;
  position:relative;
}
.showcase-title::after{
  content:"";
  position:absolute; left:0; bottom:-8px;
  width:min(240px,38%); height:3px; border-radius:3px;
  background:linear-gradient(90deg, var(--primary-color), var(--accent-color));
  box-shadow:0 8px 18px rgba(229,90,42,.22);
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:clamp(1rem,2vw,1.25rem);
  margin:clamp(1.25rem,3vw,2rem) 0 clamp(2rem,4vw,3rem);
}

.grid.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.loading-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e9edf3;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-message p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}

.loading-message span {
  font-size: 0.875rem;
  color: #98a2b3;
}

@media (max-width: 768px) {
  .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem 2rem;
    gap: 1rem;
    scroll-snap-type: x mandatory;
  }
  
  .grid::-webkit-scrollbar {
    display: none;
  }
  
  .grid.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }
}

@media (max-width: 480px) {
  .grid {
    gap: 0.8rem;
    padding: 0 1rem 1.5rem;
  }
}

.branch-dots {
  display: none;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .branch-dots {
    display: flex;
  }
}

.branch-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(229, 90, 42, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.branch-dot:hover {
  background: rgba(229, 90, 42, 0.6);
  transform: scale(1.2);
}

.branch-dot.active {
  background: var(--primary-color);
  width: 12px;
  height: 12px;
  box-shadow: 0 0 8px rgba(229, 90, 42, 0.6);
}

@media (max-width: 480px) {
  .branch-dot {
    width: 8px;
    height: 8px;
  }
  
  .branch-dot.active {
    width: 10px;
    height: 10px;
  }
}

.card{
  position:relative; overflow:hidden; border-radius:18px;
  background:#fff; border:1px solid #e9edf3;
  box-shadow:0 8px 22px rgba(16,24,40,.06);
  display:flex; flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.card:hover{ transform:translateY(-3px); box-shadow:0 16px 40px rgba(16,24,40,.10); border-color:#e5eaf1 }

@media (max-width: 768px) {
   .card {
    flex-shrink: 0;
    width: 340px;
    min-width: 340px;
    max-width: 340px;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
   .card {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
  }
}

.branch-card .card-media{
  position:relative; aspect-ratio:16/9; overflow:hidden; background:#f3f5f8;
}
.branch-card .card-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform:scale(1.02);
  transition:transform .6s cubic-bezier(.2,.8,.2,1), filter .6s;
  filter:saturate(106%) contrast(103%);
}
.branch-card:hover .card-media img{ transform:scale(1.06) }
.card-badge{
  position:absolute; left:.75rem; top:.75rem;
  padding:.35rem .6rem; border-radius:999px;
  background:rgba(0,0,0,.64); color:#fff; font-size:.78rem; font-weight:800;
  border:1px solid rgba(255,255,255,.25); backdrop-filter:blur(6px);
}

.card-body{ padding:.95rem 1rem 1.05rem; display:grid; gap:.65rem }
.card-body h3{ font-size:1.08rem; font-weight:900; letter-spacing:.2px; color:#0b1220 }
.addr{ display:flex; gap:.5rem; align-items:flex-start; color:#344054 }
.addr span:first-child{ line-height:1.2 }
.meta{ display:flex; flex-wrap:wrap; gap:.35rem .5rem; color:#0f172a }
.pill{
  display:inline-flex; align-items:center; gap:.35rem;
  padding:.35rem .55rem; font-size:.82rem; font-weight:700;
  border-radius:999px; background:#f7f8fb; color:#0f172a; border:1px solid #e2e8f0;
}

.card-map{ margin:.7rem 0 1rem }
.card-map iframe{
  width:100%; height:200px; border:0; border-radius:14px;
  box-shadow:0 8px 20px rgba(16,24,40,.10);
}

.card-actions{ display:flex; gap:.5rem; align-items:center; justify-content:flex-end; margin-top:.25rem }
.btn-outline{ background:#fff; color:#0b1220; border:1px solid #e6e8ee }
.btn-primary{ background:linear-gradient(135deg, var(--primary-color), var(--accent-color)); color:#fff; border:none }
.card-actions .btn{ padding:.5rem .8rem; font-size:.85rem; border-radius:10px }


.cta{
  position:relative; overflow:clip;
  padding:clamp(2.2rem,4vw,3.2rem) 0; margin-top:clamp(1.75rem,3vw,2.25rem);
  color:#fff;
  background:
    radial-gradient(1000px 420px at 10% -10%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, #0b0b0b 0%, #111 100%);
  isolation:isolate;
}
.cta::before{
  content:""; position:absolute; inset:-20% -10%;
  background:
    radial-gradient(38% 30% at 25% 10%, rgba(255,129,73,.35), transparent 70%),
    radial-gradient(30% 25% at 80% 15%, rgba(229,90,42,.28), transparent 70%);
  filter:blur(20px); opacity:.6; z-index:0; animation:cta-float 10s ease-in-out infinite alternate;
}
.cta::after{
  content:""; position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(1200px 800px at 120% 0%, rgba(255,255,255,.04), transparent 60%),
    radial-gradient(800px 600px at -20% 100%, rgba(255,255,255,.03), transparent 60%);
  pointer-events:none;
}
.cta-inner{
  position:relative; z-index:1; max-width:980px; margin:0 auto; text-align:center;
  display:grid; gap:.8rem; padding:clamp(1.2rem,3vw,1.8rem) clamp(1rem,3vw,2rem);
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.18); border-radius:22px;
  backdrop-filter:blur(16px) saturate(180%); -webkit-backdrop-filter:blur(16px) saturate(180%);
  box-shadow:0 12px 34px rgba(0,0,0,.35), inset 0 0 40px rgba(255,255,255,.06); overflow:hidden;
}
.cta-inner::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.15) 20%, transparent 40%, transparent 60%, rgba(255,255,255,.12) 80%, transparent 100%);
  transform:translateX(-100%); animation:cta-shimmer 6s ease-in-out infinite; mix-blend-mode:screen;
}
.cta-inner h2{
  font-size:clamp(1.6rem,3.5vw,2.2rem); font-weight:900; letter-spacing:.3px;
  background:linear-gradient(135deg, #ffffff, rgba(255,129,73,.55));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-shadow:0 12px 40px rgba(229,90,42,.25);
}
.cta-inner p{ max-width:740px; margin:0 auto .4rem auto; color:rgba(255,255,255,.9) }
.cta .btn.primary{
  padding:.95rem 1.4rem; border-radius:14px;
  background:linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow:0 12px 28px rgba(229,90,42,.30), 0 0 0 0 rgba(229,90,42,.35);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.cta-inner .btn.primary{
  justify-items: center;
  display: inline-block;
}

.cta .btn.primary:hover{
  transform:translateY(-2px); filter:brightness(1.04);
  box-shadow:0 18px 38px rgba(229,90,42,.40), 0 0 0 4px rgba(229,90,42,.25);
}

@keyframes cta-shimmer{
  0%{ transform:translateX(-120%) }
  50%,100%{ transform:translateX(120%) }
}
@keyframes cta-float{
  0%{ transform:translateY(0) }
  100%{ transform:translateY(8px) }
}

footer {
  background: linear-gradient(135deg, rgba(229,90,42,.97), rgba(255,129,73,.92));
  color: #0f1724;
  padding: 3.25rem 0;
  font-size: .95rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid rgba(255,255,255,.38);
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}

footer::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.42), rgba(255,255,255,0) 60%);
  filter: blur(8px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 0.5rem;
  animation: footerFadeUp .5s ease both;
  position: relative;
  z-index: 1;
}

.footer-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  color: #071d31;
  text-align: left;
  letter-spacing: .6px;
  line-height: 1.2;
}

.footer-content-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: space-between;
  text-align: left;
}

.footer-col { flex: 1 1 0; min-width: 0; }
.footer-company { flex: 1.5 1 0; }

.footer-col p {
  margin: 0;
  line-height: 1.8;
  opacity: .95;
  color: #173046;
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: 0.2px;
}

.footer-col h4 {
  margin-bottom: .75rem;
  color: #071d31;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  margin-top: .35rem;
  padding: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: .45rem;
}

.footer-links a,
.footer-services a {
  color: #173046;
  text-decoration: none;
  position: relative;
  transition: color .2s ease;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-links a:focus-visible,
.footer-services a:focus-visible {
  color: #071d31;
  background-size: 100% 2px;
  outline: none;
}

.footer-note {
  margin-top: 2.25rem;
  padding-top: 1rem;
  text-align: center;
  font-size: .86rem;
  color: #05233a;
  border-top: 1px solid rgba(255,255,255,.35);
  letter-spacing: .2px;
  opacity: .9;
}

.footer-col a:focus-visible {
  outline: 3px solid rgba(7,29,49,.35);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (max-width:900px){
  .footer-content-wrapper{ flex-wrap:wrap }
  .footer-company{ flex-basis:100% }
}
@media (max-width:600px){
  .footer-title{ text-align:left }
  .footer-content-wrapper{ gap:1.5rem }
  .footer-col{ flex:1 1 100% }
  .footer-note{ font-size:.84rem }
}

#whatsappBtn{
  position:fixed; bottom:70px; right:20px; background:var(--accent-color);
  border:none; padding:10px; border-radius:8px; cursor:pointer; box-shadow:0 2px 6px rgba(0,0,0,.15);
  transition: transform .3s ease, background .3s ease; z-index:2147483647;
}
#whatsappBtn img{ width:28px; height:28px; display:block; filter:brightness(0) invert(1) }
#whatsappBtn:hover{ background:#25D366; transform:translateY(-3px) }

#scrollToTopBtn{
  position:fixed; bottom:20px; right:20px; background:var(--accent-color); color:#fff; border:none;
  padding:10px; width:48px; height:48px; border-radius:8px; font-size:1.2rem; display:flex; align-items:center; justify-content:center;
  cursor:pointer; box-shadow:0 2px 6px rgba(0,0,0,.15); transition: opacity .3s ease, transform .3s ease, background .3s ease; opacity:0; visibility:hidden; z-index:999;
}
#scrollToTopBtn.show{ opacity:1; visibility:visible }
#scrollToTopBtn:hover{ transform:translateY(-3px); background:var(--primary-color) }

@media (max-width:768px){
  .cta-wrapper{ flex-direction:column; align-items:flex-start }
  .nav-container{ flex-direction:column }
  .menu{ flex-wrap:wrap; gap:1rem }
  .footer-content-wrapper{ flex-direction:column; align-items:flex-start }
}

.grid--branches{ grid-template-columns:repeat(auto-fit,minmax(320px,1fr)) }
.branch-card{
  border:1px solid #eef1f6;
  box-shadow:0 8px 28px rgba(0,0,0,.10), 0 2px 0 rgba(229,90,42,.05) inset;
}
.branch-card:hover{
  border-color:#e9ecf3;
  box-shadow:0 16px 42px rgba(0,0,0,.14), 0 0 0 3px rgba(229,90,42,.08);
}
.branch-card .card-media::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.16) 100%);
  mix-blend-mode:multiply;
}
.card-actions .btn{ padding:.55rem .85rem; font-size:.82rem; border-radius:10px; white-space: nowrap; }

.section-block{
  margin: clamp(1rem,2vw,1.6rem) 4rem clamp(1.8rem,3vw,2.6rem);
}
@media (max-width:640px){ .section-block{ margin-inline:1rem } }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:.75rem;
  padding:1rem 1.1rem;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  backdrop-filter:blur(12px) saturate(170%); -webkit-backdrop-filter:blur(12px) saturate(170%);
  box-shadow:0 8px 22px rgba(0,0,0,.12);
}

.section-title{
  background: none !important;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--accent-strong, #e55a2a) !important; 
  text-shadow: 0 1px 0 rgba(0,0,0,.05), 0 8px 18px rgba(229,90,42,.12);
}

.section-sub{
  color: #475569 !important; 
  opacity: 1 !important;
  text-shadow: none;
}

.tc-viewport{ overflow:hidden; width:100% }
.tc-track{
  display:flex; gap:.75rem;
  padding:.9rem;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.tc-track img{
  width:220px; height:220px; object-fit:cover; border-radius:14px;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  user-select:none; -webkit-user-drag:none;
}
@media (max-width:600px){
  .tc-track img{ width:160px; height:160px }
}
.tc-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  background:#fff; color:#111; border:1px solid #e6e8ee;
  width:38px; height:38px; border-radius:10px; cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  display:grid; place-items:center;
}
.tc-prev{ left:.6rem } .tc-next{ right:.6rem }
.tc-btn:hover{ filter:brightness(1.03) }
.tc-btn:active{ transform:translateY(-50%) scale(.98) }