/* ====================================
   SARAH IBRAHIM — DAHAB STAYS
   style.css
==================================== */

:root {
  --bg:            #fdf3ec;   /* soft blush sand / beach cream */
  --bg-alt:        #f8e9de;   
  --card:          #ffffff;
  --card-2:        #fffaf5;
  --line:          #00000012;
  --line-bright:   #7fb8d977;

  --ink:           #3a2e26;   
  --ink-soft:      #6b5c4e;
  --ink-faint:     #9c8b7a;

  --accent:        #eaa084;   
  --accent-bright: #dd8968;   
  --accent-sea:       #7fbfdd;   
  --accent-sea-bright:#5fa3c9;
  --accent-green:       #93cba0;   
  --accent-green-bright:#72ab80;

  /* Dusk band — Features Section */
  --dusk:          #3c6470;
  --dusk-deep:      #2b4a54;
  --dusk-line:      #ffffff26;
  --dusk-ink:       #faf1e6;
  --dusk-ink-soft:  #d9e6e6;

  /* Reviews band */
  --tint-reviews:      #f7efe7;
  --tint-reviews-line: #dfd0bf;
  --accent-mauve:        #a97ea3;
  --accent-mauve-bright: #90638c;

  /* NEW: Guest Relations pastel light yellow */
  --tint-yellow:       #fff8e7;
  --tint-yellow-line:  #e6d8b8;

  /* NEW: Contact / Footer dark pastel sage olive */
  --sage-olive:        #8da58d;
  --sage-olive-line:   #ffffff22;
  --sage-ink:          #f7f5ef;
  --sage-ink-soft:     #d2ded4;

  /* Buttons */
  --btn-from:  #7fbfdd;
  --btn-mid:   #6bb39a;
  --btn-to:    #5a9d6e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.1; text-wrap: balance; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

/* Arabic mode */
body.arabic {
  direction: rtl;
  font-family: 'Tajawal', 'Inter', sans-serif;
}
body.arabic .banner-inner,
body.arabic .feature-body,
body.arabic .footer-link-left,
body.arabic .review-person {
  direction: rtl;
}
/* Brand name & credit lines stay LTR/English even in Arabic mode */
body.arabic .logo-title,
body.arabic .footer-note,
body.arabic .footer-avail {
  direction: ltr;
}

/* ====================================
   HEADER & NAV
==================================== */

.header {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  transition: top .35s ease;
}
.nav {
    width: min(94%, 1160px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 34px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        #7fbfdd 0%,
        #cfe6d8 30%,
        #fbf4ec 50%,
        #d3e8d6 70%,
        #a8d4af 100%
    );
    box-shadow: 0 20px 45px rgba(0,0,0,.10);
    transition: background .35s ease, box-shadow .35s ease;
}
.header.is-scrolled { top: 12px; }
.header.is-scrolled .nav {
    background: rgba(255,250,245,.95);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}
.logo { display: flex; flex-direction: column; min-width: 0; color: #2e3f42; }
.logo-title {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 500;
    font-style: normal;
    color: #2f6b46;
    letter-spacing: -.02em;
    transition: .3s;
}
.logo-title:hover { color: #1c5473; }
.logo-subtitle {
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: .08em;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}
.nav-links a { font-size: 16px; font-weight: 700; color: #2e5c66; }
.nav-links a:hover { color: var(--accent-sea-bright); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,.12);
  transition: transform .2s, box-shadow .2s;
}
.nav-social img { width: 16px; height: 16px; object-fit: contain; }
.nav-social a:hover { transform: translateY(-2px); box-shadow: 0 5px 12px rgba(0,0,0,.18); }

#languageToggle {
    background: white;
    color: #5fa3c9;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
}
#languageToggle:hover { background: #2e3f42; color: #fff; }

#menuButton {
  display: none;
  border: none;
  background: transparent;
  font-size: 22px;
  color: #2e3f42;
  padding: 4px 8px;
}
.mobile-menu { display: none; list-style: none; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: #2e3f42;
  padding: 6px 0;
  display: block;
}
.mobile-menu-icon {
  border-top: 1px solid #00000012;
  margin-top: 6px;
  padding-top: 10px;
}
.mobile-menu-icon:nth-of-type(5) { border-top: 1px solid #00000012; margin-top: 6px; padding-top: 10px; }
.mobile-menu-icon a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu-icon .footer-icon-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-menu-icon .footer-icon-mini img { width: 16px; height: 16px; object-fit: contain; }

/* ====================================
   HERO & BUTTONS
==================================== */

.hero {
    max-width: 1160px;
    margin: 0 auto;
    padding: 150px 24px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
}
.hero-text { max-width: 650px; }
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--accent-sea-bright);
  margin-bottom: 18px;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(56px, 7vw, 82px);
  font-style: normal;
  font-weight: 500;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--accent-green-bright) 15%, var(--accent-sea-bright) 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 32px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.primary-button, .secondary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, border-color .25s, color .25s;
}

