/* ==========================================================================
   Novofina — Premium Design System
   ========================================================================== */

/* Fix for Playfair Display's overly decorative "&" glyph: swap in a plain
   ampersand from a standard system font wherever headings use --font-heading. */
@font-face {
  font-family: 'AmpFix';
  src: local('Helvetica Neue'), local('Helvetica'), local('Arial'), local('Inter');
  unicode-range: U+0026;
}

:root {
  /* Color palette — Mediterranean premium */
  --color-navy: #16242f;
  --color-navy-light: #233a4a;
  --color-cream: #faf7f2;
  --color-sand: #f1ebe0;
  --color-gold: #c2a25d;
  --color-gold-light: #e3cd9a;
  --color-terracotta: #c1633f;
  --color-sage: #6f8a72;
  --color-text: #2b2f33;
  --color-text-light: #6b7378;
  --color-white: #ffffff;
  --color-border: #e6e0d6;

  /* Typography */
  --font-heading: 'AmpFix', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-width: 1240px;
  --radius: 6px;
  --shadow-soft: 0 10px 40px rgba(22, 36, 47, 0.08);
  --shadow-strong: 0 20px 60px rgba(22, 36, 47, 0.18);

  --transition: 0.25s ease;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-navy);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: var(--color-text-light); }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--sand { background: var(--color-sand); }
.section--navy { background: var(--color-navy); color: var(--color-white); }
.section--navy h2, .section--navy h3 { color: var(--color-white); }
.section--navy p { color: rgba(255,255,255,0.72); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { font-size: 1.08rem; }

.intro-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.intro-cta__text {
  font-weight: 600;
  color: var(--color-text);
  max-width: 360px;
  text-align: left;
}
html[dir="rtl"] .intro-cta__text { text-align: right; }
@media (max-width: 760px) {
  .intro-cta__text { text-align: center; max-width: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-terracotta);
  color: var(--color-white);
}
.btn--primary:hover { background: #a8512f; transform: translateY(-2px); }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-navy);
}
.btn--gold:hover { background: var(--color-gold-light); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }

.btn--outline-dark {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.btn--outline-dark:hover { background: var(--color-navy); color: var(--color-white); }

.btn--sm { padding: 10px 22px; font-size: 0.85rem; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
/* topbar removed */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}
.logo__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
}
.logo__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.04em;
}
.logo__tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 3px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.main-nav__links a:hover,
.main-nav__links a.active { color: var(--color-terracotta); }

.main-nav__links .has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 260px;
  display: none;
  z-index: 50;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--color-sand); color: var(--color-terracotta); }

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch__current {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  min-width: 170px;
  padding: 6px;
  display: none;
  z-index: 60;
}
.lang-switch:hover .lang-switch__menu,
.lang-switch:focus-within .lang-switch__menu { display: block; }
.lang-switch__menu a {
  display: flex;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 0.88rem;
}
.lang-switch__menu a:hover { background: var(--color-sand); }
.lang-switch__menu a.active { color: var(--color-terracotta); font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-navy); display: block; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22,36,47,0.82) 0%, rgba(22,36,47,0.55) 55%, rgba(22,36,47,0.35) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero__content { max-width: 680px; }
.hero h1 { color: var(--color-white); }
.hero p.lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

.hero--small { min-height: 46vh; }
.hero--small .hero__content { max-width: 760px; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--color-gold-light); }
.breadcrumb span { margin: 0 6px; }

/* ==========================================================================
   Service cards
   ========================================================================== */
.grid {
  display: grid;
  gap: 28px;
}
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--color-terracotta);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { flex-grow: 1; }
.service-card__link {
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-terracotta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Selected work / project gallery
   ========================================================================== */
.work-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.work-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-sand);
  position: relative;
}
.work-card__step {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.work-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.work-card:hover .work-card__img img {
  transform: scale(1.05);
}
.work-card__body {
  padding: 18px 22px 24px;
}
.work-card__tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}
.work-card__body h3 {
  font-size: 1.05rem;
  margin: 0;
}
.work-card__body p {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--color-text-light);
}

/* ==========================================================================
   Image / text split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img,
.split__media .img-frame {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.split__media .img-frame { background-size: cover; background-position: center; }

.checklist { list-style: none; padding: 0; margin: 24px 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.checklist li svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--color-terracotta);
  margin-top: 3px;
}

/* ==========================================================================
   Stats / trust bar
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats .stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-gold);
}
.stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--color-border);
  height: 100%;
}
.testimonial__stars { color: var(--color-gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial__quote { font-style: italic; color: var(--color-text); }
.testimonial__author { margin-top: 18px; font-weight: 600; color: var(--color-navy); font-size: 0.92rem; }
.testimonial__author span { display: block; font-weight: 400; color: var(--color-text-light); font-size: 0.85rem; }

/* ==========================================================================
   Process steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step { position: relative; padding-left: 0; }
.step__num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 10px;
  display: block;
}

/* ==========================================================================
   Areas / city grid
   ========================================================================== */
.area-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}
.area-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,36,47,0) 30%, rgba(22,36,47,0.85) 100%);
}
.area-card__label {
  position: relative; z-index: 2;
  padding: 20px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}
