:root{
  --navy:#212121;
  --navy2:#212121;
  --gold:#957A56;
  --gold2:#957A56;
  --paper:#FCFCFC;
  --white:#FCFCFC;
  --black:#212121;
  --text:#212121;
  --muted:#212121;
  --line:rgba(0,0,0,.10);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:#FCFCFC;
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

button,input,select,textarea{
  font:inherit;
}

img{
  display:block;
  max-width:100%;
}

.ancor-loader{
  position:fixed;
  inset:0;
  z-index:999;
  background:#212121;
  display:grid;
  place-items:center;
  transition:opacity .65s ease,visibility .65s ease;
}

.ancor-loader.done{
  opacity:0;
  visibility:hidden;
}

.loader-logo{
  color:var(--gold2);
  text-align:center;
  display:grid;
  place-items:center;
  gap:7px;
}

.loader-mark{
  width:62px;
  height:62px;
  border-radius:50%;
  border:1px solid rgba(216,189,121,.55);
  display:grid;
  place-items:center;
  font-size:36px;
  font-weight:900;
}

.loader-logo strong{
  font-size:36px;
  letter-spacing:.12em;
}

.loader-logo small{
  font-size:11px;
  letter-spacing:.35em;
  color:rgba(216,189,121,.75);
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:78px;
  z-index:100;
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(16px);
  box-shadow:0 1px 0 rgba(0,0,0,.06);
}

.header-inner{
  height:100%;
  width:min(1440px,calc(100% - 70px));
  margin:auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  direction:ltr;
}

.header-left,
.header-right{
  display:flex;
  align-items:center;
  gap:14px;
}

.header-left{
  justify-content:flex-start;
}

.header-right{
  justify-content:flex-end;
  direction:rtl;
}

.interest-link,
.lang-link,
.menu-label{
  font-size:13px;
  font-weight:800;
  color:#101010;
  white-space:nowrap;
}

.circle-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1.5px solid rgba(0,0,0,.82);
  background:transparent;
  color:#212121;
  cursor:pointer;
  transition:.2s ease;
}

.circle-btn:hover{
  transform:translateY(-2px);
}

.phone-btn{
  background:var(--navy);
  color:#FCFCFC;
  border-color:var(--navy);
}

.circle-btn svg{
  width:20px;
  height:20px;
}

.menu-btn{
  gap:4px;
}

.menu-btn span{
  width:16px;
  height:2px;
  background:#212121;
  display:block;
  border-radius:999px;
}

.brand-center{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:var(--gold);
  min-width:210px;
}

.brand-emblem{
  width:42px;
  height:48px;
  display:grid;
  place-items:center;
  border-inline-start:3px solid var(--gold);
  border-block-end:3px solid var(--gold);
  font-size:34px;
  line-height:1;
  font-weight:900;
}

.brand-text{
  display:grid;
  line-height:1;
}

.brand-text strong{
  font-size:34px;
  font-weight:900;
  letter-spacing:.10em;
}

.brand-text small{
  margin-top:5px;
  font-size:14px;
  color:#957A56;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.side-menu{
  position:fixed;
  inset:0 0 0 auto;
  width:min(420px,90vw);
  z-index:220;
  background:#FCFCFC;
  transform:translateX(100%);
  transition:.35s ease;
  padding:72px 34px;
  display:grid;
  align-content:start;
  gap:14px;
  box-shadow:-30px 0 80px rgba(0,0,0,.22);
}

.side-menu.open{
  transform:translateX(0);
}

.side-menu a{
  font-size:26px;
  font-weight:900;
  padding:15px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.menu-close{
  position:absolute;
  top:20px;
  left:24px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,.14);
  background:#FCFCFC;
  font-size:30px;
  cursor:pointer;
}

.hero-slider{
  position:relative;
  height:100vh;
  min-height:720px;
  overflow:hidden;
  background:#212121;
}

.slides,
.slide{
  position:absolute;
  inset:0;
}

.slide{
  opacity:0;
  transform:scale(1.03);
  transition:opacity 1.1s ease, transform 8s ease;
}

.slide.active{
  opacity:1;
  transform:scale(1.085);
}

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

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(to bottom,rgba(0,0,0,.10) 0%,rgba(0,0,0,.08) 25%,rgba(0,0,0,.78) 100%),
    linear-gradient(to left,rgba(0,0,0,.64) 0%,rgba(0,0,0,.28) 40%,rgba(0,0,0,.15) 100%);
}

.hero-content{
  position:absolute;
  z-index:5;
  right:8%;
  bottom:22%;
  width:min(690px,84vw);
  color:#FCFCFC;
  text-align:right;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#FCFCFC;
  font-size:17px;
  font-weight:900;
  margin-bottom:14px;
}

.hero-kicker:before{
  content:"";
  width:34px;
  height:1px;
  background:var(--gold2);
}

.hero-content h1{
  font-size:clamp(44px,5vw,72px);
  line-height:1.04;
  margin:0 0 14px;
  font-weight:900;
  letter-spacing:-.04em;
  text-shadow:0 10px 38px rgba(0,0,0,.32);
}

.hero-content p{
  font-size:16px;
  line-height:1.85;
  margin:0 0 24px;
  font-weight:700;
  color:rgba(255,255,255,.88);
  max-width:680px;
}

.hero-actions{
  display:flex;
  gap:12px;
  justify-content:flex-start;
  flex-direction:row-reverse;
  flex-wrap:wrap;
}

.hero-btn{
  min-width:150px;
  height:50px;
  background:var(--navy);
  color:#FCFCFC;
  padding:0 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:14px;
  transition:.2s ease;
  border:1px solid var(--navy);
}

.hero-btn.ghost{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.35);
  backdrop-filter:blur(8px);
}

.hero-btn:hover{
  background:var(--gold);
  border-color:var(--gold);
  transform:translateY(-3px);
}

.hero-stats{
  position:absolute;
  z-index:8;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  width:min(820px,calc(100% - 190px));
  min-height:74px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.13);
  backdrop-filter:blur(18px);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  box-shadow:0 22px 70px rgba(0,0,0,.22);
  direction:ltr;
}

.hero-stat{
  padding:15px 18px;
  text-align:center;
  border-left:1px solid rgba(255,255,255,.16);
}

.hero-stat:first-child{
  border-left:0;
}

.hero-stat strong{
  display:block;
  color:#FCFCFC;
  font-size:24px;
  line-height:1;
  font-weight:900;
}

.hero-stat span{
  display:block;
  margin-top:7px;
  color:rgba(255,255,255,.70);
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.10em;
}

.nav-arrow{
  position:absolute;
  top:52%;
  transform:translateY(-50%);
  z-index:8;
  width:54px;
  height:54px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.30);
  background:rgba(255,255,255,.11);
  backdrop-filter:blur(10px);
  color:#FCFCFC;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:.2s ease;
}

.nav-arrow:hover{
  background:rgba(185,151,91,.85);
  border-color:rgba(185,151,91,.85);
}

.nav-arrow.prev{
  left:36px;
}

.nav-arrow.next{
  right:36px;
}

.nav-arrow svg{
  width:25px;
  height:25px;
}

.scroll-indicator{
  position:absolute;
  z-index:9;
  left:50%;
  bottom:122px;
  transform:translateX(-50%);
  width:24px;
  height:42px;
  border:2px solid rgba(255,255,255,.75);
  border-radius:999px;
  display:flex;
  justify-content:center;
  padding-top:7px;
}

.scroll-indicator span{
  width:4px;
  height:9px;
  border-radius:999px;
  background:#FCFCFC;
  animation:scrollDot 1.4s ease infinite;
}

@keyframes scrollDot{
  0%{transform:translateY(0);opacity:1}
  100%{transform:translateY(14px);opacity:0}
}

.section{
  padding:86px 0;
}

.section-inner{
  width:min(1180px,calc(100% - 44px));
  margin:auto;
}

.section-head.center{
  text-align:center;
}

.section-head.center p{
  margin-inline:auto;
}

.section-head.row{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:30px;
}

.section-kicker{
  color:var(--gold);
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
}

.section h2{
  font-size:clamp(36px,4vw,62px);
  margin:10px 0 18px;
  line-height:1;
  letter-spacing:-.04em;
}

.section p{
  max-width:820px;
  color:var(--muted);
  font-size:17px;
  line-height:1.85;
}

.about-section{
  background:var(--paper);
}

.about-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:34px;
}

.about-cards article{
  background:#FCFCFC;
  border:1px solid var(--line);
  border-radius:22px;
  padding:26px;
  box-shadow:0 18px 45px rgba(0,0,0,.055);
  text-align:right;
}

.about-cards b{
  display:block;
  color:var(--gold);
  font-size:13px;
  margin-bottom:30px;
}

.about-cards strong{
  display:block;
  color:var(--navy);
  font-size:21px;
  margin-bottom:10px;
}