.primary-button {
  background: var(--accent-sea-bright);
  color: #fbfff9;
  box-shadow:
    inset 0 1px 0 #ffffff66,
    inset 0 -10px 18px -8px #2d5c4c88,
    0 16px 32px -14px #2d6f9166;
}
.primary-button::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px #ffffff3a inset;
  pointer-events: none;
}
.primary-button:hover {
  transform: translateY(-3px);
  background: var(--accent-sea);
  box-shadow:
    inset 0 1px 0 #ffffff77,
    inset 0 -10px 18px -8px #2d5c4caa,
    0 20px 38px -14px #2d6f9188;
}
.primary-button:active { transform: translateY(-1px); }

.secondary-button {
  background: transparent;
  color: var(--accent-green-bright);
  border-color: var(--accent-green-bright);
}
.secondary-button:hover {
  background: linear-gradient(135deg, var(--accent-sea-bright), var(--accent-green-bright));
  color: #fbfff9;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px #2d5c4c55;
}
.secondary-button:active { transform: translateY(-1px); }

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 430px;
    justify-self: end;
    aspect-ratio: 4/5;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px -20px rgba(0,0,0,.14);
}
.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, #2b4a54e6 0%, transparent 45%);
}
.hero-visual-tag {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 1;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: #fdf6ec;
  letter-spacing: .02em;
  text-align: center;
}

.horizon {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 30px;
}
.horizon svg { width: 100%; height: 46px; display: block; }

/* ====================================
   PANORAMA SECTION
==================================== */
.panorama{
    position:relative;
    width:100%;
    height:320px;
    overflow:hidden;
    margin-bottom:40px;
}