.area-card__label span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-gold-light);
  margin-top: 4px;
}

/* Map graphic (Costa del Sol) */
.map-graphic {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  width: 100%;
  box-shadow: var(--shadow-soft);
  background: var(--color-cream);
}
.map-graphic svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Text-based area cards */
.area-card--text {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-decoration: none;
  color: var(--color-text);
  transition: transform var(--transition), box-shadow var(--transition);
}
.area-card--text:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.area-card--text h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--color-navy);
}
.area-card--text h3 span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-text-light);
  margin-top: 6px;
}
.area-card--text p {
  flex-grow: 1;
  font-size: 0.92rem;
  margin: 14px 0 0;
}
.area-card--text__link {
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-terracotta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.area-card--text__link svg { width: 16px; height: 16px; }

.related-links {
  margin-top: 28px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.related-links a {
  color: var(--color-terracotta);
  font-weight: 600;
  text-decoration: none;
}
.related-links a:hover { text-decoration: underline; }
.related-links__sep {
  margin: 0 10px;
  color: var(--color-border);
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--color-white); margin-bottom: 6px; }
.cta-band p { margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--color-navy);
}
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-text);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
textarea { resize: vertical; min-height: 130px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 24px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.site-footer .logo__name { color: var(--color-white); }
.site-footer .logo__tagline { color: var(--color-gold-light); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--color-gold-light); opacity: 0.85; }
.site-footer a:hover { color: var(--color-gold-light); }
/* Contact column: clean single-column list with icon + text inline */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.87rem;
  line-height: 1.45;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.72);
}
.footer-contact li svg { margin-top: 2px; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-langs { display: flex; gap: 14px; }

/* ==========================================================================
   Misc
   ========================================================================== */
.badge-row { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.badge-row__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; color: var(--color-navy);
}
.badge-row__item svg { width: 22px; height: 22px; color: var(--color-gold); }

.tag {
  display: inline-block;
  background: var(--color-sand);
  color: var(--color-navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin: 0 6px 6px 0;
}

.divider { height: 1px; background: var(--color-border); margin: 64px 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .logo__tagline { display: none; }
}

@media (max-width: 760px) {
  .main-nav__links, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .logo__mark { width: 34px; height: 34px; }
  .logo__name { font-size: 1.35rem; }

  .main-nav.open .main-nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--color-cream);
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    gap: 16px;
  }
  .main-nav.open .has-dropdown .dropdown {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    padding-left: 14px;
  }
}

/* ==========================================================================
   Image placeholders (replace with real photography)
   ========================================================================== */
.img-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, var(--ph-color-1, #233a4a) 0%, var(--ph-color-2, #16242f) 100%);
  display: flex;
  align-items: flex-end;
  color: rgba(255,255,255,0.85);
}
.img-placeholder__label {
  padding: 18px 22px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  background: rgba(22,36,47,0.55);
  border-radius: 0 var(--radius) 0 0;
  font-weight: 500;
}
.img-placeholder__label strong { display: block; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-gold-light); margin-bottom: 4px; }

.hero.img-placeholder::after { content: none; }
.hero .img-placeholder__label { position: relative; z-index: 2; }

/* Color variants for placeholders */
.ph--terracotta { --ph-color-1: #c1633f; --ph-color-2: #8a3f23; }
.ph--sage { --ph-color-1: #6f8a72; --ph-color-2: #45594a; }
.ph--gold { --ph-color-1: #c2a25d; --ph-color-2: #8a6f37; }
.ph--navy { --ph-color-1: #233a4a; --ph-color-2: #16242f; }

/* ==========================================================================
   RTL (Arabic)
   ========================================================================== */
html[dir="rtl"] .checklist li svg,
html[dir="rtl"] .badge-row__item svg,
html[dir="rtl"] .service-card__link svg,
html[dir="rtl"] .area-card--text__link svg { margin-left: 0; margin-right: 6px; }

html[dir="rtl"] .hero::after {
  background: linear-gradient(240deg, rgba(22,36,47,0.82) 0%, rgba(22,36,47,0.55) 55%, rgba(22,36,47,0.35) 100%);
}
html[dir="rtl"] .lang-switch__menu { right: auto; left: 0; }
html[dir="rtl"] .area-card__label { text-align: right; }

/* ==========================================================================
   Floating contact actions (call + WhatsApp) — always visible, follow scroll
   ========================================================================== */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}
.float-actions__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--color-white);
  box-shadow: var(--shadow-strong);
  transition: var(--transition);
}
.float-actions__btn svg {
  width: 26px;
  height: 26px;
}
.float-actions__btn--whatsapp {
  background: #25d366;
}
.float-actions__btn--call {
  background: var(--color-navy);
}
.float-actions__btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

html[dir="rtl"] .float-actions {
  right: auto;
  left: 22px;
}

@media (max-width: 640px) {
  .float-actions {
    right: 16px;
    bottom: 16px;
    gap: 12px;
  }
  .float-actions__btn {
    width: 50px;
    height: 50px;
  }
  .float-actions__btn svg {
    width: 22px;
    height: 22px;
  }
  html[dir="rtl"] .float-actions {
    left: 16px;
  }
}
