﻿@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&display=swap');

/* â”€â”€ Brand palette â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Gold  #FADD6D  â†’ accent / highlight / price / active states
   Brown #B97A57  â†’ actions / icons / warm secondary
   Teal  #0F4E59  â†’ structure / headings / dark surfaces
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root{
  --gold: #FADD6D;
  --gold-dark: #E8C84A;
  --gold-soft: rgba(250, 221, 109, 0.22);
  --gold-glow: rgba(250, 221, 109, 0.45);
  --gold-divider-fade: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 36%, rgba(250, 221, 109, 0.42) 62%, transparent 100%);
  --gold-divider-soft: linear-gradient(90deg, rgba(250, 221, 109, 0.92) 0%, rgba(232, 200, 74, 0.48) 42%, rgba(250, 221, 109, 0.1) 72%, transparent 100%);
  --gold-merge-curve: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 78' fill='none'%3E%3Cpath d='M2 67 Q2 2 67 2' stroke='url(%23g)' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='2' cy='67' r='3' fill='%23FADD6D'/%3E%3Cdefs%3E%3ClinearGradient id='g' x1='2' y1='39' x2='150' y2='39' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FADD6D'/%3E%3Cstop offset='0.45' stop-color='%23E8C84A'/%3E%3Cstop offset='1' stop-color='%23FADD6D' stop-opacity='0.2'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  --gold-merge-curve-sm: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 54' fill='none'%3E%3Cpath d='M2 47 Q2 2 47 2' stroke='url(%23g)' stroke-width='2.5' stroke-linecap='round'/%3E%3Ccircle cx='2' cy='47' r='2.5' fill='%23FADD6D'/%3E%3Cdefs%3E%3ClinearGradient id='g' x1='2' y1='27' x2='100' y2='27' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FADD6D'/%3E%3Cstop offset='0.45' stop-color='%23E8C84A'/%3E%3Cstop offset='1' stop-color='%23FADD6D' stop-opacity='0.2'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");

  --brown: #B97A57;
  --brown-dark: #9E6445;
  --brown-soft: rgba(185, 122, 87, 0.14);

  --teal: #0F4E59;
  --teal-dark: #0A3A42;
  --teal-mid: #1A6875;
  --teal-soft: rgba(15, 78, 89, 0.08);
  --teal-line: rgba(15, 78, 89, 0.12);

  --cream: #FDF9F2;
  --white: #FFFFFF;
  --on-dark: rgba(255, 255, 255, 0.92);
  --on-dark-muted: rgba(255, 255, 255, 0.68);

  --font: 'El Messiri', 'Segoe UI', Tahoma, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius-shell: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-teal: 0 28px 70px rgba(15, 78, 89, 0.2);
  --shadow-card: 0 16px 40px rgba(15, 78, 89, 0.12);

  --search-brown: #A86A3A;
  --search-brown-hover: #E08A3E;
  --search-divider: #F2F2F2;
  --search-radius: 12px;
}

*,
*::before,
*::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  overflow-x: hidden;
}

body.biban-body{
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--teal);
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, var(--gold-soft), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 10%, var(--brown-soft), transparent 55%),
    linear-gradient(175deg, var(--cream) 0%, #F5EDE0 100%);
  background-attachment: fixed;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button, input, select, textarea{ font-family: inherit; }

.shell{
  position: relative;
  width: min(1280px, calc(100% - 28px));
  margin: 18px auto 40px;
  border-radius: var(--radius-shell);
  overflow: visible;
  box-shadow: var(--shadow-teal);
}

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-panel{
  position: relative;
  min-height: min(82vh, 760px);
  border-radius: var(--radius-shell) var(--radius-shell) 0 0;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  z-index: 1;
  padding-bottom: 56px;
}

.hero-panel::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 78, 89, 0.55) 100%);
  pointer-events: none;
}

.hero-panel__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-panel__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-panel__shade{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(15, 78, 89, 0.82) 0%,
      rgba(15, 78, 89, 0.45) 42%,
      rgba(15, 78, 89, 0.88) 100%
    ),
    linear-gradient(
      135deg,
      rgba(185, 122, 87, 0.18) 0%,
      transparent 50%
    );
}

/* â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 42px);
  pointer-events: none;
}

.site-header > *{
  pointer-events: auto;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand__logo{
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(15, 78, 89, 0.25));
  transition: transform 0.25s var(--ease);
}

.brand:hover .brand__logo{
  transform: scale(1.03);
}

.brand__text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1.1;
}

.brand__name{
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.brand__tagline{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-header .brand:hover .brand__name{
  color: var(--gold);
}

.brand__logo--auth{
  height: 72px;
  margin: 0;
  filter: drop-shadow(0 4px 14px rgba(15, 78, 89, 0.18));
}

.brand--auth-page{
  justify-content: center;
  width: 100%;
  margin-bottom: 8px;
}

.brand--auth-page .brand__name{
  color: var(--teal);
  font-size: 26px;
}

.brand--auth-page .brand__tagline{
  color: var(--brown);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.brand--auth-page:hover .brand__name{
  color: var(--brown);
}

.auth-card .brand{
  justify-content: center;
  width: 100%;
  margin-bottom: 4px;
}

.nav{
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a{
  color: var(--on-dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a.is-active{ color: var(--gold); }

.nav a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after{ width: 100%; }

.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--on-dark);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.25s ease;
}

.login-link:hover{ color: var(--gold); }

.login-link i{ color: var(--gold); }

.login-link--btn{
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover{ transform: translateY(-2px); }

.btn--ghost{
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(250, 221, 109, 0.55);
}

.btn--ghost:hover{
  background: rgba(250, 221, 109, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.btn--brown{
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(185, 122, 87, 0.35);
}

.btn--brown:hover{
  background: var(--brown-dark);
  box-shadow: 0 12px 28px rgba(185, 122, 87, 0.4);
}

.btn--teal{
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(15, 78, 89, 0.3);
}

.btn--teal:hover{
  background: var(--teal-dark);
}

.btn--gold{
  background: var(--gold);
  color: var(--teal);
  box-shadow: 0 8px 24px rgba(250, 221, 109, 0.4);
}

.btn--gold:hover{
  background: var(--gold-dark);
}

.menu-toggle{
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(250, 221, 109, 0.4);
  background: rgba(15, 78, 89, 0.35);
  color: var(--gold);
  cursor: pointer;
}

/* â”€â”€ Hero content â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-content{
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 72px;
  text-align: center;
}

/* â”€â”€ Ø¯Ù…Ø¬ Ù‡ÙŠØ±Ùˆ + Ø¨Ø­Ø« + properties â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.merge-zone{
  position: relative;
  overflow: visible;
}

.search-bridge{
  position: relative;
  z-index: 12;
  width: min(1180px, calc(100% - 40px));
  margin: -108px auto -54px;
  pointer-events: none;
}

.search-bridge *{
  pointer-events: auto;
}

.search-card{
  position: static;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-tabs{
  display: inline-flex;
  gap: 6px;
  margin: 0 0 12px;
  padding: 4px;
  background: rgba(15, 78, 89, 0.4);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}

.search-tab{
  min-height: 34px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--on-dark-muted);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.search-tab.is-active{
  background: var(--gold);
  color: var(--teal);
}

.search-tab:not(.is-active):hover{
  color: var(--gold);
}

/* Search bar */
.search-bar{
  display: grid;
  grid-template-columns: minmax(130px, 0.85fr) minmax(150px, 1fr) minmax(140px, 1fr) minmax(110px, 180px) 110px;
  align-items: stretch;
  width: 100%;
  height: 56px;
  padding: 0;
  gap: 0;
  background: var(--white);
  border-radius: var(--search-radius);
  border: 1px solid rgba(15, 78, 89, 0.08);
  box-shadow: 0 8px 28px rgba(15, 78, 89, 0.12);
  overflow: hidden;
}