.about-cards span{
  color:var(--muted);
  line-height:1.7;
}

.projects-section{
  background:#FCFCFC;
}

.outline-btn{
  height:46px;
  border:1px solid var(--navy);
  color:var(--navy);
  display:inline-flex;
  align-items:center;
  padding:0 22px;
  font-weight:900;
  transition:.2s ease;
}

.outline-btn:hover{
  background:var(--navy);
  color:#FCFCFC;
}

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

.project-card{
  background:#FCFCFC;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.075);
  transition:.2s ease;
}

.project-card:hover{
  transform:translateY(-5px);
}

.project-card img{
  height:245px;
  width:100%;
  object-fit:cover;
}

.project-body{
  padding:22px;
}

.project-body h3{
  font-size:25px;
  margin:0 0 10px;
  color:var(--navy2);
  line-height:1.1;
}

.project-body p{
  color:var(--muted);
  line-height:1.7;
  margin:0 0 15px;
  font-size:14px;
}

.project-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.project-tags span{
  min-height:28px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:#FCFCFC;
  color:#957A56;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.services-section{
  background:
    radial-gradient(circle at 20% 0%,rgba(185,151,91,.22),transparent 30%),
    var(--navy2);
  color:#FCFCFC;
}

.services-section .section-kicker{
  color:var(--gold2);
}

.services-section h2{
  color:#FCFCFC;
}

.services-section p{
  color:rgba(255,255,255,.70);
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:34px;
}

.service-grid article{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.07);
  border-radius:22px;
  padding:24px;
  min-height:210px;
}

.service-grid span{
  color:var(--gold2);
  font-size:13px;
  font-weight:900;
}

.service-grid h3{
  margin:30px 0 12px;
  font-size:23px;
}

.service-grid p{
  font-size:14px;
  color:rgba(255,255,255,.72);
  line-height:1.8;
}

.contact-section{
  background:var(--paper);
}

.contact-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:34px;
  align-items:start;
}

.contact-form{
  background:#FCFCFC;
  border-radius:24px;
  padding:28px;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
  display:grid;
  gap:14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  padding:15px 16px;
  font-size:15px;
  outline:0;
}

.contact-form textarea{
  min-height:120px;
  resize:vertical;
}

.contact-form button{
  height:50px;
  border:0;
  background:var(--navy);
  color:#FCFCFC;
  font-weight:900;
  cursor:pointer;
  transition:.2s ease;
}

.contact-form button:hover{
  background:var(--gold);
}

.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  width:50px;
  height:50px;
  border-radius:50%;
  background:#FCFCFC;
  display:grid;
  place-items:center;
  z-index:150;
  box-shadow:0 16px 40px rgba(0,0,0,.18);
  border:1px solid rgba(37,211,102,.35);
}

.whatsapp-float svg{
  width:29px;
  height:29px;
}

.empty{
  grid-column:1/-1;
  background:#FCFCFC;
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  color:var(--muted);
  text-align:center;
}

@media(max-width:1050px){
  .site-header{
    height:72px;
  }

  .header-inner{
    width:calc(100% - 28px);
  }

  .interest-link,
  .lang-link{
    display:none;
  }

  .brand-center{
    min-width:auto;
  }

  .brand-text strong{
    font-size:28px;
  }

  .brand-emblem{
    width:36px;
    height:42px;
    font-size:28px;
  }

  .hero-slider{
    min-height:680px;
  }

  .hero-content{
    right:24px;
    bottom:26%;
  }

  .hero-stats{
    width:calc(100% - 44px);
    bottom:20px;
    grid-template-columns:repeat(2,1fr);
  }

  .scroll-indicator{
    display:none;
  }

  .about-cards,
  .project-grid,
  .service-grid,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .section-head.row{
    display:block;
  }
}

@media(max-width:640px){
  .header-left{
    gap:8px;
  }

  .circle-btn{
    width:40px;
    height:40px;
  }

  .menu-label{
    display:none;
  }

  .hero-content h1{
    font-size:39px;
  }

  .hero-content p{
    font-size:14px;
  }

  .hero-actions{
    display:grid;
    justify-content:stretch;
  }

  .hero-btn{
    width:100%;
  }

  .nav-arrow{
    width:44px;
    height:44px;
    top:auto;
    bottom:118px;
  }

  .nav-arrow.prev{
    left:18px;
  }

  .nav-arrow.next{
    right:18px;
  }
}

/* ANCOR V3: header logo + menu to far right */
.site-header {
  height: 78px !important;
}

.header-inner {
  display: flex !important;
  grid-template-columns: unset !important;
  direction: ltr !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: min(1480px, calc(100% - 72px)) !important;
}

.header-left {
  order: 1 !important;
  justify-content: flex-start !important;
  direction: ltr !important;
  margin-right: auto !important;
}

.brand-center {
  order: 2 !important;
  margin-left: auto !important;
  margin-right: 22px !important;
  justify-content: flex-end !important;
  min-width: auto !important;
}

.header-right {
  order: 3 !important;
  justify-content: flex-end !important;
  direction: ltr !important;
  margin-left: 0 !important;
}

.header-right .menu-label {
  order: 1 !important;
}

.header-right .menu-btn {
  order: 2 !important;
}

.brand-emblem {
  width: 38px !important;
  height: 44px !important;
  font-size: 30px !important;
}

.brand-text strong {
  font-size: 31px !important;
}

.brand-text small {
  font-size: 12px !important;
}

@media(max-width: 1050px) {
  .header-inner {
    width: calc(100% - 28px) !important;
  }

  .brand-center {
    margin-right: 12px !important;
  }
}

@media(max-width: 640px) {
  .brand-text strong {
    font-size: 24px !important;
  }

  .brand-text small {
    font-size: 10px !important;
  }

  .brand-emblem {
    width: 32px !important;
    height: 38px !important;
    font-size: 25px !important;
  }
}


/* ANCOR V4: real far-right header alignment */
.site-header {
  height: 78px !important;
}

.header-inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0 42px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  direction: ltr !important;
}

.header-left {
  order: 1 !important;
  margin: 0 !important;
  margin-right: auto !important;
  justify-content: flex-start !important;
  direction: ltr !important;
}

.brand-center {
  order: 2 !important;
  margin: 0 18px 0 auto !important;
  min-width: auto !important;
  justify-content: flex-end !important;
}

.header-right {
  order: 3 !important;
  margin: 0 !important;
  justify-content: flex-end !important;
  direction: ltr !important;
}

.header-right .menu-label {
  order: 1 !important;
  margin-right: 10px !important;
}

.header-right .menu-btn {
  order: 2 !important;
}

@media(max-width: 900px) {
  .header-inner {
    padding: 0 18px !important;
  }

  .brand-center {
    margin: 0 10px 0 auto !important;
  }
}


/* ANCOR V5: centered logo, menu right, actions left */
.header-inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0 42px !important;
  margin: 0 !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  direction: ltr !important;
}

.header-left {
  position: absolute !important;
  left: 42px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  order: unset !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  direction: ltr !important;
}

.brand-center {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  order: unset !important;
  margin: 0 !important;
  min-width: auto !important;
  justify-content: center !important;
}

.header-right {
  position: absolute !important;
  right: 42px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  order: unset !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  direction: rtl !important;
}

.header-right .menu-label {
  order: 1 !important;
  margin: 0 10px 0 0 !important;
}

.header-right .menu-btn {
  order: 2 !important;
}

@media(max-width: 900px) {
  .header-inner {
    padding: 0 18px !important;
  }

  .header-left {
    left: 18px !important;
  }

  .header-right {
    right: 18px !important;
  }
}

@media(max-width: 640px) {
  .interest-link,
  .lang-link,
  .globe-btn {
    display: none !important;
  }

  .brand-text strong {
    font-size: 24px !important;
  }

  .brand-text small {
    font-size: 10px !important;
  }
}


/* ANCOR MAP SECTION - TMG STYLE */
.ancor-map-section {
  background: #FCFCFC !important;
  padding: 110px 0 !important;
}

