/* ============================================
   MAIN CSS - All Site Styles
   ============================================ */
*{box-sizing:border-box}
html,body{height:100%; margin:0; padding:0}
body{
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#fff;
  color:#111;
}

/* Headings use Marble Bold */
h1, h2, h3, h4, h5, h6,
.contact-title, .areas__title, .luxServices__title, .offer__title, .why__title, .fp__title,
.ys-story__title, .partners__title, .ys-news-title, .ys-col-title, .ys-name,
.hero__title, .hero__subtitle, .nav__link, .nav__logo,
.offer__head, .whyCard__name, .fp__cardTitle, .luxCard__label,
.areaCard__label, .luxServices__kicker, .offer__kicker, .why__kicker, .fp__kicker,
.info-label, .topbar, .btn-submit, .search-btn, .hero__cta, .hero__pill {
  font-family: 'Marble', 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
}

/* Regular text uses Montserrat Regular */
body, p, span, div, a, input, textarea, select, button,
.inp, .ta, .ys-ico, .ys-copy, .info-value, .contact-sub,
.offer__desc, .whyCard__desc, .fp__cardDesc, .ys-story__text,
.ys-foot-desc, .ys-txt, .ys-link {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
}

:root{
  --orange:#ff3b14;
  --black:#0b0b0b;
  --muted:#bdbdbd;
  --white:#ffffff;
  --heroText:#f2f2f2;
  --container: 1280px;
  --radius-999: 999px;
  --radius-18: 18px;
  --radius-22: 22px;
  --radius-26: 26px;
  --shadow-card: 0 18px 40px rgba(0,0,0,.25);
  --shadow-soft: 0 12px 30px rgba(0,0,0,.18);
}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

/* ===== TOP BAR ===== */
.topbar{
  background:var(--orange);
  color:#fff;
  height:52px;
  display:flex;
  align-items:center;
  font-size:14px;
  letter-spacing:.2px;
}
.topbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.topbar .left{
  font-weight:400;
  opacity:.95;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:65%;
}
.topbar .right{
  display:flex;
  align-items:center;
  gap:42px;
  font-weight:400;
  white-space:nowrap;
}
.topbar .right a{
  color:#fff;
  text-decoration:none;
}

/* ===== NAVBAR ===== */
.nav{
  background:var(--black);
  color:#fff;
  height:84px;
  display:flex;
  align-items:center;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position:sticky;
  top:0;
  z-index:50;
}
.nav .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  width:100%;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:24px;
  letter-spacing:.2px;
  white-space:nowrap;
  color:#fff;
  text-decoration:none;
}
.brand-logo{
  height: 32px;
  width: auto;
  display: block;
}
.brand .mark{
  width:28px;height:28px;
  display:inline-grid;
  place-items:center;
}
.brand svg{display:block}
.brand span{
  color:#fff;
}
.navlinks{
  display:flex;
  align-items:center;
  gap:42px;
  font-size:15px;
  font-weight:400;
  color:#e9e9e9;
}
.navlinks a{
  color:#e9e9e9;
  text-decoration:none;
  opacity:.95;
  transition:.15s ease;
}
.navlinks a:hover{opacity:1; color:#fff}
.lang{
  color:#e9e9e9;
  font-weight:400;
  font-size:15px;
  opacity:.95;
  white-space:nowrap;
  position:relative;
}
.lang a{
  color:#e9e9e9;
  text-decoration:none;
}
.lang a:hover{color:#fff}

/* Language Selector Dropdown */
.lang-selector{
  position:relative;
  display:inline-block;
}
.lang-btn{
  background:transparent;
  border:none;
  color:#e9e9e9;
  font-size:15px;
  font-weight:400;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
  padding:4px 8px;
  border-radius:6px;
  transition:all 0.2s;
  font-family:inherit;
  opacity:0.8;
}
.lang-btn:hover{
  color:#fff;
  background:rgba(255,255,255,.05);
  opacity:1;
}
.lang-btn:hover i,
.lang-btn:hover span{
  opacity:1;
}
.lang-btn i{
  font-size:14px;
  opacity:0.8;
}
.lang-btn span{
  opacity:0.8;
}
.lang-btn .fa-chevron-down{
  font-size:10px;
  transition:transform 0.2s;
}
.lang-selector:hover .lang-btn .fa-chevron-down,
.lang-dropdown.show ~ .lang-btn .fa-chevron-down{
  transform:rotate(180deg);
}
.lang-dropdown{
  display:none;
  position:absolute;
  top:100%;
  right:0;
  margin-top:8px;
  background:var(--black);
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  min-width:140px;
  box-shadow:0 8px 24px rgba(0,0,0,.3);
  z-index:100;
  overflow:hidden;
}
.lang-dropdown.show{
  display:block;
}
.lang-option{
  display:block;
  padding:12px 18px;
  color:#e9e9e9;
  text-decoration:none;
  font-size:14px;
  transition:all 0.15s;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.lang-option:last-child{
  border-bottom:none;
}
.lang-option:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}
[dir="rtl"] .lang-dropdown{
  right:auto;
  left:0;
}

/* ===== HERO ===== */
.hero{
  position:relative;
  min-height: 650px;
  display:flex;
  align-items:flex-start;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,.10) 100%),
    var(--hero-bg, url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=1740&auto=format&fit=crop")) center/cover no-repeat;
}
.hero::before{
    content:"";
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 22% 42%, rgba(255,255,255,.08), transparent 55%);
    pointer-events:none;
  z-index:1;
}
.hero .container{
  position:relative;
  padding-top: 72px;
  padding-bottom: 70px;
  z-index:2;
}

