
:root{
  --wine:#711322;
  --dark:#0d1a31;
  --gold:#b88a32;
  --ink:#171719;
  --muted:#6d6d73;
  --paper:#fdfbf7;
  --line:#e8e1d9;
  --cream:#f5efe8;
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--paper);color:var(--ink);font:16px/1.6 "DM Sans",sans-serif;overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
h1,h2,h3{font-family:"Playfair Display",serif;line-height:1.06}

/* Header */
header{
  height:82px;position:sticky;top:0;z-index:30;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 clamp(20px,5vw,78px);
  background:rgba(253,251,247,.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.logo{display:flex;align-items:center}
.logo img{width:260px;height:auto;max-height:58px;object-fit:contain}
nav{display:flex;align-items:center;gap:18px;font-size:.86rem;font-weight:600}
nav a{padding:8px 0}
.outline{border:1px solid var(--wine);color:var(--wine);padding:9px 14px;border-radius:999px}
.menu{display:none;border:0;background:none;font-size:1.7rem}

/* Hero */
.page-hero{
  position:relative;
  min-height:590px;
  display:flex;
  align-items:flex-end;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(7,17,33,.92) 0%,rgba(7,17,33,.72) 46%,rgba(7,17,33,.22) 78%,rgba(7,17,33,.08) 100%);
}
.page-hero-content{
  position:relative;z-index:2;
  max-width:760px;
  padding:90px clamp(24px,6vw,96px);
  color:white;
}
.eyebrow{
  display:block;
  font-size:.72rem;
  letter-spacing:.18em;
  font-weight:700;
  color:#e7c97e;
}
.page-hero h1{
  font-size:clamp(3.4rem,6vw,6rem);
  margin:.15em 0 .22em;
}
.page-hero .lead{
  max-width:660px;
  font-size:1.1rem;
  color:#e4e8ee;
}
.hero-actions{display:flex;gap:12px;margin-top:28px}
.btn,.ghost{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:50px;padding:0 22px;border-radius:12px;font-weight:700;
}
.btn{background:var(--wine);color:white;box-shadow:0 10px 24px rgba(0,0,0,.18)}
.ghost{border:1px solid rgba(255,255,255,.55);color:white;background:rgba(255,255,255,.06)}

/* Cards */
.section{padding:72px clamp(24px,6vw,96px);border-top:1px solid var(--line)}
.section-heading{max-width:760px;margin-bottom:28px}
.section-heading .eyebrow{color:var(--wine)}
.section-heading h2{font-size:clamp(2.2rem,4vw,4rem);margin:.2em 0}
.section-heading p{color:var(--muted)}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.feature-card{
  min-height:265px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:20px;
  background:white;
  display:flex;
  flex-direction:column;
}
.feature-card .number{
  font-size:.76rem;
  color:var(--gold);
  font-weight:700;
}
.feature-card h3{
  margin:42px 0 12px;
  font-size:1.5rem;
}
.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:.94rem;
}

/* About content */
.content-split{
  display:grid;grid-template-columns:1fr 1fr;gap:6vw;align-items:start;
}
.content-split h2{font-size:clamp(2.3rem,4vw,4.2rem);margin:.15em 0}
.copy{color:var(--muted);font-size:1.06rem}

/* CTA */
.cta{
  display:grid;grid-template-columns:1.4fr .6fr;gap:40px;align-items:center;
  background:var(--cream);
}
.cta .eyebrow{color:var(--wine)}
.cta h2{font-size:clamp(2.1rem,4vw,3.8rem);margin:.2em 0}

/* WhatsApp */
.wa{
  position:fixed;right:18px;bottom:18px;z-index:40;
  width:50px;height:50px;border-radius:50%;
  display:grid;place-items:center;
  background:#1f8c56;color:white;font-weight:800;
  box-shadow:0 12px 30px #0003;
}