.ancor-map-wrap {
  width: min(1480px, calc(100% - 72px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 90px;
  align-items: center;
  direction: ltr;
}

.ancor-map-box {
  height: 520px;
  background: #e9e3d8;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.ancor-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.92) contrast(.98);
}

.ancor-map-info {
  direction: rtl;
  text-align: right;
  padding-inline-start: 20px;
}

.ancor-map-info .map-kicker {
  display: block;
  color: #957A56;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

.ancor-map-info h2 {
  margin: 0 0 16px;
  color: #212121;
  font-size: clamp(44px, 4.4vw, 72px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.05em;
}

.ancor-map-info .map-subtitle {
  margin: 0 0 58px;
  color: #212121;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.8;
}

.map-contact-list {
  display: grid;
  gap: 28px;
  margin-bottom: 54px;
}

.map-contact-row {
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
  gap: 22px;
  color: #212121;
  font-size: 18px;
  font-weight: 800;
}

.map-contact-row i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f3eadf;
  color: #957A56;
}

.map-contact-row svg {
  width: 25px;
  height: 25px;
}

.map-main-btn {
  height: 62px;
  width: min(470px, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #212121;
  color: #FCFCFC;
  font-size: 17px;
  font-weight: 900;
  transition: .22s ease;
}

.map-main-btn:hover {
  background: #957A56;
  transform: translateY(-3px);
}

@media(max-width: 1050px) {
  .ancor-map-section {
    padding: 70px 0 !important;
  }

  .ancor-map-wrap {
    width: min(100% - 36px, 1480px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ancor-map-box {
    height: 420px;
    order: 2;
  }

  .ancor-map-info {
    order: 1;
    padding: 0;
  }

  .ancor-map-info .map-subtitle {
    margin-bottom: 34px;
  }

  .map-contact-list {
    margin-bottom: 34px;
  }
}

@media(max-width: 640px) {
  .ancor-map-box {
    height: 340px;
  }

  .map-contact-row {
    grid-template-columns: 1fr 44px;
    font-size: 15px;
  }

  .map-main-btn {
    height: 56px;
    font-size: 15px;
  }
}


/* ANCOR COMPACT MAP WITH PROJECT CARDS */
.compact-map-section {
  background: #FCFCFC !important;
  padding: 70px 0 !important;
}

.compact-map-wrap {
  width: min(1360px, calc(100% - 56px));
  margin: auto;
}

.compact-map-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.compact-map-head h2 {
  margin: 8px 0 0 !important;
  color: #212121 !important;
  font-size: clamp(34px, 3.4vw, 54px) !important;
  line-height: .95 !important;
}

.compact-map-head p {
  margin: 0 !important;
  max-width: 430px;
  color: #212121 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  font-weight: 700;
}

.compact-map-stage {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 26px;
  background: #FCFCFC;
  box-shadow: 0 22px 70px rgba(0,0,0,.12);
}

.compact-map-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.92) contrast(.98);
}

.map-floating-panel {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  width: min(390px, calc(100% - 40px));
  z-index: 5;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  padding: 16px;
  display: flex;
  flex-direction: column;
  direction: rtl;
}

.map-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom: 12px;
}

.map-panel-title strong {
  color: #212121;
  font-size: 16px;
  font-weight: 900;
}

.map-panel-title span {
  color: #957A56;
  font-size: 12px;
  font-weight: 900;
}

.map-project-cards {
  display: grid;
  gap: 10px;
  overflow: auto;
  padding-inline-end: 4px;
  flex: 1;
}

.map-project-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(7,52,90,.10);
  background: #FCFCFC;
  border-radius: 16px;
  padding: 9px;
  cursor: pointer;
  transition: .18s ease;
}

.map-project-card:hover,
.map-project-card.active {
  border-color: rgba(185,151,91,.62);
  background: #fbf5eb;
  transform: translateY(-2px);
}

.map-project-img {
  height: 66px;
  border-radius: 12px;
  overflow: hidden;
  background: #FCFCFC;
}

.map-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-project-info {
  min-width: 0;
}

.map-project-info span {
  display: block;
  color: #957A56;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.map-project-info strong {
  display: block;
  color: #212121;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-project-info small {
  display: block;
  color: #212121;
  font-size: 12px;
  font-weight: 700;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-contact-compact {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 12px;
}

.map-contact-compact a {
  color: #212121;
  font-size: 13px;
  font-weight: 800;
}

.map-interest-btn {
  height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #212121;
  color: #FCFCFC !important;
  border-radius: 12px;
  margin-top: 2px;
  transition: .18s ease;
}

.map-interest-btn:hover {
  background: #957A56;
}

.map-card-loading {
  padding: 18px;
  border-radius: 14px;
  background: #FCFCFC;
  color: #212121;
  font-weight: 800;
  text-align: center;
}

@media(max-width: 900px) {
  .compact-map-section {
    padding: 50px 0 !important;
  }

  .compact-map-wrap {
    width: min(100% - 32px, 1360px);
  }

  .compact-map-head {
    display: block;
  }

  .compact-map-head p {
    margin-top: 12px !important;
  }

  .compact-map-stage {
    height: 680px;
  }

  .map-floating-panel {
    top: auto;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    height: 330px;
  }
}

@media(max-width: 560px) {
  .compact-map-stage {
    height: 640px;
    border-radius: 20px;
  }

  .map-project-card {
    grid-template-columns: 72px 1fr;
  }

  .map-project-img {
    height: 58px;
  }

  .map-project-info strong {
    font-size: 15px;
  }
}


/* ANCOR CARDS DIRECTLY ON MAP */
.cards-on-map-section {
  background: #FCFCFC !important;
  padding: 62px 0 !important;
}

.cards-map-wrap {
  width: min(1380px, calc(100% - 56px));
  margin: auto;
}

.cards-map-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.cards-map-head h2 {
  margin: 8px 0 0 !important;
  color: #212121 !important;
  font-size: clamp(32px, 3.2vw, 52px) !important;
  line-height: .95 !important;
}

.cards-map-head p {
  margin: 0 !important;
  max-width: 420px;
  color: #212121 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  font-weight: 800;
}

.cards-map-stage {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 24px;
  background: #FCFCFC;
  box-shadow: 0 22px 70px rgba(0,0,0,.12);
}

.cards-map-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.95) contrast(.98);
}

.map-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(7,52,90,.12), transparent 28%, rgba(0,0,0,.10) 100%),
    radial-gradient(circle at 70% 30%, rgba(185,151,91,.18), transparent 32%);
}

.map-top-actions {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  height: 46px;
  min-width: 220px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 38px rgba(0,0,0,.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  direction: ltr;
}

.map-top-actions strong {
  color: #212121;
  font-size: 14px;
  font-weight: 900;
}

.map-top-actions span {
  color: #957A56;
  font-size: 12px;
  font-weight: 900;
}

.map-cards-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.map-pin-card {
  position: absolute;
  width: 255px;
  min-height: 104px;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 9px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.72);
  cursor: pointer;
  pointer-events: auto;
  transition: .2s ease;
  direction: rtl;
}

.map-pin-card:hover,
.map-pin-card.active {
  transform: translate(-50%, -50%) translateY(-8px);
  border-color: rgba(185,151,91,.85);
  box-shadow: 0 26px 65px rgba(0,0,0,.28);
}

.map-pin-card.active {
  outline: 2px solid rgba(185,151,91,.35);
}

.map-pin-dot {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 18px;
  height: 18px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(255,255,255,.94);
  border-right: 1px solid rgba(185,151,91,.35);
  border-bottom: 1px solid rgba(185,151,91,.35);
}

.map-pin-image {
  height: 76px;
  border-radius: 13px;
  overflow: hidden;
  background: #FCFCFC;
}

.map-pin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-pin-info {
  min-width: 0;
}

.map-pin-info small {
  display: block;
  color: #957A56;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.map-pin-info strong {
  display: block;
  color: #212121;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-pin-info em {
  display: block;
  margin-top: 6px;
  color: #212121;
  font-size: 12px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-contact-mini {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}

.map-contact-mini a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  color: #212121;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(0,0,0,.14);
}

.map-contact-mini a:last-child {
  background: #212121;
  color: #FCFCFC;
}

.map-card-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,.95);
  border-radius: 16px;
  padding: 18px 24px;
  color: #212121;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

@media(max-width: 950px) {
  .cards-on-map-section {
    padding: 46px 0 !important;
  }

  .cards-map-wrap {
    width: min(100% - 32px, 1380px);
  }

  .cards-map-head {
    display: block;
  }

  .cards-map-head p {
    margin-top: 10px !important;
  }

  .cards-map-stage {
    height: 640px;
  }

  .map-pin-card {
    width: 225px;
    grid-template-columns: 68px 1fr;
  }

  .map-pin-image {
    height: 66px;
  }

  .map-contact-mini {
    flex-wrap: wrap;
    right: 18px;
  }
}

@media(max-width: 620px) {
  .cards-map-stage {
    height: 620px;
    border-radius: 20px;
  }

  .map-pin-card {
    width: 210px;
    min-height: 88px;
    grid-template-columns: 60px 1fr;
    padding: 8px;
  }

  .map-pin-image {
    height: 58px;
  }

  .map-pin-info strong {
    font-size: 15px;
  }

  .map-top-actions {
    left: 14px;
    right: 14px;
    min-width: auto;
  }

  .map-contact-mini a {
    font-size: 12px;
    min-height: 38px;
    padding: 0 12px;
  }
}


/* =========================================================
   ANCOR FULL THEME: BLACK / GOLD / WHITE
   ========================================================= */