.panorama img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    display:block;
}
.panorama-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  background: rgba(43, 74, 84, 0.45);
}
.panorama-caption {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .02em;
  color: #fbe8db;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* ====================================
   SECTION BANNERS & WRAPPERS
==================================== */

.section-banner {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* 1. GUEST RELATIONS (SERVICES) BANNER & WRAPPER — Light Pastel Yellow */
.section-banner.yellow-tint {
  background: var(--tint-yellow);
  border-top: 1px solid var(--tint-yellow-line);
  border-bottom: 1px solid var(--tint-yellow-line);
}
.section.wrap-yellow {
  max-width: none;
  background: var(--tint-yellow);
}

/* 2. FEATURES BANNER & WRAPPER — Dark Dusk Teal */
.section-banner.alt {
  background: var(--dusk);
  border-top: 1px solid var(--dusk-line);
  border-bottom: 1px solid var(--dusk-line);
}
.section-banner.alt .banner-num { color: #b8e0c1; }
.section-banner.alt .banner-title { color: var(--dusk-ink); }
.section-banner.alt .banner-sub { color: var(--dusk-ink-soft); }

.section.wrap-alt {
  max-width: none;
  background: var(--dusk);
  padding: 32px 0 56px;
}

/* 3. REVIEWS BANNER & WRAPPER — Pastel Lavender Mauve */
.section-banner.tint-green {
  background: var(--tint-reviews);
  border-top: 1px solid var(--tint-reviews-line);
  border-bottom: 1px solid var(--tint-reviews-line);
}
.section-banner.tint-green .banner-num { color: var(--accent-mauve-bright); }

.section.wrap-green {
  max-width: none;
  background: var(--tint-reviews);
}

/* Shared Inner Layouts */
.banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.banner-num { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--accent-green-bright); letter-spacing: .15em; }
.banner-title { font-size: clamp(24px, 3.2vw, 36px); font-style: normal; font-weight: 500; }
.banner-sub { font-size: 13px; color: var(--ink-faint); margin-left: auto; }

.section { max-width: 1160px; margin: 0 auto; padding: 56px 24px; }
.section.wrap-alt > *,
.section.wrap-yellow > *,
.section.wrap-green > * {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.section.wrap-alt .features-intro { color: var(--dusk-ink-soft); }

/* ====================================
   SERVICE CARDS (Guest Relations)
==================================== */

.service-grid{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    -ms-overflow-style:none;
    padding:0 0 10px;
}
.service-grid::-webkit-scrollbar{
    display:none;
}
.service-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--tint-yellow-line);
  border-radius: 18px;
  padding: 30px 26px;
  transition: border-color .25s, transform .25s;
}
.service-card:hover { border-color: var(--accent-bright); transform: translateY(-4px); }
.service-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #7fbfdd2a;
  color: var(--accent-sea-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon.sea { background: #7fbfdd2a; color: var(--accent-sea-bright); }
.service-icon.green { background: #93cba02a; color: var(--accent-green-bright); }
.service-icon svg { width: 20px; height: 20px; }
.service-card h3{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:'Inter',sans-serif;
    font-size:17px;
    font-weight:700;
    margin-bottom:10px;
}.service-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
.service-card .service-icon{
    display:inline-flex;
    margin:0 10px 0 0;
}
/* ====================================
   FEATURES CARDS
==================================== */

.features-intro {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 28px;
  padding: 0 24px;
}
.feature-grid{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    -ms-overflow-style:none;
    padding:0 24px 10px;
}

.feature-grid::-webkit-scrollbar{
    display:none;
}.feature-card{
    flex:0 0 260px;
    scroll-snap-align:start;
    background:#46707c;
    border:1px solid var(--dusk-line);
    border-radius:24px;
    overflow:hidden;
    transition:border-color .25s, transform .25s;
}
.feature-card:hover { border-color: #ffffff55; transform: translateY(-4px); }
.feature-photo{
    aspect-ratio:5/3;
    overflow:hidden;
    background:#24404a;
}.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-body { padding: 18px 22px 22px; }
.feature-body h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--dusk-ink); }
.feature-body p { font-size: 13.5px; color: var(--dusk-ink-soft); line-height: 1.6; }

/* ====================================
   REVIEWS & CAROUSEL
==================================== */

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  cursor: grab;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  touch-action: pan-y;
}
.carousel:active { cursor: grabbing; }
.carousel::-webkit-scrollbar { display: none; }
.carousel-hint {
  font-family: 'Space Mono', monospace;
  font-size: clamp(15px, 1.9vw, 19px);
  font-weight: 700;
color:#5f6f62;  text-align: center;
  margin: 30px auto 0;
  letter-spacing: .03em;
  max-width: 640px;
}
.carousel-hint a {
    color:#5f7f69;
    border-bottom:3px solid #5f7f69;
    border-radius: 2px;
  padding-bottom: 3px;
  font-weight: 700;
  transition: color .2s, border-color .2s, transform .2s;
  display: inline-block;
}
.carousel-hint a:hover {
  color: var(--accent-green-bright);
  border-color: var(--accent-green-bright);
  transform: translateY(-1px);
}

.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--tint-reviews);
  border: 1px solid var(--tint-reviews-line);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  user-select: none;
}
.review-stars { color: var(--accent-mauve-bright); font-size: 14px; letter-spacing: 2px; }
.review-quote { font-size: 15.5px; color: var(--ink-soft); line-height: 1.75; }
.review-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-sea), var(--accent-green));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 600; color: #2b4a54;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-origin { font-size: 12px; color: var(--ink-faint); }