.search-cell{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  height: 56px;
  padding: 0 16px;
  border-right: 1px solid var(--search-divider);
  color: var(--teal);
  transition: box-shadow 0.2s ease;
}

.search-cell:focus-within{
  box-shadow: inset 0 0 0 2px var(--teal);
  z-index: 1;
}

.search-cell i{
  flex-shrink: 0;
  width: 18px;
  color: var(--search-brown);
  font-size: 15px;
  text-align: center;
}

.search-cell input,
.search-cell select{
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--teal);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
}

.search-cell select{
  cursor: pointer;
  appearance: none;
  padding-right: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.search-cell--select::after{
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--search-brown);
  border-bottom: 2px solid var(--search-brown);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  opacity: 0.75;
}

.search-cell input::placeholder{
  color: rgba(15, 78, 89, 0.42);
}

.search-submit{
  height: 56px;
  border: 0;
  background: var(--search-brown);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-submit:hover{
  background: var(--search-brown-hover);
}

.search-submit:focus-visible{
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.hero-content h1{
  margin: 0 0 16px;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(15, 78, 89, 0.4);
}

.hero-content h1 span{
  color: var(--gold);
}

.hero-content p{
  margin: 0 auto 28px;
  max-width: 520px;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.65;
  color: var(--on-dark-muted);
}

.hero-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* â”€â”€ About page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-body .shell{
  overflow: hidden;
}

.about-body--article{
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, var(--gold-soft), transparent 55%),
    linear-gradient(175deg, var(--cream) 0%, #F5EDE0 100%);
}

.about-shell{
  padding: 24px clamp(18px, 4vw, 42px) 48px;
}

.about-toolbar{
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.about-back{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
}

.about-article--solo{
  max-width: 860px;
  margin: 0 auto;
  padding: 36px clamp(20px, 4vw, 44px);
  border-radius: 28px;
  border: 1px solid var(--teal-line);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, var(--gold-soft), transparent 55%),
    linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
  box-shadow: var(--shadow-card);
}

.about-article__header{
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(250, 221, 109, 0.45);
}

.about-article__eyebrow{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
}

.about-article__header h1{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--teal);
}

.about-article__intro{
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(15, 78, 89, 0.72);
  font-weight: 600;
}

.about-section{
  margin-bottom: 28px;
}

.about-section h2{
  margin: 0 0 12px;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--teal);
}

.about-section p{
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(15, 78, 89, 0.82);
}