/* Footer */
footer{
  display:grid;grid-template-columns:280px 1fr auto;gap:30px;align-items:center;
  padding:34px clamp(22px,6vw,96px);
  background:#101829;color:#e9eaf0;
}
footer img{
  width:240px;max-height:56px;object-fit:contain;
  background:white;border-radius:10px;padding:6px;
}
footer p{margin:0}
footer small{display:block;margin-top:7px;color:#aab1bf;font-size:.72rem;max-width:720px}
footer>span{font-size:.78rem;color:#aab1bf}

/* Tablet / iPad */
@media(max-width:1180px){
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .section{padding:56px clamp(24px,5vw,68px)}
  .page-hero{min-height:520px}
  .page-hero-content{padding:70px clamp(24px,5vw,68px)}
  footer{grid-template-columns:1fr}
}

@media(max-width:1000px){
  .menu{display:block}
  nav{
    display:none;position:absolute;top:82px;left:0;right:0;
    padding:22px;background:var(--paper);
    flex-direction:column;align-items:stretch;border-bottom:1px solid var(--line)
  }
  nav.open{display:flex}
  .content-split,.cta{grid-template-columns:1fr}
}

/* Mobile */
@media(max-width:650px){
  header{height:74px;padding:0 16px}
  .logo img{width:185px;max-height:50px}
  nav{top:74px}
  .menu{font-size:1.85rem}

  .page-hero{
    min-height:540px;
    background-position:center center;
  }
  .page-hero::before{
    background:linear-gradient(180deg,rgba(7,17,33,.28) 0%,rgba(7,17,33,.48) 38%,rgba(7,17,33,.93) 100%);
  }
  .page-hero-content{
    padding:44px 20px 40px;
    width:100%;
  }
  .page-hero h1{
    font-size:clamp(2.8rem,12vw,3.9rem);
    margin:.14em 0 .22em;
  }
  .page-hero .lead{
    font-size:.98rem;
    line-height:1.55;
  }
  .hero-actions{flex-direction:column}
  .btn,.ghost{width:100%}

  .section{padding:50px 18px}
  .section-heading{margin-bottom:22px}
  .section-heading h2{font-size:2.35rem}

  .feature-grid{grid-template-columns:1fr;gap:12px}
  .feature-card{
    min-height:auto;
    padding:22px 20px;
  }
  .feature-card h3{
    margin:22px 0 10px;
    font-size:1.45rem;
  }
  .feature-card p{font-size:.92rem}

  .wa{width:46px;height:46px;right:12px;bottom:12px}
  footer{padding:28px 20px}
  footer img{width:210px}
}

/* ===== V9 HEADER + HERO FIX ===== */
.logo img{
  width:clamp(270px,24vw,350px) !important;
  height:auto !important;
  max-height:70px !important;
  object-fit:contain !important;
}

/* Less oversized on desktop and iPad */
.page-hero{
  min-height:455px !important;
}
.page-hero-content{
  padding-top:62px !important;
  padding-bottom:62px !important;
}
.page-hero h1{
  max-width:760px;
}

/* Digital Nomad image: keep laptop/view visible and avoid meaningless zoom */
.digital-nomad-hero{
  min-height:430px !important;
  background-position:center 58% !important;
}
.digital-nomad-hero::before{
  background:linear-gradient(90deg,rgba(7,17,33,.91) 0%,rgba(7,17,33,.73) 44%,rgba(7,17,33,.20) 80%,rgba(7,17,33,.05) 100%) !important;
}

/* Tablet */
@media(min-width:651px) and (max-width:1180px){
  .logo img{
    width:290px !important;
    max-height:62px !important;
  }
  .page-hero{
    min-height:420px !important;
  }
  .digital-nomad-hero{
    min-height:400px !important;
    background-position:center 60% !important;
  }
}

/* Mobile */
@media(max-width:650px){
  header{
    height:78px !important;
  }
  .logo img{
    width:220px !important;
    max-height:55px !important;
  }
  nav{
    top:78px !important;
  }
  .page-hero{
    min-height:470px !important;
  }
  .digital-nomad-hero{
    min-height:455px !important;
    background-position:56% center !important;
  }
  .page-hero-content{
    padding:38px 20px 38px !important;
  }
}


/* ===== V10 INTERNAL PAGE ICONS ===== */
.feature-icon{
  width:56px;
  height:56px;
  flex:0 0 56px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f8ecef;
  color:var(--wine);
  border:1px solid #efdadd;
}
.feature-icon svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.feature-card h3{
  margin:30px 0 12px !important;
}
@media(max-width:650px){
  .feature-icon{
    width:50px;
    height:50px;
    flex-basis:50px;
  }
  .feature-icon svg{
    width:24px;
    height:24px;
  }
  .feature-card h3{
    margin:20px 0 10px !important;
  }
}


/* ===== V11: SMALL, ELEGANT INTERNAL ICONS ===== */
/* Keeps layout intact; only reduces/refines the V10 feature icons. */
.feature-icon{
  width:38px !important;
  height:38px !important;
  min-width:38px !important;
  min-height:38px !important;
  flex:0 0 38px !important;
  display:inline-grid !important;
  place-items:center !important;
  border-radius:10px !important;
  background:#fbf4f5 !important;
  color:var(--wine) !important;
  border:1px solid #eadcdf !important;
  box-shadow:none !important;
  margin:0 0 18px 0 !important;
}
.feature-icon svg{
  width:18px !important;
  height:18px !important;
  max-width:18px !important;
  max-height:18px !important;
  display:block !important;
  fill:none !important;
  stroke:currentColor !important;
  stroke-width:1.65 !important;
  vector-effect:non-scaling-stroke;
}
.feature-card h3{
  margin:4px 0 12px !important;
}
@media(max-width:650px){
  .feature-icon{
    width:34px !important;
    height:34px !important;
    min-width:34px !important;
    min-height:34px !important;
    flex-basis:34px !important;
    border-radius:9px !important;
    margin-bottom:14px !important;
  }
  .feature-icon svg{
    width:16px !important;
    height:16px !important;
    max-width:16px !important;
    max-height:16px !important;
  }
  .feature-card h3{
    margin:3px 0 10px !important;
  }
}


/* ===== V12: NO ICONS — CLEAN PROFESSIONAL CARDS ===== */
/* Remove all visual icon remnants safely */
.feature-icon{
  display:none !important;
}

/* Clean editorial card styling */
.feature-card{
  position:relative;
  padding-top:30px !important;
}

/* Small refined brand accent instead of an icon/number */
.feature-card::before{
  content:"";
  display:block;
  width:26px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--wine),var(--gold));
  margin-bottom:22px;
}