:root {
  --navy: #212121 !important;
  --navy2: #212121 !important;
  --gold: #957A56 !important;
  --gold2: #957A56 !important;
  --paper: #FCFCFC !important;
  --white: #FCFCFC !important;
  --black: #212121 !important;
  --text: #212121 !important;
  --muted: #212121 !important;
}

/* Global */
body {
  background: #FCFCFC !important;
  color: #212121 !important;
}

/* Header */
.site-header {
  background: rgba(255,255,255,.94) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,.08) !important;
}

.brand-center,
.brand-text strong,
.brand-text small,
.brand-emblem {
  color: #957A56 !important;
}

.brand-emblem {
  border-color: #957A56 !important;
}

.interest-link,
.lang-link,
.menu-label {
  color: #212121 !important;
}

.circle-btn {
  border-color: #212121 !important;
  color: #212121 !important;
}

.phone-btn {
  background: #212121 !important;
  border-color: #212121 !important;
  color: #FCFCFC !important;
}

.phone-btn:hover,
.circle-btn:hover {
  background: #957A56 !important;
  border-color: #957A56 !important;
  color: #FCFCFC !important;
}

.menu-btn span {
  background: #212121 !important;
}

/* Loader */
.ancor-loader {
  background: #212121 !important;
}

.loader-logo,
.loader-logo strong,
.loader-logo small,
.loader-mark {
  color: #957A56 !important;
  border-color: rgba(216,189,121,.55) !important;
}

/* Side Menu */
.side-menu {
  background: #212121 !important;
}

.side-menu a {
  color: #FCFCFC !important;
  border-bottom-color: rgba(255,255,255,.12) !important;
}

.side-menu a:hover {
  color: #957A56 !important;
}

.menu-close {
  background: #FCFCFC !important;
  color: #212121 !important;
}

/* Hero */
.hero-slider {
  background: #212121 !important;
}

.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.12) 26%, rgba(0,0,0,.86) 100%),
    linear-gradient(to left, rgba(0,0,0,.74) 0%, rgba(0,0,0,.38) 42%, rgba(0,0,0,.18) 100%) !important;
}

.hero-kicker {
  color: #957A56 !important;
}

.hero-kicker:before {
  background: #957A56 !important;
}

.hero-content h1 {
  color: #FCFCFC !important;
}

.hero-content p {
  color: rgba(255,255,255,.86) !important;
}

.hero-btn {
  background: #212121 !important;
  border-color: #212121 !important;
  color: #FCFCFC !important;
}

.hero-btn.ghost {
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.36) !important;
  color: #FCFCFC !important;
}

.hero-btn:hover,
.hero-btn.ghost:hover {
  background: #957A56 !important;
  border-color: #957A56 !important;
  color: #FCFCFC !important;
}

.hero-stats {
  background: rgba(5,5,5,.58) !important;
  border-color: rgba(216,189,121,.28) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.34) !important;
}

.hero-stat {
  border-left-color: rgba(216,189,121,.20) !important;
}

.hero-stat strong {
  color: #FCFCFC !important;
}

.hero-stat span {
  color: rgba(216,189,121,.82) !important;
}

.nav-arrow {
  background: rgba(5,5,5,.58) !important;
  border-color: rgba(216,189,121,.36) !important;
  color: #FCFCFC !important;
}

.nav-arrow:hover {
  background: #957A56 !important;
  border-color: #957A56 !important;
  color: #FCFCFC !important;
}

.scroll-indicator {
  border-color: rgba(216,189,121,.86) !important;
}

.scroll-indicator span {
  background: #957A56 !important;
}

/* Sections */
.section-kicker {
  color: #957A56 !important;
}

.section h2 {
  color: #212121 !important;
}

.section p {
  color: #212121 !important;
}

.about-section,
.contact-section,
.cards-on-map-section,
.compact-map-section,
.ancor-map-section {
  background: #FCFCFC !important;
}

.about-cards article,
.project-card,
.contact-form {
  background: #FCFCFC !important;
  border-color: rgba(0,0,0,.10) !important;
}

.about-cards b,
.about-cards strong,
.project-body h3 {
  color: #212121 !important;
}

.about-cards article:hover,
.project-card:hover {
  border-color: rgba(185,151,91,.55) !important;
}

/* Project Cards */
.project-tags span {
  background: #FCFCFC !important;
  color: #957A56 !important;
}

.outline-btn {
  border-color: #212121 !important;
  color: #212121 !important;
}

.outline-btn:hover {
  background: #212121 !important;
  color: #FCFCFC !important;
}

/* Services */
.services-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(185,151,91,.24), transparent 32%),
    #212121 !important;
  color: #FCFCFC !important;
}

.services-section h2 {
  color: #FCFCFC !important;
}

.services-section p {
  color: rgba(255,255,255,.68) !important;
}

.service-grid article {
  background: rgba(255,255,255,.065) !important;
  border-color: rgba(216,189,121,.18) !important;
}

.service-grid article:hover {
  background: rgba(185,151,91,.18) !important;
  border-color: rgba(216,189,121,.52) !important;
}

.service-grid span {
  color: #957A56 !important;
}

.service-grid h3 {
  color: #FCFCFC !important;
}

/* Contact */
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #FCFCFC !important;
  border-color: rgba(0,0,0,.13) !important;
  color: #212121 !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #957A56 !important;
  box-shadow: 0 0 0 3px rgba(185,151,91,.14) !important;
}

.contact-form button {
  background: #212121 !important;
  color: #FCFCFC !important;
}

.contact-form button:hover {
  background: #957A56 !important;
}

/* Map Section */
.cards-map-head h2,
.compact-map-head h2,
.ancor-map-info h2 {
  color: #212121 !important;
}

.cards-map-head p,
.compact-map-head p,
.ancor-map-info .map-subtitle {
  color: #212121 !important;
}

.cards-map-stage,
.compact-map-stage,
.ancor-map-box {
  background: #212121 !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.18) !important;
}

.map-shade {
  background:
    linear-gradient(to bottom, rgba(5,5,5,.10), transparent 30%, rgba(5,5,5,.18) 100%),
    radial-gradient(circle at 72% 30%, rgba(185,151,91,.20), transparent 34%) !important;
}

.map-top-actions {
  background: rgba(5,5,5,.82) !important;
  border: 1px solid rgba(216,189,121,.24) !important;
}

.map-top-actions strong {
  color: #FCFCFC !important;
}

.map-top-actions span {
  color: #957A56 !important;
}

/* Cards on Map */
.map-pin-card {
  background: rgba(255,255,255,.95) !important;
  border-color: rgba(185,151,91,.35) !important;
}

.map-pin-card:hover,
.map-pin-card.active {
  border-color: #957A56 !important;
  outline-color: rgba(185,151,91,.30) !important;
}

.map-pin-dot {
  background: rgba(255,255,255,.95) !important;
  border-right-color: rgba(185,151,91,.45) !important;
  border-bottom-color: rgba(185,151,91,.45) !important;
}

.map-pin-info small,
.map-project-info span,
.map-panel-title span {
  color: #957A56 !important;
}

.map-pin-info strong,
.map-project-info strong,
.map-panel-title strong {
  color: #212121 !important;
}

.map-pin-info em,
.map-project-info small {
  color: #212121 !important;
}

.map-contact-mini a {
  background: rgba(255,255,255,.94) !important;
  color: #212121 !important;
}

.map-contact-mini a:last-child,
.map-interest-btn,
.map-main-btn {
  background: #212121 !important;
  color: #FCFCFC !important;
}

.map-contact-mini a:last-child:hover,
.map-interest-btn:hover,
.map-main-btn:hover {
  background: #957A56 !important;
}

/* Old compact panel if exists */
.map-floating-panel {
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(185,151,91,.22) !important;
}

.map-project-card.active,
.map-project-card:hover {
  background: #f5ecdc !important;
  border-color: #957A56 !important;
}

/* WhatsApp */
.whatsapp-float {
  background: #FCFCFC !important;
  border-color: rgba(185,151,91,.32) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.22) !important;
}

/* Remove remaining blue hard-coded colors */
[style*="#212121"],
[style*="#212121"] {
  color: #212121 !important;
}


/* ANCOR PROFILE SECTION */
.ancor-profile-section {
  background: #FCFCFC !important;
  padding: 82px 0 0 !important;
  overflow: hidden;
}

.ancor-profile-wrap {
  width: min(1440px, calc(100% - 72px));
  margin: auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
  direction: ltr;
}