.about-list,
.about-steps{
  margin: 0 0 14px;
  padding-left: 22px;
  color: rgba(15, 78, 89, 0.82);
  line-height: 1.85;
}

.about-list li,
.about-steps li{
  margin-bottom: 8px;
  font-size: 17px;
}

.about-services{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-service{
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid var(--teal-line);
  background: rgba(255, 255, 255, 0.88);
}

.about-service h3{
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--teal);
}

.about-service p{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.about-regions{
  font-weight: 700;
  color: var(--brown);
}

.about-section--closing{
  margin-bottom: 0;
  padding-top: 8px;
}

@media (max-width: 700px){
  .about-services{
    grid-template-columns: 1fr;
  }

  .about-article--solo{
    padding: 28px 18px;
    border-radius: 22px;
  }
}

/* ── Location page ─────────────────────────────────────────────── */
.location-shell{
  padding-bottom: 56px;
}

.location-page{
  max-width: 960px;
  margin: 0 auto;
  padding: 36px clamp(20px, 4vw, 44px);
  border-radius: 28px;
  border: 1px solid var(--teal-line);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, var(--gold-soft), transparent 55%),
    linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
  box-shadow: var(--shadow-card);
}

.location-page__header{
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(250, 221, 109, 0.45);
  text-align: center;
}

.location-page__header h1{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--teal);
}

.location-page__intro{
  margin: 0 auto;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(15, 78, 89, 0.72);
  font-weight: 600;
}

.location-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.location-card{
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid var(--teal-line);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15, 78, 89, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 78, 89, 0.12);
}

.location-card__head{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-card__title{
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--teal);
}

.location-card__desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15, 78, 89, 0.68);
}

.location-card__map{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 40%, rgba(250, 221, 109, 0.35), transparent 65%),
    linear-gradient(160deg, rgba(15, 78, 89, 0.06) 0%, rgba(15, 78, 89, 0.12) 100%);
}

.location-card__map .fa-map-marker{
  font-size: 42px;
  color: var(--brown);
  opacity: 0.85;
}

.location-card--sy .location-card__map .fa-map-marker{
  color: #8B1A1A;
}

.location-card--tr .location-card__map .fa-map-marker{
  color: #C8102E;
}

.location-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  text-decoration: none;
}

@media (max-width: 700px){
  .location-page{
    padding: 28px 18px;
    border-radius: 22px;
  }

  .location-grid{
    grid-template-columns: 1fr;
  }
}

/* ── Admin panel ───────────────────────────────────────────────── */
.admin-body{
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, var(--gold-soft), transparent 55%),
    linear-gradient(175deg, var(--cream) 0%, #F5EDE0 100%);
}

.admin-shell{
  padding-bottom: 56px;
}

.admin-toolbar__left,
.admin-toolbar__right{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(250, 221, 109, 0.35);
  border: 1px solid rgba(250, 221, 109, 0.6);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.admin-page{
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px clamp(18px, 4vw, 36px);
  border-radius: 28px;
  border: 1px solid var(--teal-line);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.admin-page__header{
  margin-bottom: 24px;
  text-align: center;
}

.admin-page__header h1{
  margin: 0 0 8px;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--teal);
}

.admin-page__header p{
  margin: 0;
  color: rgba(15, 78, 89, 0.68);
  font-size: 16px;
}

.admin-tabs{
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.admin-tab{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1.5px solid var(--teal-line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--teal);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.admin-tab.is-active{
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.admin-panel__bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.admin-panel__bar h2{
  margin: 0;
  font-size: 22px;
  color: var(--teal);
}

.admin-msg{
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.admin-msg.is-success{
  background: rgba(250, 221, 109, 0.25);
  color: var(--teal-dark);
  border: 1px solid rgba(250, 221, 109, 0.5);
}

.admin-msg.is-error{
  background: #fdecea;
  color: #9b1c1c;
}

.admin-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.admin-empty{
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: rgba(15, 78, 89, 0.55);
  padding: 32px 12px;
}

.admin-card{
  border: 1px solid var(--teal-line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 6px 20px rgba(15, 78, 89, 0.06);
}

.admin-card__media{
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8ece9;
}

.admin-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-card__body{
  padding: 14px;
}

.admin-card__title{
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--teal);
  line-height: 1.3;
}

.admin-card__meta{
  margin: 0 0 8px;
  font-size: 13px;
  color: rgba(15, 78, 89, 0.65);
}

.admin-card__price{
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--brown);
}

.admin-card__actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn--sm{
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.admin-btn--danger{
  color: #9b1c1c !important;
  border-color: rgba(155, 28, 28, 0.25) !important;
}

.admin-modal{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.admin-modal[hidden]{
  display: none !important;
}

.admin-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(8, 40, 46, 0.55);
}

.admin-modal__dialog{
  position: relative;
  width: min(720px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--teal-line);
  box-shadow: var(--shadow-teal);
}

.admin-modal__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--teal-line);
}

.admin-modal__head h2{
  margin: 0;
  font-size: 22px;
  color: var(--teal);
}

.admin-modal__close{
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--cream);
  color: var(--teal);
  cursor: pointer;
  font-size: 18px;
}

.admin-form{
  padding: 18px 20px 22px;
}

.admin-form__error{
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fdecea;
  color: #9b1c1c;
  font-size: 14px;
}

.admin-form__error[hidden]{
  display: none !important;
}

.admin-form__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.admin-field--full{
  grid-column: 1 / -1;
}

.admin-form .auth-field select{
  width: 100%;
  min-height: 48px;
  border: 1.5px solid var(--teal-line);
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
  font-size: 15px;
  color: var(--teal);
  background: var(--cream);
  font-family: inherit;
}

.admin-form .auth-field input[type="file"]{
  width: 100%;
  font-size: 14px;
}

.admin-hint{
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(15, 78, 89, 0.55);
}

.admin-gallery{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--teal-line);
}

.admin-gallery h3{
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--teal);
}