.review-card-screenshot {
  flex: 0 0 420px;
  min-height: 250px;
  padding: 0;
  overflow: hidden;
  background: var(--tint-reviews);
  border: 1px solid var(--tint-reviews-line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

/* ====================================
   CONTACT & FOOTER
==================================== */

footer{
    background:#8da58d;
    color:#fff;
    padding:70px 24px 28px;
}
.footer-inner{
    max-width:1160px;
    margin:0 auto;
}

/* LEFT */

.footer-icon i{
    font-size:22px;
}
.footer-host{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:22px;
    align-items:center;
    max-width:1000px;
    margin:0 auto;
}
body.arabic .footer-host {
    direction: ltr;
}
body.arabic .footer-host-info {
    direction: rtl;
    text-align: right;
}
.footer-avatar{
    width:220px;
    aspect-ratio:1/1;
    object-fit:cover;
    object-position:center top;
    background:#fff;
    border-radius:12px;
    border:3px solid rgba(255,255,255,.18);
    flex-shrink:0;
}

.footer-host-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    flex:1;
    padding-top:10px;
}

.footer-host-top{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:10px;
}

.footer-host-label{
    font-family:'Fraunces',serif;
    font-size:30px;
    color:#fff;
}

.footer-host-info h2{
    color:#1c3a52;
    font-size:clamp(42px,5vw,58px);
    line-height:1.05;
    margin-bottom:18px;
}

.footer-host-info h2 em{
    font-style:normal;
    color:inherit;
}

.footer-host-info p{
    color:#edf5ef;
    line-height:1.7;
    margin-bottom:26px;
}

.footer-form-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

footer .primary-button{
    background:#e6d3bc;
    color:#496251;
    border:none;
    box-shadow:none;
}

footer .primary-button:hover{
    background:#dcc5aa;
    transform:translateY(-2px);
}

footer .secondary-button{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,.75);
}

footer .secondary-button:hover{
    background:#fff;
    color:#496251;
}

/* SOCIAL ICONS — next to host name, enlarged */
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}
.footer-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.footer-links a:hover .footer-icon {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
}

.footer-link-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-handle{
    font-family:'Space Mono',monospace;
    font-size:14px;
    color:#edf5ef;
}

/* BOTTOM */

.footer-bottom{
    max-width:1160px;
    margin:46px auto 0;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.18);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.footer-note{
    font-family:'Space Mono',monospace;
    font-size:11px;
    color:#dbe8dc;
}

.footer-avail{
    font-family:'Space Mono',monospace;
    font-size:11px;
}

.footer-avail a{
    color:#dbe8dc;
    transition:.2s;
}

.footer-avail a:hover{
    color:#fff;
}


/* ====================================
   FORM MODAL & RESPONSIVE
==================================== */

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.form-modal.open { display: flex; }
.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: #2b4a54cc;
  backdrop-filter: blur(4px);
}
.form-modal-panel {
  position: relative;
  width: min(94%, 640px);
  height: min(86vh, 760px);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 90px -20px #00000040;
}
.form-modal-panel iframe { width: 100%; height: 100%; border: 0; display: block; }
.form-modal-close {
  position: absolute;
  top: 10px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 20px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  #menuButton { display: block; }
}

@media (max-width: 760px) {
  /* Header: drop the subtitle line and tighten the pill so it can't
     grow tall enough to sit over the hero name on load */
  .logo-subtitle { display: none; }
  .nav { padding: 16px 20px; }
  .header { top: 14px; }

  .hero { grid-template-columns: 1fr; padding: 150px 20px 44px; gap: 60px; }
  .hero-visual { max-width: 390px; margin: 0 auto; }
  .section { padding: 36px 20px; }
  .section-banner { padding: 18px 20px; }
  .banner-sub { display: none; }
  .review-card { flex-basis: 82vw; }
  .review-card-screenshot { flex-basis: 88vw; }
  .carousel-hint { font-size: 14px; padding: 0 12px; }

  /* Footer: stack avatar + text, center everything, shrink headings */
  .footer-host {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
    justify-items: center;
  }
  .footer-avatar {
    width: 150px;
    border-radius: 50%;
  }
  .footer-host-info {
    align-items: center;
    text-align: center;
    padding-top: 0;
    width: 100%;
  }
  .footer-host-top {
    flex-direction: column;
    gap: 14px;
  }
  .footer-host-info h2 {
    font-size: clamp(32px, 8vw, 44px);
  }
  .footer-form-buttons {
    justify-content: center;
    width: 100%;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .header, .nav, .primary-button, .secondary-button, .service-card, .feature-card, .footer-links a {
    transition: none;
  }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-sea-bright);
  outline-offset: 2px;
}

.service-card,
.feature-card,
.review-card,
.review-card-screenshot{
    border-radius:24px;
}

.service-card:nth-child(1){
    background:#FFFDF4;
}

.service-card:nth-child(2){
    background:#F3FBF8;
}

.service-card:nth-child(3){
    background:#FFF6EF;
}

.service-card:nth-child(4){
    background:#F4F7FF;
}

.service-card h3 .service-icon{
    margin:0;
    width:36px;
    height:36px;
    flex-shrink:0;
}