.ancor-profile-logo {
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ancor-big-logo {
  color: #957A56;
  display: flex;
  align-items: center;
  gap: 28px;
  transform: scale(1.02);
}

.ancor-big-mark {
  width: 138px;
  height: 170px;
  display: grid;
  place-items: center;
  border-left: 8px solid #957A56;
  border-bottom: 8px solid #957A56;
  font-size: 126px;
  line-height: 1;
  font-weight: 900;
}

.ancor-big-logo strong {
  display: block;
  font-size: clamp(76px, 8vw, 150px);
  line-height: .82;
  letter-spacing: .08em;
  font-weight: 900;
}

.ancor-big-logo small {
  display: block;
  margin-top: 18px;
  font-size: clamp(26px, 2.8vw, 42px);
  letter-spacing: .35em;
  color: #957A56;
  font-weight: 800;
}

.ancor-profile-content {
  direction: rtl;
  text-align: right;
}

.ancor-profile-content h2 {
  color: #212121 !important;
  font-size: clamp(40px, 4.3vw, 72px) !important;
  line-height: 1 !important;
  margin: 10px 0 24px !important;
  font-weight: 900;
  letter-spacing: -.05em;
}

.ancor-profile-content p {
  color: #161616 !important;
  font-size: 17px !important;
  line-height: 2 !important;
  margin: 0 0 18px !important;
  max-width: 780px;
  font-weight: 650;
}

.ancor-profile-content .profile-bold {
  font-weight: 900 !important;
  color: #212121 !important;
}

.profile-read-btn {
  margin-top: 16px;
  height: 52px;
  padding: 0 24px;
  border: 1px solid #212121;
  color: #212121;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 900;
  transition: .2s ease;
}

.profile-read-btn:hover {
  background: #212121;
  color: #FCFCFC;
  border-color: #212121;
}

.profile-read-btn span {
  font-size: 24px;
  line-height: 1;
}

.ancor-profile-stats {
  margin-top: 58px;
  border-top: 1px solid rgba(185,151,91,.25);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  direction: rtl;
  background: #FCFCFC;
}

.ancor-profile-stats article {
  min-height: 150px;
  padding: 22px 18px;
  text-align: center;
  border-left: 1px solid rgba(185,151,91,.25);
  display: grid;
  place-items: center;
  align-content: center;
}

.ancor-profile-stats article:last-child {
  border-left: 0;
}

.ancor-profile-stats i {
  display: grid;
  place-items: center;
  color: #957A56;
  margin-bottom: 12px;
}

.ancor-profile-stats svg {
  width: 42px;
  height: 42px;
}

.ancor-profile-stats strong {
  display: block;
  color: #957A56;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 8px;
}

.ancor-profile-stats span {
  display: block;
  color: #212121;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
}

@media(max-width: 1100px) {
  .ancor-profile-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 36px, 1440px);
  }

  .ancor-profile-logo {
    min-height: auto;
    justify-content: flex-start;
  }

  .ancor-big-logo {
    transform: scale(.78);
    transform-origin: left center;
  }

  .ancor-profile-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .ancor-profile-stats article:nth-child(3n) {
    border-left: 0;
  }
}

@media(max-width: 680px) {
  .ancor-profile-section {
    padding-top: 52px !important;
  }

  .ancor-big-logo {
    transform: scale(.58);
    margin-left: -80px;
  }

  .ancor-profile-content h2 {
    font-size: 36px !important;
  }

  .ancor-profile-content p {
    font-size: 15px !important;
    line-height: 1.85 !important;
  }

  .ancor-profile-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
  }

  .ancor-profile-stats article {
    min-height: 130px;
  }

  .ancor-profile-stats article:nth-child(3n) {
    border-left: 1px solid rgba(185,151,91,.25);
  }

  .ancor-profile-stats article:nth-child(2n) {
    border-left: 0;
  }
}


/* =====================================================
   ANCOR FULL SITE COMPACT MODE
   ===================================================== */

/* Header */
.site-header {
  height: 64px !important;
}

.header-inner {
  padding: 0 34px !important;
}

.circle-btn {
  width: 36px !important;
  height: 36px !important;
}

.circle-btn svg {
  width: 17px !important;
  height: 17px !important;
}

.interest-link,
.lang-link,
.menu-label {
  font-size: 12px !important;
}

.brand-center {
  gap: 8px !important;
}

.brand-emblem {
  width: 31px !important;
  height: 36px !important;
  font-size: 24px !important;
  border-left-width: 2px !important;
  border-bottom-width: 2px !important;
}

.brand-text strong {
  font-size: 25px !important;
  letter-spacing: .09em !important;
}

.brand-text small {
  font-size: 9px !important;
  margin-top: 3px !important;
}

/* Hero */
.hero-slider {
  height: 82vh !important;
  min-height: 590px !important;
}

.hero-content {
  right: 7% !important;
  bottom: 24% !important;
  width: min(620px, 82vw) !important;
}

.hero-kicker {
  font-size: 13px !important;
  margin-bottom: 9px !important;
}

.hero-kicker:before {
  width: 24px !important;
}

.hero-content h1 {
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: 1.03 !important;
  margin-bottom: 10px !important;
}

.hero-content p {
  font-size: 13px !important;
  line-height: 1.75 !important;
  margin-bottom: 16px !important;
  max-width: 590px !important;
}

.hero-actions {
  gap: 9px !important;
}

.hero-btn {
  height: 42px !important;
  min-width: 128px !important;
  padding: 0 19px !important;
  font-size: 12px !important;
}

.hero-stats {
  width: min(720px, calc(100% - 150px)) !important;
  min-height: 58px !important;
  bottom: 18px !important;
  border-radius: 16px !important;
}

.hero-stat {
  padding: 10px 12px !important;
}

.hero-stat strong {
  font-size: 18px !important;
}

.hero-stat span {
  font-size: 8px !important;
  margin-top: 5px !important;
}

.nav-arrow {
  width: 42px !important;
  height: 42px !important;
}

.nav-arrow.prev {
  left: 24px !important;
}

.nav-arrow.next {
  right: 24px !important;
}

.nav-arrow svg {
  width: 20px !important;
  height: 20px !important;
}

.scroll-indicator {
  width: 20px !important;
  height: 35px !important;
  bottom: 92px !important;
}

/* General Sections */
.section {
  padding: 54px 0 !important;
}

.section-inner {
  width: min(1120px, calc(100% - 40px)) !important;
}

.section h2 {
  font-size: clamp(30px, 3.1vw, 48px) !important;
  margin: 7px 0 13px !important;
}

.section p {
  font-size: 14px !important;
  line-height: 1.75 !important;
}

.section-kicker {
  font-size: 11px !important;
}

/* Profile Section */
.ancor-profile-section {
  padding: 52px 0 0 !important;
}

.ancor-profile-wrap {
  width: min(1260px, calc(100% - 56px)) !important;
  grid-template-columns: .82fr 1.18fr !important;
  gap: 42px !important;
}

.ancor-profile-logo {
  min-height: 250px !important;
}

.ancor-big-logo {
  gap: 18px !important;
  transform: scale(.72) !important;
}

.ancor-big-mark {
  width: 96px !important;
  height: 118px !important;
  font-size: 84px !important;
  border-left-width: 6px !important;
  border-bottom-width: 6px !important;
}

.ancor-big-logo strong {
  font-size: clamp(58px, 6vw, 104px) !important;
}

.ancor-big-logo small {
  font-size: clamp(18px, 2vw, 28px) !important;
  margin-top: 10px !important;
}

.ancor-profile-content h2 {
  font-size: clamp(32px, 3.5vw, 54px) !important;
  margin: 7px 0 16px !important;
}

.ancor-profile-content p {
  font-size: 14px !important;
  line-height: 1.85 !important;
  margin-bottom: 11px !important;
}

.profile-read-btn {
  height: 42px !important;
  padding: 0 18px !important;
  font-size: 13px !important;
  margin-top: 8px !important;
}

.ancor-profile-stats {
  margin-top: 36px !important;
}

.ancor-profile-stats article {
  min-height: 112px !important;
  padding: 14px 12px !important;
}

.ancor-profile-stats svg {
  width: 31px !important;
  height: 31px !important;
}

.ancor-profile-stats i {
  margin-bottom: 8px !important;
}

.ancor-profile-stats strong {
  font-size: clamp(18px, 1.6vw, 25px) !important;
  margin-bottom: 5px !important;
}

.ancor-profile-stats span {
  font-size: 11px !important;
}

/* About old cards fallback */
.about-cards {
  gap: 12px !important;
  margin-top: 24px !important;
}

.about-cards article {
  padding: 19px !important;
  border-radius: 16px !important;
}

.about-cards b {
  margin-bottom: 18px !important;
}

.about-cards strong {
  font-size: 17px !important;
}

/* Projects */
.section-head.row {
  margin-bottom: 22px !important;
}

.outline-btn {
  height: 39px !important;
  padding: 0 17px !important;
  font-size: 12px !important;
}

.project-grid {
  gap: 14px !important;
}

.project-card {
  border-radius: 16px !important;
}

.project-card img {
  height: 195px !important;
}

.project-body {
  padding: 16px !important;
}