.admin-gallery__list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.admin-gallery__item{
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--teal-line);
}

.admin-gallery__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-gallery__remove{
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: rgba(155, 28, 28, 0.9);
  color: #fff;
  cursor: pointer;
}

.admin-gallery__add{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.admin-form__actions{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

body.admin-modal-open{
  overflow: hidden;
}

@media (max-width: 700px){
  .admin-form__grid{
    grid-template-columns: 1fr;
  }

  .admin-page{
    padding: 24px 16px;
    border-radius: 22px;
  }
}

/* â”€â”€ Sections (Ø¨Ø·Ø§Ù‚Ø§Øª Ù…Ø¯Ù…ÙˆØ¬Ø©) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section{
  position: relative;
}

.section-block{
  position: relative;
  padding: 52px clamp(18px, 4vw, 42px) 60px;
  margin-top: 0;
  border-radius: 36px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(165deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-teal);
  scroll-margin-top: 80px;
}

.section-block--merge{
  border-radius: 64px 32px 42px 42px;
  border-top: none;
  z-index: 4;
}

.section-block--overlap{
  margin-top: -52px;
  padding-top: 64px;
}

#properties.section-block--merge{
  margin-top: 0;
  padding-top: 88px;
  z-index: 4;
}

#offers.section-block--merge{ z-index: 5; }

#services.section-block--merge{ z-index: 6; }

#contact.section-block--merge{ z-index: 7; }

#properties,
#offers{
  padding-bottom: 76px;
}

#contact{
  padding-bottom: 72px;
}

.section-block--merge::before,
.site-footer--merge::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 78px;
  border: none;
  border-radius: 0;
  background: var(--gold-merge-curve) no-repeat left top / 150px 78px;
  filter: drop-shadow(0 0 10px rgba(250, 221, 109, 0.34));
  pointer-events: none;
  z-index: 4;
}

.section-block--merge::after,
.site-footer--merge::after{
  content: "";
  position: absolute;
  top: 1px;
  left: 62px;
  right: clamp(18px, 4vw, 42px);
  height: 3px;
  border-radius: 999px;
  background: var(--gold-divider-fade);
  box-shadow: 0 0 14px rgba(250, 221, 109, 0.22);
  pointer-events: none;
  z-index: 3;
}

.section-block--light.section-block--merge::after{
  background: var(--gold-divider-soft);
  box-shadow: 0 0 12px rgba(250, 221, 109, 0.18);
}

.section-block--merge .section__head{
  margin-top: 4px;
  position: relative;
  z-index: 3;
}

.section-block--light{
  background: var(--white);
  color: var(--teal);
  border: 1px solid var(--teal-line);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-card);
}

.section-block--light.section-block--merge{
  border-top: none;
}

#home{ scroll-margin-top: 0; }

#properties,
#offers,
#services,
#contact{
  scroll-margin-top: 80px;
}

.section__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.section__head--center{
  justify-content: center;
  text-align: center;
}

.section__head h2{
  margin: 0;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-block .section__head h2{ color: var(--white); }

.section-block--light .section__head h2{ color: var(--teal); }

.section__head h2::after{
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 11px;
  border-radius: 999px;
  background: var(--gold-divider-fade);
  box-shadow: 0 2px 12px rgba(250, 221, 109, 0.36);
}

.section__head--center h2::after{
  margin-left: auto;
  margin-right: auto;
}

.section__sub{
  margin: 10px 0 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15, 78, 89, 0.62);
}

.section__head--center .section__sub{
  margin-left: auto;
  margin-right: auto;
}

/* â”€â”€ Home services â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.service-card{
  padding: 22px 18px;
  border-radius: 22px;
  border: 1px solid var(--teal-line);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, var(--gold-soft), transparent 55%),
    linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 78, 89, 0.14);
}

.service-card__icon{
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: var(--white);
  color: var(--brown);
  font-size: 20px;
  box-shadow: inset 0 0 0 1px var(--teal-line);
}

.service-card h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--teal);
}

.service-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(15, 78, 89, 0.68);
}

.services-more{
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.services-more .btn{
  min-height: 48px;
  padding: 0 28px;
  border-radius: 16px;
}

@media (max-width: 900px){
  .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ Slider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.slider-nav{
  display: flex;
  gap: 10px;
}

.slider-nav button{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1.5px solid rgba(250, 221, 109, 0.35);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.slider-nav button:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal);
  transform: scale(1.05);
}

.props-viewport{
  overflow: hidden;
  margin: 0 -6px;
  padding: 6px;
}

.props-track{
  display: flex;
  gap: 22px;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.prop-card{
  flex: 0 0 calc((100% - 44px) / 3);
  max-width: calc((100% - 44px) / 3);
  min-width: 220px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform 0.25s var(--ease);
}

.prop-card:hover{ transform: translateY(-4px); }

.prop-card:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 6px;
  border-radius: 22px;
}

.prop-card__media{
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
  border: 1px solid rgba(250, 221, 109, 0.15);
}

.prop-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.prop-card:hover .prop-card__media{
  border-color: rgba(250, 221, 109, 0.45);
}

.prop-card:hover .prop-card__media img{ transform: scale(1.06); }

.prop-card__title{
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.prop-card__meta{
  margin: 0;
  font-size: 14px;
  color: var(--on-dark-muted);
}

.prop-card__price{
  margin-top: 8px;
  font-weight: 700;
  color: var(--gold);
  font-size: 16px;
}

.props-empty{
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  color: var(--on-dark-muted);
}

/* â”€â”€ Property detail modal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prop-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.prop-modal.is-open{
  opacity: 1;
  visibility: visible;
}

.prop-modal[hidden]{ display: none; }

.prop-modal:not([hidden]){
  display: grid;
}

.prop-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(8, 36, 42, 0.72);
  backdrop-filter: blur(6px);
}

.prop-modal__dialog{
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(250, 221, 109, 0.22);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, var(--gold-soft), transparent 55%),
    linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
  box-shadow: 0 28px 80px rgba(8, 36, 42, 0.35);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.32s var(--ease);
}

.prop-modal.is-open .prop-modal__dialog{
  transform: translateY(0) scale(1);
}

.prop-modal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 78, 89, 0.12);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.prop-modal__close:hover{
  background: var(--gold);
  color: var(--teal);
  transform: scale(1.05);
}

.prop-modal__body{ padding: 22px; }

.prop-modal__loading,
.prop-modal__error{
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--teal);
  font-weight: 600;
  padding: 40px 20px;
}

.prop-modal__error{ color: #9b1c1c; }

.prop-modal__layout{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: start;
}

.prop-modal__gallery{
  display: grid;
  gap: 10px;
}

.prop-modal__hero{
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(15, 78, 89, 0.08);
  border: 1px solid var(--teal-line);
}

.prop-modal__hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prop-modal__thumbs{
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.prop-modal__thumb{
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: rgba(15, 78, 89, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.prop-modal__thumb.is-active{
  border-color: var(--brown);
}

.prop-modal__thumb:hover{ transform: translateY(-2px); }

.prop-modal__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prop-modal__content{
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.prop-modal__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prop-modal__badge{
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(15, 78, 89, 0.08);
  border: 1px solid rgba(15, 78, 89, 0.1);
}

.prop-modal__badge--gold{
  color: var(--teal);
  background: var(--gold-soft);
  border-color: rgba(250, 221, 109, 0.45);
}

.prop-modal__title{
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.15;
}

.prop-modal__location{
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(15, 78, 89, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

.prop-modal__location .fa{
  margin-top: 3px;
  color: var(--brown);
}

.prop-modal__price{
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--brown);
}

.prop-modal__specs{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.prop-modal__spec{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--teal-line);
}

.prop-modal__spec .fa{
  width: 18px;
  text-align: center;
  color: var(--brown);
}

.prop-modal__spec strong{
  display: block;
  font-size: 15px;
  color: var(--teal);
}

.prop-modal__spec span{
  display: block;
  font-size: 12px;
  color: rgba(15, 78, 89, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.prop-modal__cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.prop-modal__cta .btn{
  min-height: 46px;
  border-radius: 14px;
  padding: 0 18px;
}

.prop-modal__cta .btn--ghost{
  color: var(--teal);
  border-color: rgba(15, 78, 89, 0.22);
}

.prop-modal__cta .btn--ghost:hover{
  color: var(--teal);
  background: rgba(15, 78, 89, 0.06);
  border-color: var(--brown);
}

body.modal-open{ overflow: hidden; }

@media (max-width: 800px){
  .prop-modal__layout{
    grid-template-columns: 1fr;
  }

  .prop-modal__body{ padding: 18px; }

  .prop-modal__dialog{
    border-radius: 22px;
    max-height: 92vh;
  }
}



/* Contact section */

.contact-layout{

  display: grid;

  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 400px);

  gap: 22px;

  align-items: start;

  max-width: 1080px;

  margin: 0 auto;

}



.contact-regions{

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;

}



.contact-region{

  display: flex;

  flex-direction: column;

  gap: 14px;

  padding: 20px;

  border-radius: 24px;

  border: 1px solid var(--teal-line);

  background:

    radial-gradient(ellipse 90% 70% at 100% 0%, var(--gold-soft), transparent 58%),

    linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);

  box-shadow: var(--shadow-card);

}