/* Tabs */
.tabs{
  display:flex;
  gap:22px;
  margin-left: 42px;
}
.pill{
  height:46px;
  padding: 0 26px;
  border-radius: var(--radius-999);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:400;
  font-size:14px;
  border: 2px solid rgba(255,255,255,.45);
  color:#fff;
  background: rgba(255,255,255,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor:pointer;
  transition:all 0.2s;
  text-decoration:none;
}
.pill.active{
  background: rgba(255,255,255,.92);
  color:#111;
  border-color: rgba(255,255,255,.92);
}

/* Headline */
.hero h1{
  margin: 26px 0 10px;
  font-size: 68px;
  line-height: 0.95;
  letter-spacing: -1.5px;
  font-weight: 700;
  color: var(--heroText);
  margin-left: 42px;
  max-width: 760px;
  font-family: 'Marble', 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.hero .subtitle{
  margin: 18px 0 0;
  margin-left: 42px;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,.86);
  max-width: 760px;
}

/* Search card */
.search-card{
  margin-top: 38px;
  margin-left: 42px;
  width: min(980px, 100%);
  background: #f4f6f6;
  border-radius: var(--radius-26);
  box-shadow: var(--shadow-card);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.search-inner{
  padding: 22px 22px 0;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 260px;
  gap: 22px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
}
.field label{
  display:block;
  font-size:15px;
  font-weight:400;
  color:#1a1a1a;
  margin-bottom: 10px;
}
.input{
  height:52px;
  width:100%;
  border-radius: var(--radius-999);
  border: 1px solid rgba(0,0,0,.08);
  background:#eef1f1;
  padding: 0 18px;
  outline:none;
  font-size:14px;
  color:#222;
  font-weight:400;
}
.input::placeholder{
  color:#b0b0b0;
  font-weight:400;
}
.search-btn{
  height:52px;
  border:none;
  width:100%;
  border-radius: var(--radius-999);
  background: var(--orange);
  color:#fff;
  font-weight:400;
  font-size:16px;
  letter-spacing:.2px;
  cursor:pointer;
  box-shadow: none;
}
.search-btn:hover{filter:brightness(.98)}

.popular{
  padding: 14px 6px 18px;
  font-size: 14px;
  font-weight: 400;
  color:#1a1a1a;
  text-align:center;
}

.divider{
  height:1px;
  background: rgba(0,0,0,.10);
  margin: 0 22px;
}

.owner-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 16px 22px 18px;
}
.owner-title{
  font-size: 15px;
  font-weight: 800;
  color:#1a1a1a;
  margin:0;
  display:block;
}
.owner-sub{
  margin:4px 0 0;
  font-size: 13px;
  font-weight: 400;
  color: #4a4a4a;
}
.learn-more{
  height:46px;
  padding: 0 26px;
  border-radius: var(--radius-999);
  border: 1px solid rgba(0,0,0,.12);
  background:#eef1f1;
  font-weight:400;
  cursor:pointer;
  min-width: 210px;
  color:#1a1a1a;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Mobile menu */
#mobile-menu-btn{
  display:none;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  padding:8px;
}
#mobile-menu {
  display:none;
  border-top: 1px solid rgba(255,255,255,.1);
  background: var(--black);
  color: #fff;
}
#mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
#mobile-menu a:hover {
  background: rgba(255,255,255,.1);
}