.project-body h3 {
  font-size: 20px !important;
  margin-bottom: 7px !important;
}

.project-body p {
  font-size: 12px !important;
  line-height: 1.55 !important;
  margin-bottom: 11px !important;
}

.project-tags {
  gap: 6px !important;
}

.project-tags span {
  min-height: 24px !important;
  padding: 0 8px !important;
  font-size: 9px !important;
}

/* Services */
.service-grid {
  gap: 12px !important;
  margin-top: 24px !important;
}

.service-grid article {
  min-height: 165px !important;
  padding: 18px !important;
  border-radius: 16px !important;
}

.service-grid span {
  font-size: 11px !important;
}

.service-grid h3 {
  font-size: 18px !important;
  margin: 20px 0 8px !important;
}

.service-grid p {
  font-size: 12px !important;
  line-height: 1.65 !important;
}

/* Map */
.cards-on-map-section,
.compact-map-section,
.ancor-map-section {
  padding: 44px 0 !important;
}

.cards-map-wrap,
.compact-map-wrap,
.ancor-map-wrap {
  width: min(1240px, calc(100% - 44px)) !important;
}

.cards-map-head,
.compact-map-head {
  margin-bottom: 14px !important;
}

.cards-map-head h2,
.compact-map-head h2 {
  font-size: clamp(28px, 2.8vw, 42px) !important;
}