.contact-region__head{

  display: flex;

  align-items: center;

  gap: 12px;

  padding-bottom: 12px;

  border-bottom: 1px solid rgba(15, 78, 89, 0.08);

}



.contact-region__badge{
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(15, 78, 89, 0.1);
  box-shadow: 0 4px 12px rgba(15, 78, 89, 0.08);
}

.contact-region__badge img{
  width: 100%;
  height: 100%;
  display: block;
}

.contact-region__badge--sy img{
  object-fit: contain;
  padding: 4px;
}

.contact-region__badge--tr img{
  object-fit: cover;
  object-position: center center;
}

.contact-region__badge--tr{
  background: var(--white);
}



.contact-region__title{

  margin: 0;

  font-size: 20px;

  font-weight: 700;

  color: var(--teal);

}



.contact-region__links{

  display: grid;

  gap: 10px;

}



.contact-link{

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 12px 14px;

  border-radius: 16px;

  border: 1px solid rgba(15, 78, 89, 0.08);

  background: rgba(255, 255, 255, 0.9);

  color: var(--teal);

  text-decoration: none;

  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, border-color 0.2s ease;

}



.contact-link:hover{

  transform: translateY(-2px);

  border-color: rgba(15, 78, 89, 0.16);

  box-shadow: 0 10px 24px rgba(15, 78, 89, 0.08);

}