/* ====== OUR STORY SECTION ====== */
.ys-story{
  background: #0b0b0b;
  padding: 110px 0 120px;
}
.ys-story__container{
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding-left: 90px;
}
.ys-story__kicker{
  color: #ff3b14;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .3px;
  margin-bottom: 22px;
}
.ys-story__title{
  margin: 0 0 22px;
  color: #f3f3f3;
  font-weight: 700;
  font-size: 74px;
  line-height: 1.02;
  letter-spacing: -1.2px;
}
.ys-story__text{
  margin: 0 0 26px;
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
}
.ys-story__link{
  display: inline-block;
  color: rgba(255,255,255,.90);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  opacity: .95;
}
.ys-story__link:hover{ opacity: 1; }

/* ===== Featured Properties Section ===== */
.fp{
  background: #0b0b0b;
  padding: 78px 0 90px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.fp__container{
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}
.fp__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 26px;
}
.fp__title{
  margin:0;
  color:#f2f2f2;
  font-weight: 700;
  font-size: 72px;
  letter-spacing: -1.2px;
  line-height: 1;
}
.fp__viewall{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.6);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 400;
  font-size: 14px;
  background: rgba(255,255,255,.02);
}
.fp__viewall:hover{ background: rgba(255,255,255,.06); }
.fp__layout{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items:start;
}
/* Left info card */
.fp__side{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 26px 24px;
  height: 520px;
  position: sticky;
  top: 22px;
}
.fp__sideIcon{
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top: 6px;
  overflow: hidden;
  padding: 6px;
  box-sizing: border-box;
  position: relative;
}
.fp__sideIcon img{
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  max-width: 54px;
  max-height: 54px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.fp__sideTitle{
  margin-top: 18px;
  color: var(--orange);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.25;
}
.fp__sideText{
  margin-top: 16px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
}
/* Grid */
.fp__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
/* Property Card */
.prop{
  border-radius: 24px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.06);
  overflow:hidden;
  padding: 18px;
}
.prop__media{
    position: relative;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(0,0,0,.22);
  aspect-ratio: 1.2 / 1;
}
.prop__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.prop__fav{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.prop__fav:hover{ background: rgba(0,0,0,.5); }
.prop__body{
  padding-top: 14px;
}
.prop__name{
  margin:0 0 10px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  display:-webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:hidden;
  min-height: calc(1.2em * 3);
}
.prop__meta{
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 18px;
}
.prop__price{
  color: #ff3b14;
  font-weight: 900;
  font-size: 18px;
}

/* ===== Section 4: Why / Holiday Homes in Dubai ===== */
.why{
  background: #0b0b0b;
  padding: 86px 0 96px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.why__container{
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}
.why__kicker{
  color:#ff3b14;
  font-weight: 900;
  font-size: 16px;
  letter-spacing:.2px;
  margin-bottom: 18px;
}
.why__title{
  margin:0 0 46px;
  color:#f2f2f2;
  font-weight: 700;
  font-size: 74px;
  letter-spacing: -1.2px;
  line-height: 1.02;
}
/* Grid 3x2 */
.why__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
/* Card */
.whyCard{
  background: #f4f4f4;
  border-radius: 22px;
  padding: 22px 26px;
  display:flex;
  align-items:center;
  gap: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
/* Circle image with outer ring */
.whyCard__avatar{
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  position: relative;
}
.whyCard__ring{
  position: absolute;
  width: 130px;
  height: 130px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
  display: block;
}
.whyCard__image{
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border-radius: 999px;
  object-fit: cover;
  border: none;
  position: relative;
  z-index: 2;
  display: block;
}
/* Text */
.whyCard__body{
  min-width: 0;
}
.whyCard__head{
  margin:0 0 8px;
  color:#2f5a63;
  font-weight: 900;
  font-size: 20px;
}
.whyCard__text{
  margin:0;
  color:#1f2a2d;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  opacity: .95;
}

/* ===== Section 5: Teal Stats Bar ===== */
.ys-stats{
  background: #3f5f67;
  padding: 26px 0 22px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.ys-stats__inner{
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}
/* rows */
.ys-stats__row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items:center;
}
.ys-stats__item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.ys-stats__icon{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  margin-top: 1px;
  opacity: .95;
}
.ys-stats__icon svg{
  width: 26px;
  height: 26px;
  fill: none;
  stroke: rgba(255,255,255,.92);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ys-stats__txt{
  color: rgba(255,255,255,.95);
}
.ys-stats__h{
  font-weight: 800;
  font-size: 18px;
  line-height: 1.15;
}
.ys-stats__p{
  margin-top: 4px;
  font-weight: 400;
  font-size: 13px;
  opacity: .85;
}
/* divider line */
.ys-stats__divider{
  height: 1px;
  background: rgba(255,255,255,.45);
  margin: 18px 0 16px;
}
/* bottom metrics */
.ys-stats__metric{
  display:flex;
  align-items:center;
  gap: 12px;
  color: rgba(255,255,255,.95);
}
.ys-stats__metricIcon{
  width: 32px;
  height: 32px;
  display:grid;
  place-items:center;
  opacity: .95;
}
.ys-stats__metricIcon svg{
  width: 26px;
  height: 26px;
  fill: rgba(255,255,255,.92);
  stroke: rgba(255,255,255,.92);
  stroke-width: 0;
}
/* make some icons outline */
.ys-stats__metric:nth-child(2) .ys-stats__metricIcon svg,
.ys-stats__metric:nth-child(3) .ys-stats__metricIcon svg{
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ys-stats__num{
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .2px;
}
.ys-stats__label{
  margin-top: 2px;
  font-weight: 700;
  font-size: 13px;
  opacity: .9;
}

/* ===== Section 6: What We Offer ===== */
.offer{
  background: #0b0b0b;
  padding: 84px 0 90px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.offer__container{
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items:center;
}
.offer__kicker{
  color:#ff3b14;
  font-weight: 900;
  font-size: 16px;
  letter-spacing:.2px;
  margin-bottom: 14px;
}
.offer__title{
  margin:0 0 30px;
  color:#f2f2f2;
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -1.1px;
  line-height: 1.02;
}
.offer__list{
  margin-top: 6px;
  display:grid;
  gap: 22px;
  max-width: 520px;
}
.offer__head{
  color: rgba(255,255,255,.92);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 4px;
}
.offer__desc{
  color: rgba(255,255,255,.72);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
}
/* Right image */
.offer__imgWrap{
  width: 100%;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,.35);
}
.offer__imgWrap img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display:block;
}

/* ===== Section: Luxury Services ===== */
.luxServices{
  background: #f2f3f4;
  padding: 86px 0 92px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.luxServices__container{
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}
.luxServices__kicker{
  color:#ff3b14;
  font-weight: 900;
  font-size: 16px;
  letter-spacing:.2px;
  margin: 0 0 16px;
}
.luxServices__title{
  margin: 0 0 44px;
  color:#0d0f10;
  font-weight: 700;
  font-size: 78px;
  letter-spacing: -1.3px;
  line-height: 1.02;
}
/* Grid 5 columns */
.luxServices__grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}
/* Card */
.luxCard{
  background: #0b0b0b;
  border-radius: 26px;
  height: 168px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.luxCard__icon svg{
  width: 34px;
  height: 34px;
  fill: none;
  stroke: rgba(255,255,255,.92);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.luxCard__label{
  color: rgba(255,255,255,.95);
  font-weight: 800;
  font-size: 18px;
  text-align:center;
  line-height: 1.05;
}

/* ===== Section: Areas of Our Homes ===== */
.areas{
  background:#eef0f1;
  padding: 78px 0 86px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.areas__container{
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}
.areas__title{
  margin: 0 0 36px;
  color:#0d0f10;
  font-weight: 700;
  font-size: 78px;
  letter-spacing: -1.3px;
  line-height: 1.02;
}
/* grid 4 x 2 */
.areas__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
/* card */
.areaCard{
  position: relative;
  height: 210px;
  border-radius: 26px;
  overflow: hidden;
  display:block;
  text-decoration:none;
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
  transform: translateZ(0);
}
.areaCard img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.02) contrast(1.02);
  transition: transform .25s ease;
}
/* Light black overlay over entire image */
.areaCard::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.15);
  pointer-events:none;
  z-index: 1;
}
/* bottom gradient overlay */
.areaCard::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 80%, rgba(0,0,0,.68) 100%);
  pointer-events:none;
  z-index: 2;
}
.areaCard__label{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color:#fff;
  font-weight: 800;
  font-size: 18px;
  text-align:center;
  text-shadow: 0 10px 25px rgba(0,0,0,.35);
  z-index: 3;
}
.areaCard--wideText .areaCard__label{
  font-size: 16px;
  line-height: 1.15;
}
/* hover subtle */
.areaCard:hover img{
  transform: scale(1.02);
}

/* ===== Section: Allies & Developer Partners ===== */
.partners{
  background: #0b0b0b;
  padding: 92px 0 96px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#fff;
}
.partners__container{
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}
.partners__title{
  margin: 0;
  font-weight: 700;
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: -1px;
  color:#f2f2f2;
}
.partners__title--spaced{
  margin-top: 68px;
}
/* Allies rail with top/bottom lines */
.partners__rail{
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,.38);
  border-bottom: 1px solid rgba(255,255,255,.38);
  padding: 24px 10px;
}
.partners__logos{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 34px;
}
.partners__logo-link{
  display: inline-block;
  text-decoration: none;
}
.partners__logo{
  height: 50px;
  width: auto;
  opacity: .95;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.28));
  transition: opacity 0.2s ease;
}
/* Tripadvisor logo - larger */
.partners__logo--tripadvisor,
.partners__logo-link--tripadvisor .partners__logo,
a[href*="tripadvisor"] .partners__logo,
.partners__logo-link[href*="tripadvisor"] .partners__logo{
  height: 140px !important;
}
.partners__logo-link:hover .partners__logo{
  opacity: 1;
}
/* middle dots ... */
.partners__dots{
  text-align:center;
  margin: 20px 0 18px;
  color: rgba(255,255,255,.6);
  font-size: 28px;
  letter-spacing: 6px;
  user-select:none;
}
/* Developer logos slider */
.partners__devs-wrapper{
  margin-top: 34px;
  position: relative;
  padding: 20px 0 50px;
  width: 100%;
}