.feature-card h3{
  margin:0 0 12px !important;
}

@media(max-width:650px){
  .feature-card{
    padding-top:22px !important;
  }

  .feature-card::before{
    width:22px;
    height:3px;
    margin-bottom:16px;
  }

  .feature-card h3{
    margin:0 0 10px !important;
  }
}


/* ===== FINAL SOCIAL ICON FIX ===== */

/* Instagram: fixed small gradient badge */
.footer-instagram{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  margin-top:10px !important;
  color:inherit;
  font-size:.84rem !important;
  line-height:1.2 !important;
  text-decoration:none !important;
}

.ig-badge{
  width:18px !important;
  height:18px !important;
  min-width:18px !important;
  min-height:18px !important;
  max-width:18px !important;
  max-height:18px !important;
  flex:0 0 18px !important;
  border-radius:5px !important;
  display:inline-grid !important;
  place-items:center !important;
  background:linear-gradient(135deg,#feda75 0%,#fa7e1e 28%,#d62976 52%,#962fbf 76%,#4f5bd5 100%) !important;
  overflow:hidden !important;
  vertical-align:middle !important;
}

.ig-badge svg{
  width:14px !important;
  height:14px !important;
  min-width:14px !important;
  max-width:14px !important;
  min-height:14px !important;
  max-height:14px !important;
  display:block !important;
  fill:none !important;
  stroke:#fff !important;
  stroke-width:1.7 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;
}

/* Contact Instagram row */
.instagram-name{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
}

/* WhatsApp: complete white mark inside green circle */
.wa,
.floating-wa{
  background:#25D366 !important;
  color:#fff !important;
}

.wa .wa-mark,
.floating-wa .wa-mark{
  width:27px !important;
  height:27px !important;
  min-width:27px !important;
  max-width:27px !important;
  min-height:27px !important;
  max-height:27px !important;
  display:block !important;
  fill:none !important;
  stroke:#fff !important;
  stroke-width:1.7 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;
}

@media(max-width:650px){
  .ig-badge{
    width:17px !important;
    height:17px !important;
    min-width:17px !important;
    min-height:17px !important;
    max-width:17px !important;
    max-height:17px !important;
    flex-basis:17px !important;
  }
  .ig-badge svg{
    width:13px !important;
    height:13px !important;
    min-width:13px !important;
    max-width:13px !important;
  }
  .wa .wa-mark,
  .floating-wa .wa-mark{
    width:24px !important;
    height:24px !important;
    min-width:24px !important;
    max-width:24px !important;
  }
}

/* MULTILINGUAL SWITCHER */
.language-switcher{display:inline-flex;align-items:center;gap:3px;margin-left:4px;padding:3px;border:1px solid rgba(113,19,34,.16);border-radius:999px;background:rgba(255,255,255,.72);white-space:nowrap}
.language-switcher a{display:inline-flex!important;align-items:center;justify-content:center;min-width:29px;height:27px;padding:0 6px!important;margin:0!important;border-radius:999px;font-family:"DM Sans",sans-serif;font-size:.66rem!important;font-weight:700;letter-spacing:.04em;line-height:1!important}
.language-switcher a:after{display:none!important}
.language-switcher a.lang-active{background:#711322;color:#fff!important}
@media(max-width:1050px){.language-switcher{align-self:flex-start;margin:8px 0 4px}.language-switcher a{padding:0 8px!important}}


/* =========================================================
   FINAL MOBILE/TABLET SOCIAL ICON HOTFIX
   Prevents Instagram SVG from inheriting footer/svg sizing.
   ========================================================= */

.footer-instagram{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  width:auto !important;
  max-width:100% !important;
  line-height:1.2 !important;
}

.footer-instagram > .ig-badge,
.site-footer .footer-instagram > .ig-badge,
footer .footer-instagram > .ig-badge{
  display:inline-grid !important;
  place-items:center !important;

  width:18px !important;
  height:18px !important;

  min-width:18px !important;
  min-height:18px !important;

  max-width:18px !important;
  max-height:18px !important;

  flex:0 0 18px !important;

  padding:0 !important;
  margin:0 !important;

  border:0 !important;
  border-radius:5px !important;

  font-size:0 !important;
  line-height:0 !important;

  overflow:hidden !important;

  background:linear-gradient(
    135deg,
    #feda75 0%,
    #fa7e1e 28%,
    #d62976 52%,
    #962fbf 76%,
    #4f5bd5 100%
  ) !important;
}

.footer-instagram > .ig-badge > svg,
.site-footer .footer-instagram > .ig-badge > svg,
footer .footer-instagram > .ig-badge > svg{
  display:block !important;

  width:13px !important;
  height:13px !important;

  min-width:13px !important;
  min-height:13px !important;

  max-width:13px !important;
  max-height:13px !important;

  margin:0 !important;
  padding:0 !important;

  fill:none !important;
  stroke:#ffffff !important;
  stroke-width:1.7 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;

  transform:none !important;
}

/* The text beside Instagram must stay normal text */
.footer-instagram > span:not(.ig-badge){
  display:inline !important;
  width:auto !important;
  height:auto !important;
  min-width:0 !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  font-size:.84rem !important;
  line-height:1.3 !important;
}

/* Tablet */
@media (min-width:651px) and (max-width:1180px){
  .footer-instagram > .ig-badge,
  .site-footer .footer-instagram > .ig-badge,
  footer .footer-instagram > .ig-badge{
    width:18px !important;
    height:18px !important;
    min-width:18px !important;
    min-height:18px !important;
    max-width:18px !important;
    max-height:18px !important;
    flex-basis:18px !important;
  }

  .footer-instagram > .ig-badge > svg,
  .site-footer .footer-instagram > .ig-badge > svg,
  footer .footer-instagram > .ig-badge > svg{
    width:13px !important;
    height:13px !important;
    min-width:13px !important;
    min-height:13px !important;
    max-width:13px !important;
    max-height:13px !important;
  }
}

/* Mobile */
@media (max-width:650px){
  .footer-instagram{
    gap:7px !important;
  }

  .footer-instagram > .ig-badge,
  .site-footer .footer-instagram > .ig-badge,
  footer .footer-instagram > .ig-badge{
    width:17px !important;
    height:17px !important;
    min-width:17px !important;
    min-height:17px !important;
    max-width:17px !important;
    max-height:17px !important;
    flex-basis:17px !important;
  }

  .footer-instagram > .ig-badge > svg,
  .site-footer .footer-instagram > .ig-badge > svg,
  footer .footer-instagram > .ig-badge > svg{
    width:12px !important;
    height:12px !important;
    min-width:12px !important;
    min-height:12px !important;
    max-width:12px !important;
    max-height:12px !important;
  }

  .footer-instagram > span:not(.ig-badge){
    font-size:.8rem !important;
  }
}


/* =========================================================
   V3 — CIRCULAR FLAG LANGUAGE SWITCHER
   ========================================================= */
.language-switcher{
  display:inline-flex !important;
  align-items:center !important;
  gap:7px !important;
  padding:4px 7px !important;
  border:1px solid rgba(113,19,34,.14) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.82) !important;
  box-shadow:0 4px 14px rgba(13,26,49,.05) !important;
  white-space:nowrap !important;
}

.language-switcher a{
  width:30px !important;
  height:30px !important;
  min-width:30px !important;
  max-width:30px !important;
  padding:0 !important;
  margin:0 !important;
  border-radius:50% !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:hidden !important;
  background:#fff !important;
  border:1px solid rgba(13,26,49,.08) !important;
  box-shadow:0 2px 8px rgba(13,26,49,.08) !important;
  line-height:1 !important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

.language-switcher a::after{
  display:none !important;
}

.language-switcher a:hover{
  transform:translateY(-2px) scale(1.05) !important;
  box-shadow:0 5px 12px rgba(13,26,49,.13) !important;
  border-color:rgba(184,138,50,.45) !important;
}

.language-switcher a.lang-active{
  background:#fff !important;
  border:2px solid var(--wine,#711322) !important;
  box-shadow:0 0 0 2px rgba(184,138,50,.18),0 3px 10px rgba(13,26,49,.10) !important;
}

.flag-emoji{
  display:block !important;
  width:auto !important;
  height:auto !important;
  min-width:0 !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  font-family:"Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif !important;
  font-size:19px !important;
  line-height:1 !important;
  letter-spacing:0 !important;
  transform:translateY(.3px);
}

/* Keep the switcher LTR even on Persian pages */
html[dir="rtl"] .language-switcher{
  direction:ltr !important;
}

/* Tablet */
@media (min-width:651px) and (max-width:1180px){
  .language-switcher{
    gap:6px !important;
    padding:4px 6px !important;
  }
  .language-switcher a{
    width:29px !important;
    height:29px !important;
    min-width:29px !important;
    max-width:29px !important;
  }
  .flag-emoji{
    font-size:18px !important;
  }
}

/* Mobile */
@media (max-width:650px){
  .language-switcher{
    gap:7px !important;
    padding:5px 7px !important;
    margin-top:8px !important;
    margin-bottom:4px !important;
  }
  .language-switcher a{
    width:31px !important;
    height:31px !important;
    min-width:31px !important;
    max-width:31px !important;
  }
  .flag-emoji{
    font-size:19px !important;
  }
}

/* V5: Stories, Blog and expanded navigation */
.footer-site-links{display:flex;flex-wrap:wrap;gap:12px;margin:10px 0 6px}.footer-site-links a{font-size:.8rem;color:#c3cad5}.footer-site-links a:hover{color:#fff}
@media(min-width:1251px){nav,.main-nav{gap:12px!important;font-size:.78rem!important}}
@media(max-width:1250px){header .menu,.site-header .menu-toggle{display:block!important}header nav,.site-header .main-nav{display:none!important;position:absolute!important;top:74px!important;left:0!important;right:0!important;background:var(--paper,#fff)!important;padding:18px 24px!important;flex-direction:column!important;align-items:stretch!important;border-bottom:1px solid var(--line,#eee)!important;z-index:100}header nav.open,.site-header .main-nav.open{display:flex!important}header nav a,.site-header .main-nav a{padding:9px 0!important}}


/* ===== V5 CORRECTED — OFFICIAL SOURCE LINKS ===== */
.official-links{
  margin-top:34px;
  padding:22px 24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 10px 28px rgba(13,26,49,.04);
}
.official-links strong{
  display:block;
  margin-bottom:10px;
  color:var(--dark);
}
.official-links a{
  position:relative;
  display:block;
  padding:10px 12px 10px 30px;
  margin:5px 0;
  border-radius:10px;
  color:var(--wine);
  font-weight:600;
  line-height:1.45;
  word-break:normal;
  transition:background .18s ease,transform .18s ease;
}
.official-links a::before{
  content:"↗";
  position:absolute;
  left:10px;
  top:10px;
  color:var(--gold);
}
.official-links a:hover{
  background:var(--cream);
  transform:translateX(2px);
}
html[dir="rtl"] .official-links a{
  padding:10px 30px 10px 12px;
}
html[dir="rtl"] .official-links a::before{
  left:auto;
  right:10px;
}
html[dir="rtl"] .official-links a:hover{
  transform:translateX(-2px);
}