.cards-map-head p,
.compact-map-head p {
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.cards-map-stage,
.compact-map-stage {
  height: 460px !important;
  border-radius: 18px !important;
}

.map-top-actions {
  height: 38px !important;
  min-width: 190px !important;
  padding: 0 12px !important;
  top: 12px !important;
  right: 12px !important;
}

.map-top-actions strong {
  font-size: 12px !important;
}

.map-top-actions span {
  font-size: 10px !important;
}

.map-pin-card {
  width: 218px !important;
  min-height: 86px !important;
  grid-template-columns: 62px 1fr !important;
  gap: 9px !important;
  border-radius: 14px !important;
  padding: 7px !important;
}

.map-pin-image {
  height: 58px !important;
  border-radius: 10px !important;
}

.map-pin-info small {
  font-size: 8px !important;
  margin-bottom: 3px !important;
}

.map-pin-info strong {
  font-size: 14px !important;
}

.map-pin-info em {
  font-size: 10px !important;
  margin-top: 4px !important;
}

.map-pin-dot {
  width: 13px !important;
  height: 13px !important;
  bottom: -12px !important;
}

.map-contact-mini {
  left: 12px !important;
  bottom: 12px !important;
  gap: 6px !important;
}

.map-contact-mini a {
  min-height: 35px !important;
  padding: 0 12px !important;
  font-size: 11px !important;
}

/* Contact */
.contact-layout {
  gap: 24px !important;
}

.contact-form {
  padding: 20px !important;
  border-radius: 18px !important;
  gap: 10px !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 13px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
}

.contact-form textarea {
  min-height: 95px !important;
}

.contact-form button {
  height: 42px !important;
  font-size: 13px !important;
}

/* WhatsApp */
.whatsapp-float {
  width: 44px !important;
  height: 44px !important;
  right: 18px !important;
  bottom: 18px !important;
}

.whatsapp-float svg {
  width: 25px !important;
  height: 25px !important;
}

/* Mobile */
@media(max-width: 1050px) {
  .hero-slider {
    min-height: 560px !important;
  }

  .hero-content {
    bottom: 28% !important;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    width: calc(100% - 34px) !important;
  }

  .ancor-profile-wrap {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .ancor-profile-logo {
    justify-content: flex-start !important;
    min-height: 130px !important;
  }

  .ancor-big-logo {
    transform: scale(.48) !important;
    transform-origin: left center !important;
  }

  .ancor-profile-stats {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .project-grid,
  .service-grid,
  .contact-layout {
    grid-template-columns: 1fr !important;
  }

  .cards-map-stage,
  .compact-map-stage {
    height: 560px !important;
  }
}

@media(max-width: 640px) {
  .site-header {
    height: 58px !important;
  }

  .header-inner {
    padding: 0 14px !important;
  }

  .brand-text strong {
    font-size: 21px !important;
  }

  .brand-text small {
    font-size: 8px !important;
  }

  .brand-emblem {
    width: 27px !important;
    height: 32px !important;
    font-size: 21px !important;
  }

  .hero-content h1 {
    font-size: 31px !important;
  }

  .hero-content p {
    font-size: 12px !important;
  }

  .section {
    padding: 38px 0 !important;
  }

  .ancor-profile-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .cards-map-stage,
  .compact-map-stage {
    height: 560px !important;
  }

  .map-pin-card {
    width: 190px !important;
  }
}


/* =====================================================
   ANCOR COMPACT PLUS - bigger than full compact
   ===================================================== */

/* Header */
.site-header {
  height: 72px !important;
}

.header-inner {
  padding: 0 38px !important;
}

.circle-btn {
  width: 40px !important;
  height: 40px !important;
}

.circle-btn svg {
  width: 19px !important;
  height: 19px !important;
}

.interest-link,
.lang-link,
.menu-label {
  font-size: 13px !important;
}

.brand-emblem {
  width: 36px !important;
  height: 42px !important;
  font-size: 28px !important;
}

.brand-text strong {
  font-size: 30px !important;
}

.brand-text small {
  font-size: 11px !important;
}

/* Hero */
.hero-slider {
  height: 88vh !important;
  min-height: 660px !important;
}

.hero-content {
  right: 8% !important;
  bottom: 23% !important;
  width: min(680px, 84vw) !important;
}

.hero-kicker {
  font-size: 15px !important;
  margin-bottom: 12px !important;
}

.hero-content h1 {
  font-size: clamp(42px, 4.8vw, 70px) !important;
  line-height: 1.04 !important;
  margin-bottom: 13px !important;
}

.hero-content p {
  font-size: 15px !important;
  line-height: 1.85 !important;
  margin-bottom: 21px !important;
}

.hero-btn {
  height: 48px !important;
  min-width: 145px !important;
  padding: 0 24px !important;
  font-size: 13px !important;
}

.hero-stats {
  width: min(820px, calc(100% - 160px)) !important;
  min-height: 68px !important;
  bottom: 24px !important;
  border-radius: 20px !important;
}

.hero-stat {
  padding: 13px 16px !important;
}

.hero-stat strong {
  font-size: 22px !important;
}

.hero-stat span {
  font-size: 9px !important;
}

/* Sections */
.section {
  padding: 68px 0 !important;
}

.section-inner {
  width: min(1180px, calc(100% - 44px)) !important;
}

.section h2 {
  font-size: clamp(36px, 3.8vw, 60px) !important;
  margin: 9px 0 16px !important;
}

.section p {
  font-size: 15px !important;
  line-height: 1.85 !important;
}

.section-kicker {
  font-size: 12px !important;
}

/* Profile Section */
.ancor-profile-section {
  padding: 66px 0 0 !important;
}

.ancor-profile-wrap {
  width: min(1360px, calc(100% - 64px)) !important;
  grid-template-columns: .88fr 1.12fr !important;
  gap: 55px !important;
}

.ancor-profile-logo {
  min-height: 320px !important;
}

.ancor-big-logo {
  transform: scale(.88) !important;
  gap: 23px !important;
}

.ancor-big-mark {
  width: 118px !important;
  height: 145px !important;
  font-size: 102px !important;
}

.ancor-big-logo strong {
  font-size: clamp(72px, 7vw, 128px) !important;
}

.ancor-big-logo small {
  font-size: clamp(22px, 2.4vw, 34px) !important;
  margin-top: 14px !important;
}

.ancor-profile-content h2 {
  font-size: clamp(38px, 4vw, 66px) !important;
  margin: 9px 0 20px !important;
}

.ancor-profile-content p {
  font-size: 15px !important;
  line-height: 1.95 !important;
  margin-bottom: 14px !important;
}

.profile-read-btn {
  height: 48px !important;
  padding: 0 22px !important;
  font-size: 14px !important;
  margin-top: 12px !important;
}

.ancor-profile-stats {
  margin-top: 48px !important;
}

.ancor-profile-stats article {
  min-height: 135px !important;
  padding: 18px 14px !important;
}

.ancor-profile-stats svg {
  width: 38px !important;
  height: 38px !important;
}

.ancor-profile-stats strong {
  font-size: clamp(21px, 1.9vw, 31px) !important;
}

.ancor-profile-stats span {
  font-size: 12px !important;
}

/* Projects */
.project-grid {
  gap: 18px !important;
}

.project-card {
  border-radius: 20px !important;
}

.project-card img {
  height: 230px !important;
}

.project-body {
  padding: 20px !important;
}

.project-body h3 {
  font-size: 24px !important;
}

.project-body p {
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.project-tags span {
  min-height: 27px !important;
  font-size: 10px !important;
  padding: 0 10px !important;
}

/* Services */
.service-grid article {
  min-height: 195px !important;
  padding: 22px !important;
  border-radius: 20px !important;
}

.service-grid h3 {
  font-size: 22px !important;
  margin: 26px 0 10px !important;
}

.service-grid p {
  font-size: 14px !important;
}

/* Map */
.cards-on-map-section,
.compact-map-section,
.ancor-map-section {
  padding: 58px 0 !important;
}

.cards-map-wrap,
.compact-map-wrap,
.ancor-map-wrap {
  width: min(1340px, calc(100% - 56px)) !important;
}

.cards-map-head h2,
.compact-map-head h2 {
  font-size: clamp(32px, 3.2vw, 52px) !important;
}

.cards-map-head p,
.compact-map-head p {
  font-size: 14px !important;
}

.cards-map-stage,
.compact-map-stage {
  height: 520px !important;
  border-radius: 22px !important;
}

.map-pin-card {
  width: 245px !important;
  min-height: 100px !important;
  grid-template-columns: 74px 1fr !important;
  gap: 11px !important;
  border-radius: 17px !important;
  padding: 9px !important;
}

.map-pin-image {
  height: 70px !important;
}

.map-pin-info small {
  font-size: 9px !important;
}

.map-pin-info strong {
  font-size: 17px !important;
}

.map-pin-info em {
  font-size: 12px !important;
}

.map-contact-mini a {
  min-height: 40px !important;
  padding: 0 15px !important;
  font-size: 12px !important;
}

/* Contact */
.contact-form {
  padding: 25px !important;
  border-radius: 22px !important;
  gap: 13px !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 15px !important;
  border-radius: 13px !important;
  font-size: 14px !important;
}

.contact-form textarea {
  min-height: 115px !important;
}

.contact-form button {
  height: 48px !important;
  font-size: 14px !important;
}

/* WhatsApp */
.whatsapp-float {
  width: 50px !important;
  height: 50px !important;
}

.whatsapp-float svg {
  width: 29px !important;
  height: 29px !important;
}

@media(max-width: 1050px) {
  .hero-slider {
    min-height: 620px !important;
  }

  .ancor-big-logo {
    transform: scale(.62) !important;
  }

  .ancor-profile-logo {
    min-height: 170px !important;
  }

  .cards-map-stage,
  .compact-map-stage {
    height: 620px !important;
  }
}

@media(max-width: 640px) {
  .site-header {
    height: 64px !important;
  }

  .hero-content h1 {
    font-size: 35px !important;
  }

  .section {
    padding: 48px 0 !important;
  }

  .cards-map-stage,
  .compact-map-stage {
    height: 600px !important;
  }
}


/* ANCOR FONT OVERRIDE */
html,
body {
  font-family: 'IBM Plex Sans Arabic', 'Tajawal', 'Inter', Arial, sans-serif !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea,
a {
  font-family: inherit !important;
}

h1,
h2,
h3,
h4,
.hero-content h1,
.section h2 {
  font-family: 'Tajawal', 'IBM Plex Sans Arabic', Arial, sans-serif !important;
  font-weight: 900 !important;
}

.hero-content p,
.ancor-profile-content p,
.section p {
  font-family: 'IBM Plex Sans Arabic', 'Tajawal', Arial, sans-serif !important;
  font-weight: 600 !important;
}


/* =====================================================
   ANCOR HEADINGS SIZE TUNING
   Reduce oversized titles only
   ===================================================== */

/* Hero main title */
.hero-content h1,
#slideTitle {
  font-size: clamp(34px, 3.6vw, 54px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
}

/* Hero paragraph still readable */
.hero-content p,
#slideText {
  font-size: 14px !important;
  line-height: 1.75 !important;
  max-width: 620px !important;
}

/* General section titles */
.section h2,
.section-head h2 {
  font-size: clamp(30px, 3vw, 46px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.025em !important;
}

/* Profile / company section title */
.ancor-profile-content h2 {
  font-size: clamp(32px, 3.2vw, 50px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
}

/* Big ANCOR logo section: reduce text */
.ancor-big-logo strong {
  font-size: clamp(58px, 5.6vw, 96px) !important;
  line-height: .88 !important;
}

.ancor-big-logo small {
  font-size: clamp(18px, 1.8vw, 28px) !important;
}

/* Map section heading */
.cards-map-head h2,
.compact-map-head h2,
.ancor-map-info h2 {
  font-size: clamp(28px, 2.8vw, 42px) !important;
  line-height: 1.05 !important;
}

/* Project cards title */
.project-body h3 {
  font-size: 21px !important;
  line-height: 1.15 !important;
}

/* Services cards title */
.service-grid h3 {
  font-size: 19px !important;
  line-height: 1.2 !important;
}

/* Contact title */
.contact-section h2,
.contact-layout h2 {
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.05 !important;
}

/* Footer logo not too huge */
.ancor-footer-logo strong {
  font-size: 34px !important;
}

.ancor-footer-logo small {
  font-size: 12px !important;
}

/* Mobile extra tuning */
@media(max-width: 640px) {
  .hero-content h1,
  #slideTitle {
    font-size: 30px !important;
    line-height: 1.12 !important;
  }

  .section h2,
  .section-head h2,
  .ancor-profile-content h2,
  .cards-map-head h2,
  .compact-map-head h2,
  .contact-section h2 {
    font-size: 28px !important;
  }

  .ancor-big-logo strong {
    font-size: 58px !important;
  }
}


/* =====================================================
   ANCOR FONT SMALLER 2
   ===================================================== */

/* Header */
.interest-link,
.lang-link,
.menu-label {
  font-size: 11px !important;
}

.brand-text strong {
  font-size: 26px !important;
}

.brand-text small {
  font-size: 9px !important;
}

/* Hero */
.hero-content h1,
#slideTitle {
  font-size: clamp(30px, 3.1vw, 46px) !important;
  line-height: 1.12 !important;
}

.hero-kicker,
#slideKicker {
  font-size: 12px !important;
}

.hero-content p,
#slideText {
  font-size: 12.5px !important;
  line-height: 1.7 !important;
  max-width: 580px !important;
}

.hero-btn {
  height: 40px !important;
  font-size: 11px !important;
  padding: 0 17px !important;
  min-width: 118px !important;
}

.hero-stat strong {
  font-size: 17px !important;
}

.hero-stat span {
  font-size: 7.5px !important;
}

/* All sections */
.section h2,
.section-head h2,
.ancor-profile-content h2,
.cards-map-head h2,
.compact-map-head h2,
.ancor-map-info h2,
.contact-section h2,
.contact-layout h2 {
  font-size: clamp(26px, 2.55vw, 38px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.015em !important;
}

.section-kicker {
  font-size: 10px !important;
}

.section p,
.ancor-profile-content p,
.about-section p,
.contact-layout p {
  font-size: 12.5px !important;
  line-height: 1.75 !important;
}

/* Big profile logo */
.ancor-big-logo strong {
  font-size: clamp(48px, 5vw, 82px) !important;
}

.ancor-big-logo small {
  font-size: clamp(15px, 1.5vw, 23px) !important;
}

.ancor-big-mark {
  width: 92px !important;
  height: 112px !important;
  font-size: 78px !important;
}

/* Profile stats */
.ancor-profile-stats strong {
  font-size: clamp(17px, 1.5vw, 24px) !important;
}

.ancor-profile-stats span {
  font-size: 10px !important;
}

.ancor-profile-stats svg {
  width: 30px !important;
  height: 30px !important;
}

/* Project cards */
.project-body h3 {
  font-size: 18px !important;
}

.project-body p {
  font-size: 11.5px !important;
  line-height: 1.55 !important;
}

.project-tags span {
  font-size: 8.5px !important;
}

/* Services */
.service-grid h3 {
  font-size: 16px !important;
}

.service-grid p {
  font-size: 11.5px !important;
}

.service-grid span {
  font-size: 10px !important;
}

/* Map */
.cards-map-head p,
.compact-map-head p {
  font-size: 12px !important;
}

.map-top-actions strong {
  font-size: 11px !important;
}

.map-top-actions span {
  font-size: 9px !important;
}

.map-pin-info small {
  font-size: 8px !important;
}

.map-pin-info strong {
  font-size: 13px !important;
}

.map-pin-info em {
  font-size: 10px !important;
}

.map-contact-mini a {
  font-size: 10.5px !important;
}

/* Contact form */
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 12px !important;
}

.contact-form button {
  font-size: 12px !important;
}

/* Footer */
.ancor-global-footer,
.ancor-global-footer * {
  font-size: 12px !important;
}

.ancor-footer-logo strong {
  font-size: 29px !important;
}

.ancor-footer-logo small {
  font-size: 9px !important;
}

.ancor-footer-col h4 {
  font-size: 13px !important;
}

.ancor-footer-col a,
.ancor-footer-col span {
  font-size: 12px !important;
}

.ancor-footer-contact-row b {
  font-size: 12px !important;
}

.ancor-footer-contact-row small,
.ancor-footer-copy,
.ancor-footer-links a {
  font-size: 11px !important;
}

/* Mobile */
@media(max-width: 640px) {
  .hero-content h1,
  #slideTitle {
    font-size: 27px !important;
  }

  .section h2,
  .section-head h2,
  .ancor-profile-content h2,
  .cards-map-head h2,
  .contact-section h2 {
    font-size: 25px !important;
  }

  .hero-content p,
  #slideText,
  .section p,
  .ancor-profile-content p {
    font-size: 12px !important;
  }
}


/* ANCOR: reduce map section title only */
.cards-map-head h2,
.compact-map-head h2,
#locations h2 {
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em !important;
}