.partners__devs-swiper{
  overflow: hidden !important;
  width: 100% !important;
  padding: 10px 0;
  position: relative;
}

.partners__devs-swiper .swiper-wrapper{
  display: flex;
  align-items: center;
}

.partners__devSlide{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: auto;
}
.partners__devSlide a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}

.partners__devLogo{
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: .96;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.32));
  transition: all 0.3s ease;
}

.partners__devSlide:hover .partners__devLogo{
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.4));
}

/* Swiper Pagination */
.partners__devs-pagination{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto !important;
}

.partners__devs-pagination .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.partners__devs-pagination .swiper-pagination-bullet-active{
  background: rgba(255, 255, 255, 0.9);
  width: 24px;
  border-radius: 4px;
}

/* ===== Get In Touch (Figma-like) ===== */
:root{
  --accent:#ff4b17;
  --bg:#0b0b0b;
  --card:#edf0ef;
  --text:#111;
  --muted:#6c6f73;
  --field:#ffffff;
  --fieldBorder: rgba(0,0,0,.08);
}
.contact-card-wrap{
  background: var(--bg);
  padding: 70px 0 90px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.contact-card{
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
  background: var(--card);
  border-radius: 46px;
  padding: 72px 84px;
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 70px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.contact-title{
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: -1.2px;
  color: #131416;
}
.contact-title span{
  color: var(--accent);
  font-weight: 600;
}
.contact-title b{
  color: var(--accent);
  font-weight: 600;
}
.contact-sub{
  margin: 0 0 46px;
  color: #6c6f73;
  font-size: 16px;
}
.contact-info{
  display: grid;
  gap: 20px;
  max-width: 480px;
}
.info-label{
  font-size: 16px;
  color: #111;
  margin-bottom: 6px;
}
.info-value{
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
}
.contact-right{
  display: grid;
  gap: 18px;
  align-content: start;
  padding-top: 6px;
}
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.inp{
  height: 56px;
  border-radius: 999px;
  border: 1px solid var(--fieldBorder);
  background: var(--field);
  padding: 0 22px;
  font-size: 15px;
  color: #111;
  outline: none;
  box-shadow: 0 14px 24px rgba(0,0,0,.08);
}
.inp::placeholder{
  color: rgba(0,0,0,.35);
  font-weight: 400;
}
.ta{
  border-radius: 28px;
  height: 138px;
  padding: 18px 22px;
  resize: none;
}
.btn-submit{
  justify-self: start;
  margin-top: 10px;
  height: 64px;
  min-width: 240px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.1s ease;
}
.btn-submit:active{ transform: translateY(1px); }
.btn-submit:hover{ opacity: 0.95; }

/* Responsive */
@media (max-width: 1100px){
  .form-row{grid-template-columns: 1fr 1fr; }
  .search-btn{grid-column: 1 / -1;}
}
@media (max-width: 1200px){
  .fp__title{ font-size: 56px; }
  .fp__layout{ grid-template-columns: 280px 1fr; }
  .fp__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fp__side{ height: auto; position: relative; top:auto; }
  .why__title{ font-size: 56px; }
  .why__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer__title{ font-size: 48px; }
  .offer__container{ grid-template-columns: 1fr; }
  .offer__imgWrap img{ height: 340px; }
  .luxServices__title{ font-size: 58px; }
  .luxServices__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .areas__title{ font-size: 58px; }
  .areas__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partners__title{ font-size: 44px; }
  .partners__logos, .partners__devs{
    flex-wrap: wrap;
    justify-content: center;
  }
  .partners__rail{ padding: 22px 0; }
  .contact-card{
    grid-template-columns: 1fr;
    padding: 54px 34px;
    gap: 34px;
  }
  .contact-title{ font-size: 56px; }
  .btn-submit{ width: 100%; justify-self: stretch; }
}
@media (max-width: 900px){
  .ys-story{ padding: 80px 0 90px; }
  .ys-story__container{ padding-left: 0; }
  .ys-story__title{ font-size: 48px; }
  .ys-story__text{ max-width: 100%; }
  .fp__layout{ grid-template-columns: 1fr; }
  .fp__grid{ grid-template-columns: 1fr; }
  .fp__title{ font-size: 42px; }
  .areas__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .areaCard{ height: 200px; }
}
@media (max-width: 900px){
  .ys-stats__row{ grid-template-columns: 1fr; }
  .ys-stats__divider{ margin: 14px 0; }
}
@media (max-width: 820px){
  .luxServices__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .why{ padding: 70px 0 80px; }
  .why__title{ font-size: 42px; }
  .why__grid{ grid-template-columns: 1fr; }
  .whyCard{ padding: 18px 18px; }
  .whyCard__avatar{ width: 104px; height: 104px; }
  .offer{ padding: 70px 0 76px; }
  .offer__title{ font-size: 36px; }
  .offer__imgWrap img{ height: 260px; }
  .offer__list{ max-width: 100%; }
}
@media (max-width: 520px){
  .luxServices{ padding: 70px 0 76px; }
  .luxServices__title{ font-size: 44px; }
  .luxCard{ height: 150px; border-radius: 22px; }
  .areas{ padding: 66px 0 74px; }
  .areas__title{ font-size: 44px; }
  .areas__grid{ grid-template-columns: 1fr; }
  .areaCard{ height: 220px; border-radius: 22px; }
  .partners{ padding: 74px 0 78px; }
  .partners__title{ font-size: 34px; }
  .partners__logo{ height: 28px; }
  .partners__devLogo{ height: 32px; }
  .partners__devs-wrapper{
    padding: 15px 0 40px;
  }
  .contact-card{ width: calc(100% - 24px); padding: 38px 18px; border-radius: 32px; }
  .grid-2{ grid-template-columns: 1fr; }
  .contact-title{ font-size: 44px; }
}

/* ===== Footer (matches screenshot) ===== */
:root{
  --ys-bg:#0b0b0b;
  --ys-accent:#ff4b17;
  --ys-text:#e9ecef;
  --ys-muted:rgba(255,255,255,.65);
  --ys-line:rgba(255,255,255,.08);
}
.ys-footer{
  position: relative;
  background: var(--ys-bg);
  padding: 70px 0 40px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ys-text);
}
.ys-footer__inner{
  width: min(1360px, calc(100% - 90px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .8fr .85fr .85fr;
  gap: 70px;
  align-items: start;
}
/* Left */
.ys-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 14px;
}
.ys-logo-img{
  height: 40px;
  width: auto;
  display: block;
}
.ys-name{
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.5px;
}
.ys-foot-desc{
  margin: 0 0 22px;
  color: var(--ys-muted);
  font-size: 14px;
  line-height: 1.55;
}
.ys-social{
  display:flex;
  gap: 18px;
  margin: 6px 0 40px;
  align-items:center;
}
.ys-ico{
  color: var(--ys-accent);
  text-decoration:none;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ys-ico i{
  font-size: 18px;
  line-height: 1;
}
.ys-news-title{
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -.6px;
  line-height: 1.12;
  margin: 0 0 18px;
  color: #dfe3e6;
}
.ys-news-input{
  width: 360px;
  max-width: 100%;
  display:flex;
  align-items:center;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 12px;
  gap: 12px;
}
.ys-news-input input{
  flex:1;
  background: transparent;
  border: 0;
  outline: none;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  padding: 6px 0;
}
.ys-news-input input::placeholder{
  color: rgba(255,255,255,.35);
}
.ys-news-input button{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.16);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: background 0.3s ease;
}
.ys-news-input button:hover{
  background: rgba(255,255,255,.25);
}
.ys-news-input button:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}
.ys-news-form{
  width: 100%;
}
.ys-news-message{
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.ys-news-message.success{
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}
.ys-news-message.error{
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}
/* Columns */
.ys-col-title{
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.92);
}
.ys-col-logo img{
  height: 60px;
  width: auto;
  display: block;
}
.ys-link{
  display:block;
  color: rgba(255,255,255,.75);
  text-decoration:none;
  font-size: 14px;
  margin: 14px 0;
}
.ys-txt{
  color: rgba(255,255,255,.75);
  font-size: 14px;
  margin: 14px 0;
  line-height: 1.55;
}
.ys-foot-col--right .ys-social{
  margin-top: 28px;
}
.ys-footer__bottom{
  width: min(1360px, calc(100% - 90px));
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--ys-line);
  display:flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.ys-copy{
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
  margin-left: auto;
}
/* Back-to-top bubble */
.ys-top{
  position: absolute;
  right: 38px;
  top: 98px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  display:grid;
  place-items:center;
  cursor:pointer;
}
/* Responsive */
@media (max-width: 1150px){
  .ys-footer__inner{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .ys-footer__bottom{
    justify-content: flex-start;
    align-items: center;
    gap: 10px 18px;
  }
  .ys-copy{
    text-align:left;
    margin-left: 0;
  }
  .ys-top{ right: 18px; top: 18px; }
}
@media (max-width: 560px){
  .ys-footer__inner{
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }
  .ys-footer__bottom{
    width: calc(100% - 28px);
    justify-content: flex-start;
    align-items: flex-start;
  }
  .ys-news-title{ font-size: 28px; }
}
@media (max-width: 720px){
  .topbar .left{max-width:100%}
  .topbar .right{display:none}
  .navlinks{display:none}
  #mobile-menu-btn{display:block}
  .hero{min-height:720px}
  .tabs,.hero h1,.hero .subtitle,.search-card{margin-left:0}
  .hero .container{padding-top:40px}
  .hero h1{font-size:44px}
  .hero .subtitle{font-size:18px}
  .search-card{width:100%}
  .owner-row{flex-direction:column; align-items:flex-start}
  .learn-more{width:100%}
}