.contact-link__icon{

  display: grid;

  place-items: center;

  width: 40px;

  height: 40px;

  border-radius: 12px;

  color: var(--white);

  font-size: 18px;

  flex-shrink: 0;

}



.contact-link--instagram .contact-link__icon{

  background: linear-gradient(135deg, #f9ce34, #ee2a7b 48%, #6228d7);

}



.contact-link--facebook .contact-link__icon{

  background: linear-gradient(135deg, #1877f2, #0d5dbf);

}



.contact-link__body{

  display: grid;

  gap: 2px;

  min-width: 0;

  flex: 1;

}



.contact-link__label{

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: rgba(15, 78, 89, 0.48);

}



.contact-link__value{

  font-size: 14px;

  font-weight: 700;

  color: var(--teal);

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}



.contact-link__go{

  font-size: 13px;

  color: rgba(15, 78, 89, 0.35);

  flex-shrink: 0;

}



.contact-link:hover .contact-link__go{

  color: var(--brown);

}



.contact-region__wa{

  display: grid;

  gap: 10px;

  padding-top: 4px;

}



.contact-region__wa-title{

  display: flex;

  align-items: center;

  gap: 8px;

  margin: 0;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  color: rgba(15, 78, 89, 0.55);

}



.contact-region__wa-title .fa-whatsapp{

  color: #25D366;

  font-size: 16px;

}



.contact-region__wa-list{

  display: grid;

  gap: 8px;

}



.contact-wa-pill{

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 44px;

  padding: 10px 14px;

  border-radius: 14px;

  border: 1px solid rgba(37, 211, 102, 0.22);

  background: rgba(37, 211, 102, 0.08);

  color: var(--teal);

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;

  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease;

}



.contact-wa-pill:hover{

  transform: translateY(-2px);

  background: rgba(37, 211, 102, 0.14);

  border-color: rgba(37, 211, 102, 0.38);

}



.contact-panel{

  padding: 28px 24px;

  border-radius: 28px;

  border: 1px solid var(--teal-line);

  background:

    radial-gradient(ellipse 80% 60% at 100% 0%, var(--gold-soft), transparent 55%),

    linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);

  box-shadow: var(--shadow-card);

}



.contact-panel--form{

  background:

    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(15, 78, 89, 0.06), transparent 55%),

    linear-gradient(165deg, var(--white) 0%, #f8f4ec 100%);

  position: sticky;

  top: 96px;

}



.contact-panel__eyebrow{

  margin: 0 0 6px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  color: var(--brown);

}



.contact-panel__title{

  margin: 0 0 22px;

  font-size: clamp(22px, 2.4vw, 28px);

  font-weight: 700;

  color: var(--teal);

  line-height: 1.2;

}



.contact-form{

  display: grid;

  gap: 14px;

}



.contact-form__row{

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px;

}



.contact-form__submit{

  width: 100%;

  min-height: 50px;

  border-radius: 16px;

  margin-top: 4px;

}



.contact-input,

.contact-textarea{

  width: 100%;

  min-height: 50px;

  border: 1.5px solid transparent;

  border-radius: 16px;

  padding: 0 16px;

  font-size: 15px;

  color: var(--teal);

  background: rgba(255, 255, 255, 0.92);

  outline: none;

  box-shadow: inset 0 0 0 1px var(--teal-line);

  transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;

}



.contact-textarea{

  min-height: 130px;

  padding: 14px 16px;

  resize: vertical;

}



.contact-input:focus,

.contact-textarea:focus{

  background: var(--white);

  box-shadow:

    inset 0 0 0 1.5px var(--brown),

    0 0 0 4px var(--brown-soft);

  transform: translateY(-1px);

}



.contact-input::placeholder,

.contact-textarea::placeholder{ color: rgba(15, 78, 89, 0.38); }



.contact-msg{

  text-align: center;

  font-weight: 600;

  min-height: 20px;

  font-size: 14px;

}



.contact-msg--ok{ color: var(--teal-mid); }

.contact-msg--err{ color: #9b1c1c; }



@media (max-width: 900px){

  .contact-layout{

    grid-template-columns: 1fr;

    max-width: 620px;

  }



  .contact-regions{

    grid-template-columns: 1fr;

  }



  .contact-panel--form{

    position: static;

  }

}



@media (max-width: 600px){

  .contact-form__row{

    grid-template-columns: 1fr;

  }



  .contact-region,

  .contact-panel{

    padding: 18px;

    border-radius: 22px;

  }

}



/* â”€â”€ Reveal animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal{
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1{ transition-delay: 0.08s; }
.reveal-delay-2{ transition-delay: 0.16s; }
.reveal-delay-3{ transition-delay: 0.24s; }

@keyframes heroDrift{
  from{ transform: scale(1.04) translateY(0); }
  to{ transform: scale(1.1) translateY(-1.5%); }
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer{
  position: relative;
  z-index: 7;
  margin-top: -48px;
  padding: 56px clamp(18px, 4vw, 42px) 28px;
  background: linear-gradient(165deg, var(--teal-dark) 0%, #083238 100%);
  color: var(--on-dark-muted);
  text-align: center;
  font-size: 14px;
  border-radius: 64px 32px var(--radius-shell) var(--radius-shell);
  border-top: none;
  box-shadow: var(--shadow-teal);
}

.site-footer strong{
  color: var(--gold);
  font-weight: 600;
}

/* â”€â”€ Auth pages â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.auth-body{
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, var(--gold-soft), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, var(--brown-soft), transparent 50%),
    linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 55%, #0D4249 100%);
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-card{
  width: min(420px, 100%);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-teal);
  border-top: 4px solid var(--gold);
}

.auth-card h1{
  margin: 8px 0 6px;
  text-align: center;
  color: var(--teal);
  font-size: 28px;
  font-weight: 700;
}

.auth-card .subtitle{
  margin: 0 0 22px;
  text-align: center;
  color: rgba(15, 78, 89, 0.6);
  font-size: 15px;
}

.auth-field{ margin-bottom: 14px; }

.auth-field label{
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--teal);
  font-size: 14px;
}

.auth-field input{
  width: 100%;
  min-height: 48px;
  border: 1.5px solid var(--teal-line);
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
  font-size: 15px;
  color: var(--teal);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input:focus{
  border-color: var(--brown);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--brown-soft);
}

.auth-error{
  display: none;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fdecea;
  color: #9b1c1c;
  font-size: 14px;
}

.auth-error.is-visible{ display: block; }

.auth-success{
  display: none;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(250, 221, 109, 0.25);
  color: var(--teal-dark);
  border: 1px solid rgba(250, 221, 109, 0.5);
  font-size: 14px;
  font-weight: 600;
}

.auth-success.is-visible{ display: block; }

.auth-card .btn{
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  border-radius: 14px;
}

.auth-switch{
  margin: 18px 0 0;
  text-align: center;
  color: rgba(15, 78, 89, 0.6);
  font-size: 14px;
}

.auth-switch button{
  border: 0;
  background: none;
  color: var(--brown);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.auth-switch button:hover{ color: var(--brown-dark); }

.auth-switch a{
  color: var(--brown);
  font-weight: 700;
  text-decoration: none;
}

.auth-switch a:hover{ text-decoration: underline; }

.auth-forgot{
  margin: -4px 0 14px;
  text-align: right;
  font-size: 14px;
}

.auth-forgot a{
  color: var(--brown);
  font-weight: 600;
  text-decoration: none;
}

.auth-forgot a:hover{ text-decoration: underline; }

.auth-form.is-hidden{ display: none; }

.auth-hint{
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(15, 78, 89, 0.55);
}

.auth-warning{
  display: none;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(250, 221, 109, 0.22);
  color: var(--teal-dark);
  border: 1px solid rgba(250, 221, 109, 0.45);
  font-size: 13px;
  line-height: 1.5;
}

.auth-warning.is-visible{ display: block; }

.auth-dev-code{
  display: none;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 78, 89, 0.06);
  color: var(--teal);
  border: 1px dashed rgba(15, 78, 89, 0.18);
  font-size: 13px;
}

.auth-dev-code.is-visible{ display: block; }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px){
  .prop-card{
    flex: 0 0 calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }

  .nav{
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 0;
    background: var(--teal);
    border: 1px solid rgba(250, 221, 109, 0.2);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow-teal);
  }

  .nav.is-open{ display: flex; }

  .nav li a{ display: block; padding: 12px 14px; }

  .menu-toggle{ display: inline-grid; place-items: center; }

  .site-header{ grid-template-columns: auto auto 1fr; }

  .header-actions .btn--ghost span{ display: none; }
}

@media (max-width: 900px){
  .search-bar{
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .search-cell{
    height: 52px;
    border-right: 0;
    border-bottom: 1px solid var(--search-divider);
  }

  .search-cell:first-child,
  .search-cell:nth-child(2){
    grid-column: 1 / -1;
    border-right: 0;
  }

  .search-cell:nth-child(3){
    border-right: 1px solid var(--search-divider);
  }

  .search-submit{
    grid-column: 1 / -1;
    height: 52px;
  }
}

@media (max-width: 700px){
  .shell{
    width: calc(100% - 16px);
    margin: 10px auto 28px;
  }

  .hero-panel{ border-radius: 28px 28px 0 0; }

  .section-block{ border-radius: 28px; }

  .section-block--merge{
    border-radius: 44px 22px 28px 28px;
  }

  .section-block--overlap{
    margin-top: -40px;
    padding-top: 56px;
  }

  #properties.section-block--merge{
    padding-top: 76px;
  }

  .search-bridge{
    margin: -88px auto -44px;
    width: calc(100% - 32px);
  }

  #properties,
  #offers{
    padding-bottom: 64px;
  }

  #contact{
    padding-bottom: 60px;
  }

  .section-block--merge::before,
  .site-footer--merge::before{
    width: 100px;
    height: 54px;
    background: var(--gold-merge-curve-sm) no-repeat left top / 100px 54px;
    filter: drop-shadow(0 0 8px rgba(250, 221, 109, 0.28));
  }

  .section-block--merge::after,
  .site-footer--merge::after{
    left: 44px;
    height: 2px;
  }

  .section__head h2::after{
    width: 56px;
    height: 3px;
  }

  .site-footer{
    margin-top: -40px;
    padding-top: 48px;
    border-radius: 44px 22px 28px 28px;
  }

  .search-bar{
    grid-template-columns: 1fr;
  }

  .search-cell{
    border-right: 0;
  }

  .search-cell:nth-child(1),
  .search-cell:nth-child(2),
  .search-cell:nth-child(3),
  .search-cell:nth-child(4){
    grid-column: 1 / -1;
  }

  .search-submit{
    height: 52px;
  }

  .prop-card{
    flex: 0 0 78%;
    max-width: 78%;
  }

  .hero-content{ padding: 120px 0 64px; }

  .brand__logo{ height: 48px; }

  .brand__logo--auth{ height: 60px; }

  .brand__name{ font-size: 18px; }

  .brand__tagline{
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .login-link span{ display: none; }

  .section-block{
    padding: 40px 16px 48px;
  }

  #services{
    padding-bottom: 60px;
  }

  .section__head:not(.section__head--center){
    flex-wrap: wrap;
    gap: 12px;
  }

  .section__head:not(.section__head--center) .slider-nav{
    margin-left: auto;
  }

  .section__sub{
    font-size: 15px;
    padding: 0 4px;
  }

  .prop-card{
    min-width: 0;
  }

  .hero-cta{
    width: 100%;
    max-width: 320px;
  }

  .about-shell{
    padding: 16px 12px 32px;
  }

  .about-article--solo{
    padding: 24px 16px;
  }

  .about-section h2{
    font-size: 22px;
  }

  .about-list,
  .about-steps,
  .about-section p{
    font-size: 16px;
  }
}

@media (max-width: 480px){
  .auth-body{
    padding: 16px;
    align-items: flex-start;
    padding-top: 24px;
  }

  .auth-card{
    padding: 28px 20px 24px;
    border-radius: 22px;
  }

  .auth-card h1{
    font-size: 24px;
  }

  .prop-modal{
    padding: 10px;
  }

  .prop-modal__body{
    padding: 16px 14px;
  }

  .prop-modal__close{
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .prop-modal__specs{
    grid-template-columns: 1fr;
  }

  .prop-modal__cta{
    flex-direction: column;
  }

  .prop-modal__cta .btn{
    width: 100%;
    justify-content: center;
  }

  .prop-modal__thumbs{
    gap: 6px;
  }

  .prop-modal__thumb{
    flex-basis: 60px;
    width: 60px;
    height: 60px;
  }

  .contact-link{
    flex-wrap: wrap;
  }

  .contact-link__go{
    display: none;
  }

  .brand__tagline{
    display: none;
  }

  .header-actions{
    gap: 8px;
  }

  .header-actions .btn--ghost{
    min-height: 40px;
    padding: 0 12px;
  }

  .menu-toggle{
    width: 38px;
    height: 38px;
  }

  .site-header{
    padding: 16px 14px;
    gap: 10px;
  }

  .hero-content{
    width: calc(100% - 28px);
    padding-top: 108px;
  }

  .section__head h2{
    font-size: 24px;
  }
}

/* Language toggle */
.lang-toggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--teal-line);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.lang-toggle:hover{
  background: var(--gold-soft);
  border-color: var(--gold);
}

.auth-lang{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 20;
}

/* RTL layout */
html[dir="rtl"] .site-header{
  direction: rtl;
}

html[dir="rtl"] .nav{
  direction: rtl;
}

html[dir="rtl"] .header-actions{
  direction: rtl;
}

html[dir="rtl"] .search-cell--select::after{
  right: auto;
  left: 14px;
}

html[dir="rtl"] .search-cell select{
  padding-right: 12px;
  padding-left: 36px;
}

html[dir="rtl"] .about-back .fa-arrow-left{
  transform: scaleX(-1);
}

html[dir="rtl"] .prop-modal__close{
  right: auto;
  left: 14px;
}

html[dir="rtl"] .auth-lang{
  right: auto;
  left: 16px;
}

html[dir="rtl"] .contact-form__row,
html[dir="rtl"] .contact-regions,
html[dir="rtl"] .location-grid,
html[dir="rtl"] .services-grid,
html[dir="rtl"] .about-services{
  direction: rtl;
}

html[dir="rtl"] .about-steps,
html[dir="rtl"] .about-list{
  padding-right: 1.2em;
  padding-left: 0;
}