.cards-map-head {
  margin-bottom: 14px !important;
}


/* ANCOR LEAD FORM */
.ancor-lead-form {
  grid-template-columns: 1fr 1fr;
}

.ancor-lead-form textarea,
.ancor-lead-form button,
.ancor-lead-form .ancor-lead-message {
  grid-column: 1 / -1;
}

.ancor-lead-form input,
.ancor-lead-form select,
.ancor-lead-form textarea {
  background: #FCFCFC !important;
}

.ancor-lead-form button:disabled {
  opacity: .68;
  cursor: not-allowed;
}

.ancor-lead-message {
  min-height: 38px;
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 13px;
  font-weight: 800;
  display: none;
}

.ancor-lead-message.info,
.ancor-lead-message.success,
.ancor-lead-message.error {
  display: block;
}

.ancor-lead-message.info {
  background: #FCFCFC;
  color: #7b5d2c;
}

.ancor-lead-message.success {
  background: #598068;
  color: #166534;
}

.ancor-lead-message.error {
  background: #B86060;
  color: #991b1b;
}

@media(max-width: 700px) {
  .ancor-lead-form {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   ANCOR ABOUT PAGE
   ===================================================== */

.ancor-about-page {
  background: #FCFCFC;
  color: #212121;
}

.solid-header {
  background: rgba(5,5,5,.96) !important;
  border-bottom: 1px solid rgba(216,189,121,.22) !important;
  backdrop-filter: blur(14px);
}

.solid-header .menu-label,
.solid-header .interest-link,
.solid-header .lang-link,
.solid-header .circle-btn {
  color: #FCFCFC !important;
}

.solid-header .menu-label.active,
.solid-header .menu-label:hover,
.solid-header .interest-link:hover,
.solid-header .lang-link:hover {
  color: #957A56 !important;
}

.about-page-wrap {
  width: min(1240px, calc(100% - 56px));
  margin: auto;
}

.about-hero {
  position: relative;
  min-height: 560px;
  padding-top: 118px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #212121;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.82) 44%, rgba(5,5,5,.30) 100%),
    url('/assets/img/og-cover.png') center/cover no-repeat;
  opacity: .88;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(216,189,121,.22), transparent 32%),
    linear-gradient(180deg, transparent 0%, rgba(5,5,5,.72) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 64px));
  margin: auto;
  text-align: right;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #957A56;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-kicker:before {
  content: "";
  width: 36px;
  height: 1px;
  background: #957A56;
}

.about-hero h1 {
  color: #FCFCFC;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  max-width: 780px;
  margin: 0 0 18px;
  font-weight: 900;
}

.about-hero p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.9;
  max-width: 680px;
  margin: 0 0 26px;
  font-weight: 650;
}

.about-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-hero-actions a {
  height: 46px;
  padding: 0 22px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(216,189,121,.55);
  color: #212121;
  background: #957A56;
}

.about-hero-actions a + a {
  background: transparent;
  color: #FCFCFC;
}

.about-intro-section {
  padding: 72px 0;
  background: #FCFCFC;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
  direction: ltr;
}

.about-logo-panel {
  min-height: 340px;
  border: 1px solid rgba(185,151,91,.24);
  background:
    linear-gradient(135deg, rgba(185,151,91,.12), transparent),
    #FCFCFC;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.about-big-brand {
  color: #957A56;
  text-align: left;
  direction: ltr;
  transform: scale(.88);
}

.about-big-brand span {
  width: 86px;
  height: 104px;
  display: grid;
  place-items: center;
  border-left: 6px solid #957A56;
  border-bottom: 6px solid #957A56;
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.about-big-brand strong {
  display: block;
  font-size: 82px;
  line-height: .85;
  letter-spacing: .08em;
  font-weight: 900;
}

.about-big-brand small {
  display: block;
  font-size: 24px;
  letter-spacing: .35em;
  margin-top: 12px;
  font-weight: 900;
}

.about-intro-content {
  direction: rtl;
  text-align: right;
}

.about-intro-content h2,
.about-section-head h2,
.about-why-content h2,
.about-cta-box h2 {
  color: #212121;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  margin: 8px 0 18px;
  font-weight: 900;
}

.about-intro-content p,
.about-section-head p,
.about-why-content p,
.about-cta-box p {
  color: #202020;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 650;
  margin: 0 0 14px;
}

.about-values-section {
  padding: 66px 0;
  background: #FCFCFC;
}

.about-section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.about-section-head.center {
  margin: 0 auto 34px;
  text-align: center;
}

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

.about-value-grid article,
.about-service-list article,
.about-timeline article {
  background: #FCFCFC;
  border: 1px solid rgba(185,151,91,.22);
  padding: 24px;
  min-height: 210px;
}

.about-value-grid span,
.about-service-list i,
.about-timeline b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #212121;
  color: #957A56;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 24px;
}

.about-value-grid h3,
.about-service-list h3,
.about-timeline h3 {
  color: #212121;
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 900;
}

.about-value-grid p,
.about-service-list p,
.about-timeline p {
  color: #343434;
  font-size: 12.5px;
  line-height: 1.8;
  margin: 0;
  font-weight: 650;
}

.about-stats-section {
  background: #212121;
  padding: 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stats-grid article {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  border-left: 1px solid rgba(216,189,121,.18);
  text-align: center;
}

.about-stats-grid article:last-child {
  border-left: 0;
}

.about-stats-grid strong {
  color: #957A56;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 10px;
}

.about-stats-grid span {
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 800;
}

.about-services-section {
  padding: 72px 0;
  background: #FCFCFC;
}

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

.about-service-list article {
  min-height: 260px;
}

.about-why-section {
  padding: 72px 0;
  background: #FCFCFC;
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

.about-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.about-checks span {
  background: #FCFCFC;
  border: 1px solid rgba(185,151,91,.18);
  color: #212121;
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 850;
}

.about-checks span:before {
  content: "✓";
  color: #957A56;
  font-weight: 900;
  margin-left: 10px;
}

.about-dark-card {
  background: #212121;
  color: #FCFCFC;
  padding: 44px;
  min-height: 360px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
}

.about-dark-card:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(216,189,121,.18);
  top: -90px;
  left: -80px;
}

.about-dark-card small {
  color: #957A56;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 18px;
}

.about-dark-card strong {
  color: #FCFCFC;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 900;
  margin-bottom: 14px;
  max-width: 420px;
}

.about-dark-card p {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
  font-weight: 650;
}

.about-timeline-section {
  padding: 72px 0;
  background: #FCFCFC;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-cta-section {
  background: #FCFCFC;
  padding: 0 0 72px;
}

.about-cta-box {
  background:
    linear-gradient(135deg, rgba(216,189,121,.18), transparent),
    #212121;
  color: #FCFCFC;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.about-cta-box h2 {
  color: #FCFCFC;
}

.about-cta-box p {
  color: rgba(255,255,255,.68);
  max-width: 680px;
}

.about-cta-box a {
  flex: 0 0 auto;
  height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #957A56;
  color: #212121;
  font-size: 12px;
  font-weight: 900;
}

@media(max-width: 1050px) {
  .about-intro-grid,
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-value-grid,
  .about-service-list,
  .about-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta-box {
    display: grid;
  }
}

@media(max-width: 680px) {
  .about-page-wrap,
  .about-hero-inner {
    width: calc(100% - 32px);
  }

  .about-hero {
    min-height: 520px;
    padding-top: 96px;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .about-intro-section,
  .about-values-section,
  .about-services-section,
  .about-why-section,
  .about-timeline-section {
    padding: 48px 0;
  }

  .about-logo-panel {
    min-height: 250px;
  }

  .about-big-brand {
    transform: scale(.65);
  }

  .about-value-grid,
  .about-service-list,
  .about-timeline,
  .about-checks {
    grid-template-columns: 1fr;
  }

  .about-stats-grid article {
    min-height: 112px;
  }

  .about-dark-card,
  .about-cta-box {
    padding: 28px;
  }
}

