/* ═══════════════════════════════════════════════════════════════════
   Umrah2Go Theme — "Horizon" Design System v2.0
   
   Philosophy: Warm Minimal · Expedia-inspired · Travel-first
   Backgrounds: Ivory/Pearl (never black) · Cards: Pure White
   Green: Forest #1A7A3C · Gold: Saffron #F5A623
   Font: Plus Jakarta Sans (headings) + Inter (body)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Arabic:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────────── */
:root {
    /* Core Brand */
    --green:          #1A7A3C;
    --green-dark:     #0F5228;
    --green-mid:      #2A9A52;
    --green-light:    #E8F5EE;
    --green-pale:     #F2FAF5;

    --gold:           #F5A623;
    --gold-dark:      #D4891A;
    --gold-light:     #FEF6E4;

    /* Backgrounds — warm, never black */
    --bg-base:        #FAFAF7;     /* warm ivory — page background     */
    --bg-surface:     #FFFFFF;     /* card surfaces                     */
    --bg-subtle:      #F4F4F1;     /* section alternates                */
    --bg-muted:       #EDEDE9;     /* input backgrounds, tags           */

    /* Ink — dark greens, not blacks */
    --ink-900:        #111C14;     /* headings                          */
    --ink-700:        #2D4030;     /* body text                         */
    --ink-500:        #5C7262;     /* secondary text                    */
    --ink-300:        #9BB0A0;     /* placeholder, disabled             */
    --ink-100:        #D8E4DB;     /* borders, dividers                 */

    /* Status */
    --red:            #D94040;
    --red-light:      #FDF0F0;
    --amber:          #E8960A;
    --amber-light:    #FFF8EA;

    /* Typography */
    --font-head:  'Plus Jakarta Sans', 'Noto Sans Arabic', -apple-system, sans-serif;
    --font-body:  'Inter', 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono:  'JetBrains Mono', 'Courier New', monospace;

    /* Scale */
    --text-xs:    .75rem;
    --text-sm:    .875rem;
    --text-base:  1rem;
    --text-lg:    1.125rem;
    --text-xl:    1.25rem;
    --text-2xl:   1.5rem;
    --text-3xl:   1.875rem;
    --text-4xl:   2.25rem;
    --text-5xl:   3rem;
    --text-6xl:   3.75rem;

    /* Spacing */
    --s-1:  4px;
    --s-2:  8px;
    --s-3:  12px;
    --s-4:  16px;
    --s-5:  20px;
    --s-6:  24px;
    --s-8:  32px;
    --s-10: 40px;
    --s-12: 48px;
    --s-16: 64px;
    --s-20: 80px;
    --s-24: 96px;

    /* Radius */
    --r-xs:  4px;
    --r-sm:  8px;
    --r-md:  12px;
    --r-lg:  16px;
    --r-xl:  24px;
    --r-2xl: 32px;
    --r-full: 9999px;

    /* Shadows — warm-tinted */
    --shadow-xs:   0 1px 3px rgba(17,28,20,.06);
    --shadow-sm:   0 2px 8px rgba(17,28,20,.08);
    --shadow-md:   0 4px 20px rgba(17,28,20,.10);
    --shadow-lg:   0 12px 40px rgba(17,28,20,.12);
    --shadow-xl:   0 24px 64px rgba(17,28,20,.14);
    --shadow-glow: 0 0 0 3px rgba(26,122,60,.18);

    /* Motion */
    --ease-out:   cubic-bezier(.22,.68,0,1.2);
    --ease-in:    cubic-bezier(.4,0,1,1);
    --ease-inout: cubic-bezier(.4,0,.2,1);
    --dur-fast:   140ms;
    --dur-mid:    220ms;
    --dur-slow:   380ms;

    /* Layout */
    --max-w:       1280px;
    --max-w-narrow: 780px;
    --header-h:    68px;

    /* Compat vars for plugin CSS */
    --u2g-green:       var(--green);
    --u2g-green-dark:  var(--green-dark);
    --u2g-green-light: var(--green-light);
    --u2g-gold:        var(--gold);
    --u2g-gold-light:  var(--gold-light);
    --u2g-dark:        var(--ink-900);
    --u2g-mid:         var(--ink-700);
    --u2g-muted:       var(--ink-500);
    --u2g-border:      var(--ink-100);
    --u2g-bg:          var(--bg-subtle);
    --u2g-white:       var(--bg-surface);
    --u2g-red:         var(--red);
    --u2g-dark-mid:    #1e2d22;
    --u2g-shadow-xl:   var(--shadow-xl);
    --font-heading:    var(--font-head);
    --font-display:    var(--font-head);
    --font-body-alt:   var(--font-body);
    --sp-xs: var(--s-1); --sp-sm: var(--s-2); --sp-md: var(--s-4);
    --sp-lg: var(--s-6); --sp-xl: var(--s-10); --sp-2xl: var(--s-16);
    --sp-3xl: var(--s-24);
    --r-sm: var(--r-sm); --r-md: var(--r-md); --r-lg: var(--r-lg);
    --r-full: var(--r-full);
    --shadow-sm: var(--shadow-sm); --shadow-md: var(--shadow-md);
    --shadow-lg: var(--shadow-lg); --shadow-glow: var(--shadow-glow);
    --t-fast: var(--dur-fast) var(--ease-inout);
    --t-normal: var(--dur-mid) var(--ease-inout);
    --t-slow: var(--dur-slow) var(--ease-inout);
    --container: var(--max-w);
    --container-narrow: var(--max-w-narrow);
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--ink-700);
    background: var(--bg-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html[lang="ar"] body, [dir="rtl"] body {
    font-family: 'Noto Sans Arabic', var(--font-body);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--dur-fast) var(--ease-inout); }
a:hover { color: var(--green-dark); }
button { font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────────────────── */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }
.u2g-container {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--s-6);
    width: 100%;
}
.u2g-container--narrow { max-width: var(--max-w-narrow); }
.u2g-container--wide   { max-width: 1440px; }

/* ═══════════════════════════════════════════════════════════════════
   HEADER — Light, minimal, Expedia-inspired
   ═══════════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    height: var(--header-h);
    background: var(--bg-surface);
    border-bottom: 1px solid var(--ink-100);
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--dur-mid) var(--ease-inout),
                border-color var(--dur-mid) var(--ease-inout);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--ink-100);
}
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--green);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 2px 8px rgba(26,122,60,.25);
    transition: transform var(--dur-fast) var(--ease-out);
}
.site-logo:hover .logo-icon { transform: scale(1.06); }
.logo-wordmark {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -.025em;
    line-height: 1;
}
.logo-wordmark span { color: var(--green); }
.logo-tagline {
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-300);
    margin-top: 2px;
    display: block;
}

/* Nav */
.primary-navigation {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: var(--s-1);
    padding: 6px 14px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ink-700);
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: all var(--dur-fast) var(--ease-inout);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover { color: var(--green); background: var(--green-pale); }
.nav-link.active, .nav-link.current-menu-item { color: var(--green); font-weight: 600; }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--green);
    border-radius: var(--r-full);
}

/* Dropdown */
.menu-item-has-children { position: relative; }
.menu-item-has-children:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--bg-surface);
    border: 1px solid var(--ink-100);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--s-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--dur-mid) var(--ease-inout);
    z-index: 100;
    list-style: none;
}
[dir="rtl"] .sub-menu { left: auto; right: 0; }
.sub-menu .nav-link { border-radius: var(--r-sm); width: 100%; }

/* Header right */
.header-actions { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }

.lang-switcher { display: flex; align-items: center; gap: 3px; }
.lang-switcher a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--ink-500);
    border-radius: var(--r-sm);
    border: 1px solid var(--ink-100);
    text-decoration: none;
    transition: all var(--dur-fast) var(--ease-inout);
}
.lang-switcher a:hover,
.lang-switcher a.active {
    color: var(--green);
    background: var(--green-pale);
    border-color: var(--green-light);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    padding: 8px 16px;
    background: #E7F8EE;
    color: #128C5A;
    border-radius: var(--r-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #B8E8CC;
    transition: all var(--dur-fast) var(--ease-inout);
    white-space: nowrap;
}
.btn-whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; transform: translateY(-1px); }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: 9px 20px;
    background: var(--green);
    color: #fff;
    border-radius: var(--r-full);
    font-size: var(--text-sm);
    font-weight: 700;
    font-family: var(--font-head);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-out);
    white-space: nowrap;
    letter-spacing: -.01em;
}
.btn-cta:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,122,60,.3); }

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--ink-100);
    border-radius: var(--r-sm);
    padding: 7px 9px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    color: var(--ink-700);
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: all var(--dur-mid) var(--ease-inout); }
.menu-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ═══════════════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
   ═══════════════════════════════════════════════════════════════════ */
.mobile-nav-overlay {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    width: min(360px, 100vw);
    background: var(--bg-surface);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-inout);
    z-index: 490;
    overflow-y: auto;
    padding: var(--s-6);
    border-left: 1px solid var(--ink-100);
}
.mobile-nav-overlay.is-open { transform: translateX(0); }
[dir="rtl"] .mobile-nav-overlay { right: auto; left: 0; transform: translateX(-100%); border-left: none; border-right: 1px solid var(--ink-100); }
[dir="rtl"] .mobile-nav-overlay.is-open { transform: translateX(0); }

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(17,28,20,.3);
    backdrop-filter: blur(4px);
    z-index: 489;
}
.mobile-nav-backdrop.is-open { display: block; }

.mobile-nav-close {
    position: absolute;
    top: var(--s-4);
    right: var(--s-4);
    background: var(--bg-subtle);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--ink-500);
    transition: background var(--dur-fast);
}
.mobile-nav-close:hover { background: var(--ink-100); }
[dir="rtl"] .mobile-nav-close { right: auto; left: var(--s-4); }

.mobile-nav-menu { list-style: none; margin-top: var(--s-10); }
.mobile-nav-menu li { border-bottom: 1px solid var(--ink-100); }
.mobile-nav-menu a {
    display: block;
    padding: var(--s-4) var(--s-2);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-700);
    text-decoration: none;
    transition: color var(--dur-fast);
}
.mobile-nav-menu a:hover { color: var(--green); }
.mobile-nav-actions { margin-top: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); }

/* ═══════════════════════════════════════════════════════════════════
   GLOBAL BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.u2g-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: 11px 24px;
    border: 1.5px solid transparent;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: -.01em;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--dur-fast) var(--ease-out);
    line-height: 1.3;
}
.u2g-btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* Variants */
.u2g-btn--primary  { background: var(--green); color: #fff; border-color: var(--green); }
.u2g-btn--primary:hover:not(:disabled)  { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,122,60,.28); }

.u2g-btn--gold     { background: var(--gold); color: #fff; border-color: var(--gold); }
.u2g-btn--gold:hover:not(:disabled)     { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-1px); }

.u2g-btn--outline  { background: transparent; color: var(--green); border-color: var(--green); }
.u2g-btn--outline:hover:not(:disabled)  { background: var(--green-pale); }

.u2g-btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.u2g-btn--outline-white:hover:not(:disabled) { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.u2g-btn--ghost    { background: var(--bg-subtle); color: var(--ink-700); border-color: var(--ink-100); }
.u2g-btn--ghost:hover:not(:disabled)    { background: var(--ink-100); color: var(--ink-900); }

.u2g-btn--sm   { padding: 7px 16px; font-size: var(--text-xs); }
.u2g-btn--lg   { padding: 14px 32px; font-size: var(--text-base); }
.u2g-btn--xl   { padding: 16px 40px; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════════════════════════
   HERO — EXPEDIA-STYLE
   Full-bleed image · white floating search card in lower-third
   ═══════════════════════════════════════════════════════════════════ */
.u2g-hero {
    position: relative;
    height: clamp(520px, 72vh, 780px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* BG photo */
.u2g-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform-origin: center;
    will-change: transform;
    transition: transform 1.2s var(--ease-inout);
}
.u2g-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Gradient: very subtle at top, stronger at bottom — keeps image visible */
    background: linear-gradient(
        to bottom,
        rgba(17,28,20,.08) 0%,
        rgba(17,28,20,.12) 40%,
        rgba(17,28,20,.45) 75%,
        rgba(17,28,20,.70) 100%
    );
}

/* Hero text content area */
.u2g-hero-text-area {
    position: relative;
    z-index: 2;
    padding: 0 0 var(--s-8);
}
.u2g-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: 5px 14px 5px 6px;
    background: rgba(245,166,35,.18);
    border: 1px solid rgba(245,166,35,.35);
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    margin-bottom: var(--s-4);
    backdrop-filter: blur(6px);
}
.u2g-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.3); }
}
.u2g-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: var(--s-3);
    text-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.u2g-hero-title em {
    font-style: normal;
    color: var(--gold);
}
.u2g-hero-subtitle {
    font-size: clamp(.9rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,.82);
    line-height: 1.6;
    max-width: 520px;
}

/* ── Floating Search Card — the Expedia signature ─────────────────── */
.u2g-search-card {
    position: relative;
    z-index: 10;
    margin-top: calc(-1 * var(--s-6));
    margin-bottom: var(--s-8);
}
.u2g-search-card-inner {
    background: var(--bg-surface);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--ink-100);
}

/* Tabs inside search card */
.u2g-sc-tabs {
    display: flex;
    gap: 0;
    padding: var(--s-4) var(--s-6) 0;
    border-bottom: 1px solid var(--ink-100);
    background: var(--bg-surface);
}
.u2g-sc-tab {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    padding: var(--s-3) var(--s-5);
    font-family: var(--font-head);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink-500);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--dur-fast) var(--ease-inout);
    white-space: nowrap;
}
.u2g-sc-tab:hover { color: var(--ink-900); }
.u2g-sc-tab.is-active { color: var(--green); border-bottom-color: var(--green); }
.u2g-sc-tab-icon { font-size: 16px; }

.u2g-sc-body { padding: var(--s-5) var(--s-6) var(--s-6); }

/* Search fields grid inside card */
.u2g-sc-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr auto;
    gap: var(--s-3);
    align-items: end;
}
.u2g-sc-field { display: flex; flex-direction: column; gap: var(--s-1); }
.u2g-sc-label {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--ink-500);
    display: flex;
    align-items: center;
    gap: var(--s-1);
}
.u2g-sc-input {
    height: 52px;
    padding: 0 var(--s-4);
    border: 1.5px solid var(--ink-100);
    border-radius: var(--r-md);
    font-size: var(--text-sm);
    font-family: var(--font-body);
    color: var(--ink-900);
    background: var(--bg-base);
    cursor: pointer;
    width: 100%;
    transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
    appearance: none;
}
.u2g-sc-input:focus,
.u2g-sc-input:hover { border-color: var(--green); outline: none; box-shadow: var(--shadow-glow); background: var(--bg-surface); }

/* Guest trigger inside search card */
.u2g-sc-guests-trigger {
    height: 52px;
    padding: 0 var(--s-4);
    border: 1.5px solid var(--ink-100);
    border-radius: var(--r-md);
    font-size: var(--text-sm);
    color: var(--ink-700);
    background: var(--bg-base);
    display: flex;
    align-items: center;
    gap: var(--s-2);
    cursor: pointer;
    transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
    user-select: none;
    white-space: nowrap;
}
.u2g-sc-guests-trigger:hover { border-color: var(--green); box-shadow: var(--shadow-glow); background: var(--bg-surface); }
.u2g-sc-guests-trigger svg { color: var(--ink-300); flex-shrink: 0; }
.u2g-sc-guests-text { flex: 1; overflow: hidden; text-overflow: ellipsis; }

/* Search button */
.u2g-sc-search-btn {
    height: 52px;
    padding: 0 var(--s-8);
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font-head);
    font-size: var(--text-sm);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--s-2);
    transition: all var(--dur-fast) var(--ease-out);
    white-space: nowrap;
    letter-spacing: -.01em;
}
.u2g-sc-search-btn:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,122,60,.3); }
.u2g-sc-search-btn:active { transform: translateY(0); }

/* Quick links under search card */
.u2g-sc-quicklinks {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding: var(--s-3) var(--s-6) var(--s-5);
    border-top: 1px solid var(--ink-100);
    flex-wrap: wrap;
}
.u2g-sc-ql-label { font-size: var(--text-xs); color: var(--ink-300); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.u2g-sc-ql-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--bg-subtle);
    border: 1px solid var(--ink-100);
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--ink-700);
    text-decoration: none;
    transition: all var(--dur-fast);
    white-space: nowrap;
}
.u2g-sc-ql-link:hover { background: var(--green-pale); border-color: var(--green-light); color: var(--green); }

/* ═══════════════════════════════════════════════════════════════════
   SECTION SYSTEM
   ═══════════════════════════════════════════════════════════════════ */
.u2g-section { padding: var(--s-20) 0; }
.u2g-section--sm  { padding: var(--s-12) 0; }
.u2g-section--xs  { padding: var(--s-8)  0; }
.u2g-section--alt { background: var(--bg-subtle); }
.u2g-section--green { background: var(--green); }
.u2g-section--ivory { background: var(--bg-base); }

/* Section header */
.u2g-section-header { margin-bottom: var(--s-10); }
.u2g-section-header--center { text-align: center; }
.u2g-section-header--center .u2g-section-eyebrow { margin-inline: auto; }
.u2g-section-header--space {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--s-6);
    flex-wrap: wrap;
}

.u2g-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: 4px 12px;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
    margin-bottom: var(--s-3);
}

.u2g-section-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: var(--s-3);
}
.u2g-section-subtitle {
    font-size: var(--text-base);
    color: var(--ink-500);
    line-height: 1.7;
    max-width: 540px;
}
.u2g-section-header--center .u2g-section-subtitle { margin-inline: auto; }

/* ═══════════════════════════════════════════════════════════════════
   TRUST BAR — horizontal strip under hero
   ═══════════════════════════════════════════════════════════════════ */
.u2g-trust-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--ink-100);
}
.u2g-trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: var(--s-4) 0;
    flex-wrap: wrap;
}
.u2g-trust-item {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    padding: var(--s-2) var(--s-6);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--ink-500);
    border-right: 1px solid var(--ink-100);
    white-space: nowrap;
}
.u2g-trust-item:last-child { border-right: none; }
.u2g-trust-icon { color: var(--green); font-size: 15px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════════════ */
.u2g-stats-strip {
    background: var(--ink-900);
    padding: var(--s-8) 0;
}
.u2g-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.u2g-stat {
    padding: var(--s-6) var(--s-4);
    border-right: 1px solid rgba(255,255,255,.1);
}
.u2g-stat:last-child { border-right: none; }
.u2g-stat-number {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: var(--s-1);
}
.u2g-stat-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.45);
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURE CARDS — "Why Choose Us" grid
   ═══════════════════════════════════════════════════════════════════ */
.u2g-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}
.u2g-feature-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--ink-100);
    border-radius: var(--r-xl);
    padding: var(--s-8);
    transition: transform var(--dur-mid) var(--ease-out),
                box-shadow var(--dur-mid) var(--ease-out),
                border-color var(--dur-mid);
    position: relative;
    overflow: hidden;
}
.u2g-feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-mid) var(--ease-out);
}
.u2g-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-light); }
.u2g-feature-card:hover::before { transform: scaleX(1); }

.u2g-feature-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--green-pale);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: var(--s-5);
    transition: background var(--dur-mid);
}
.u2g-feature-card:hover .u2g-feature-icon-wrap { background: var(--green-light); }
.u2g-feature-title {
    font-family: var(--font-head);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--s-2);
    letter-spacing: -.01em;
}
.u2g-feature-desc { font-size: var(--text-sm); color: var(--ink-500); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   DESTINATION CARDS — Expedia-style photo grid
   ═══════════════════════════════════════════════════════════════════ */
.u2g-dest-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 280px 220px;
    gap: var(--s-4);
}
.u2g-dest-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    text-decoration: none;
    display: block;
    background: var(--bg-muted);
}
.u2g-dest-card:nth-child(1) { grid-row: 1 / 3; }
.u2g-dest-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s var(--ease-inout);
    background-color: var(--ink-900);
}
.u2g-dest-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,28,20,.75) 0%, rgba(17,28,20,.05) 60%);
    z-index: 1;
    transition: opacity var(--dur-mid);
}
.u2g-dest-card:hover .u2g-dest-card-img { transform: scale(1.04); }
.u2g-dest-card:hover::before { opacity: .8; }
.u2g-dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--s-6);
    z-index: 2;
}
.u2g-dest-icon { font-size: 1.5rem; margin-bottom: var(--s-1); display: block; }
.u2g-dest-name {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.025em;
    line-height: 1.1;
    margin-bottom: var(--s-1);
}
.u2g-dest-sub { font-size: var(--text-xs); color: rgba(255,255,255,.75); margin-bottom: var(--s-3); }
.u2g-dest-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: 700;
    color: #fff;
    transition: background var(--dur-fast);
}
.u2g-dest-card:hover .u2g-dest-badge { background: var(--green); border-color: var(--green); }

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.u2g-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}
.u2g-testimonial {
    background: var(--bg-surface);
    border: 1.5px solid var(--ink-100);
    border-radius: var(--r-xl);
    padding: var(--s-8);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--dur-mid), transform var(--dur-mid);
}
.u2g-testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.u2g-testimonial-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; margin-bottom: var(--s-4); }
.u2g-testimonial-text {
    font-size: var(--text-sm);
    color: var(--ink-700);
    line-height: 1.75;
    margin: 0 0 var(--s-6);
    flex: 1;
    font-style: italic;
}
.u2g-testimonial-author { display: flex; align-items: center; gap: var(--s-3); margin-top: auto; }
.u2g-testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    font-size: .9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-head);
    border: 2px solid var(--green-light);
    overflow: hidden;
}
.u2g-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.u2g-testimonial-name { font-weight: 700; font-size: var(--text-sm); color: var(--ink-900); line-height: 1.2; }
.u2g-testimonial-loc  { font-size: var(--text-xs); color: var(--ink-300); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════════ */
.u2g-cta-banner {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: var(--r-2xl);
    padding: var(--s-16) var(--s-12);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 var(--s-6);
}
.u2g-cta-banner::before {
    content: '🕋';
    position: absolute;
    font-size: 240px;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .06;
    pointer-events: none;
    line-height: 1;
}
.u2g-cta-banner__eyebrow { color: rgba(255,255,255,.65); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--s-3); }
.u2g-cta-banner__title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: var(--s-3);
}
.u2g-cta-banner__sub { font-size: var(--text-base); color: rgba(255,255,255,.8); margin-bottom: var(--s-8); max-width: 500px; margin-inline: auto; margin-bottom: var(--s-8); }
.u2g-cta-banner__actions { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════
   PAGE HERO (non-Elementor pages)
   ═══════════════════════════════════════════════════════════════════ */
.page-hero {
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--ink-100);
    padding: var(--s-12) 0 var(--s-10);
}
.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin: var(--s-3) 0 var(--s-2);
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    flex-wrap: wrap;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--ink-300);
}
.breadcrumbs a { color: var(--ink-500); }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs .sep { color: var(--ink-100); }
[aria-current="page"] { color: var(--green); }

/* ═══════════════════════════════════════════════════════════════════
   ENTRY CONTENT (blog/pages)
   ═══════════════════════════════════════════════════════════════════ */
.entry-content { padding: var(--s-16) 0; }
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5 {
    font-family: var(--font-head);
    color: var(--ink-900);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: var(--s-8) 0 var(--s-4);
}
.entry-content h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.entry-content h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
.entry-content p  { margin: 0 0 var(--s-5); color: var(--ink-700); line-height: 1.75; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin: 0 0 var(--s-5); color: var(--ink-700); }
[dir="rtl"] .entry-content ul, [dir="rtl"] .entry-content ol { padding-left: 0; padding-right: 1.5rem; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER — Clean, warm
   ═══════════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--ink-900);
    color: rgba(255,255,255,.65);
}
.footer-top {
    padding: var(--s-16) 0 var(--s-12);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s-12);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-wordmark { color: #fff; font-size: 1.4rem; }
.footer-brand .logo-wordmark span { color: var(--gold); }
.footer-brand-desc { font-size: var(--text-sm); line-height: 1.7; margin-top: var(--s-4); color: rgba(255,255,255,.5); }
.footer-contact { margin-top: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); }
.footer-contact-item { display: flex; align-items: center; gap: var(--s-2); font-size: var(--text-xs); color: rgba(255,255,255,.5); }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; font-size: 13px; }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: #fff; }

.footer-col-title {
    font-family: var(--font-head);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.35);
    margin-bottom: var(--s-5);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col ul a { font-size: var(--text-sm); color: rgba(255,255,255,.55); text-decoration: none; transition: color var(--dur-fast); }
.footer-col ul a:hover { color: #fff; }

.footer-social { display: flex; gap: var(--s-2); margin-top: var(--s-5); }
.footer-social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    text-decoration: none;
    transition: all var(--dur-fast);
}
.footer-social-link:hover { background: var(--green); color: #fff; border-color: var(--green); }

.footer-bottom {
    padding: var(--s-5) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    flex-wrap: wrap;
    font-size: var(--text-xs);
    color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-badges { display: flex; gap: var(--s-2); }
.footer-badge {
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-full);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.35);
}

/* ═══════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════════════ */
.u2g-wa-float {
    position: fixed;
    bottom: var(--s-6);
    right: var(--s-6);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--s-2);
}
[dir="rtl"] .u2g-wa-float { right: auto; left: var(--s-6); align-items: flex-start; }
.u2g-wa-float__label {
    background: var(--ink-900);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: 600;
    opacity: 0;
    transform: translateY(4px);
    transition: all var(--dur-mid);
    pointer-events: none;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}
.u2g-wa-float:hover .u2g-wa-float__label { opacity: 1; transform: translateY(0); }
.u2g-wa-float__btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.1);
    transition: all var(--dur-mid) var(--ease-out);
    position: relative;
}
.u2g-wa-float__btn:hover { transform: scale(1.08); background: #1DAA54; color: #fff; }
.u2g-wa-float__pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2.5s ease infinite;
    pointer-events: none;
}
@keyframes waPulse {
    0%   { opacity: .7; transform: scale(.9); }
    70%  { opacity: 0; transform: scale(1.45); }
    100% { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG POST CARD
   ═══════════════════════════════════════════════════════════════════ */
.u2g-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--s-6); }
.u2g-post-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--ink-100);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: transform var(--dur-mid), box-shadow var(--dur-mid);
    display: flex;
    flex-direction: column;
}
.u2g-post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.u2g-post-card__img-wrap { aspect-ratio: 16/9; overflow: hidden; display: block; }
.u2g-post-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-inout); }
.u2g-post-card:hover .u2g-post-card__img-wrap img { transform: scale(1.04); }
.u2g-post-card__body { padding: var(--s-6); flex: 1; display: flex; flex-direction: column; }
.u2g-post-card .cat-links a { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--green); }
.u2g-post-card__title { font-family: var(--font-head); font-size: var(--text-lg); font-weight: 700; margin: var(--s-2) 0; line-height: 1.3; color: var(--ink-900); letter-spacing: -.02em; }
.u2g-post-card__title a { color: inherit; }
.u2g-post-card__title a:hover { color: var(--green); }
.u2g-post-card__excerpt { font-size: var(--text-sm); color: var(--ink-500); line-height: 1.65; flex: 1; }
.u2g-post-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--ink-100); font-size: var(--text-xs); color: var(--ink-300); }

/* ═══════════════════════════════════════════════════════════════════
   SEARCH FORM (sidebar/404)
   ═══════════════════════════════════════════════════════════════════ */
.search-form { display: flex; gap: var(--s-2); max-width: 480px; margin-inline: auto; }
.search-field { flex: 1; padding: 10px 16px; border: 1.5px solid var(--ink-100); border-radius: var(--r-full); font-size: var(--text-sm); font-family: var(--font-body); background: var(--bg-surface); color: var(--ink-900); }
.search-field:focus { border-color: var(--green); outline: none; box-shadow: var(--shadow-glow); }
.search-submit { padding: 10px 22px; background: var(--green); color: #fff; border: none; border-radius: var(--r-full); font-size: var(--text-sm); font-weight: 700; cursor: pointer; font-family: var(--font-head); transition: background var(--dur-fast); }
.search-submit:hover { background: var(--green-dark); }

/* ═══════════════════════════════════════════════════════════════════
   PLUGIN INTEGRATION — Patch plugin CSS to match new design
   ═══════════════════════════════════════════════════════════════════ */

/* Hotel archive overrides */
.u2g-archive-hd { background: linear-gradient(135deg, var(--ink-900) 0%, #1e3326 100%); }
.u2g-hcard { border-radius: var(--r-xl); font-family: var(--font-body); border-color: var(--ink-100); }
.u2g-hcard:hover { border-color: var(--green-light); }
.u2g-hcard-name { font-family: var(--font-head); font-weight: 700; letter-spacing: -.02em; }
.u2g-hcard-price strong { color: var(--green); }
.u2g-hcard-btn--primary { background: var(--green); font-family: var(--font-head); border-radius: var(--r-full); border-color: var(--green); }
.u2g-hcard-btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.u2g-hcard-btn--ghost { border-color: var(--ink-100); border-radius: var(--r-full); }

/* Cart wizard */
.u2g-cart-builder, .u2g-cb-search-bar, .u2g-cb-hotel-card,
.u2g-cb-cart, .u2g-cb-room-card { font-family: var(--font-body); }
.u2g-btn--primary  { font-family: var(--font-head); }
.u2g-cb-hotel-name { font-family: var(--font-head); font-weight: 700; }
.u2g-cb-search-bar { background: var(--bg-surface); border-color: var(--ink-100); }
.u2g-cb-search-submit { background: var(--green); border-radius: var(--r-full); font-family: var(--font-head); }
.u2g-cb-search-submit:hover { background: var(--green-dark); }

/* Guest selector */
.u2g-gs-popover { border-radius: var(--r-xl); border-color: var(--ink-100); box-shadow: var(--shadow-xl); }
.u2g-gs-done    { background: var(--green); font-family: var(--font-head); border-radius: var(--r-md); }
.u2g-gs-counter-btn { color: var(--green); }

/* Flatpickr green theme */
.flatpickr-calendar { border-radius: var(--r-xl) !important; box-shadow: var(--shadow-xl) !important; border-color: var(--ink-100) !important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background: var(--green) !important; border-color: var(--green) !important; }
.flatpickr-day.inRange { background: var(--green-pale) !important; border-color: var(--green-pale) !important; }
.flatpickr-months .flatpickr-month { background: var(--green) !important; }
.flatpickr-current-month, .flatpickr-current-month .cur-month { color: #fff !important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: rgba(255,255,255,.9) !important; }

/* ═══════════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════════ */
.u2g-hidden { display: none !important; }
.u2g-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.u2g-text-center { text-align: center; }
.alignwide  { max-width: 1100px; margin-inline: auto; }
.alignfull  { width: 100vw; margin-left: calc(50% - 50vw); }
.alignleft  { float: left; margin-right: var(--s-5); }
.alignright { float: right; margin-left: var(--s-5); }
[dir="rtl"] .alignleft  { float: right; margin-right: 0; margin-left: var(--s-5); }
[dir="rtl"] .alignright { float: left;  margin-left: 0; margin-right: var(--s-5); }

/* ═══════════════════════════════════════════════════════════════════
   ANIMATION UTILITIES
   ═══════════════════════════════════════════════════════════════════ */
@keyframes u2g-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
}
.u2g-animate-up { animation: u2g-fade-up .6s var(--ease-out) both; }
.u2g-animate-up--d1 { animation-delay: .08s; }
.u2g-animate-up--d2 { animation-delay: .16s; }
.u2g-animate-up--d3 { animation-delay: .24s; }
.u2g-animate-up--d4 { animation-delay: .32s; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s-10); }
    .u2g-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .u2g-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: var(--s-5); }
    .u2g-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
    .u2g-stat:last-child, .u2g-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
    .u2g-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    :root { --header-h: 60px; }
    .primary-navigation { display: none; }
    .menu-toggle { display: flex; }
    .header-actions .btn-whatsapp { display: none; }
    .u2g-dest-grid { grid-template-columns: 1fr; grid-template-rows: repeat(2, 260px); }
    .u2g-dest-card:nth-child(1) { grid-row: auto; }
    .u2g-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .u2g-sc-fields { grid-template-columns: 1fr 1fr; }
    .u2g-sc-search-btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
}

@media (max-width: 680px) {
    .u2g-features-grid  { grid-template-columns: 1fr; }
    .u2g-testimonials-grid { grid-template-columns: 1fr; }
    .footer-top         { grid-template-columns: 1fr; gap: var(--s-8); }
    .footer-bottom      { flex-direction: column; text-align: center; }
    .u2g-trust-item     { border-right: none; padding: var(--s-2) var(--s-4); }
    .u2g-trust-bar-inner { gap: 0; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: var(--s-3) 0; }
    .u2g-sc-fields { grid-template-columns: 1fr; }
    .u2g-cta-banner { margin: 0; border-radius: 0; padding: var(--s-12) var(--s-6); }
    .u2g-cta-banner::before { font-size: 140px; right: -20px; }
    .u2g-stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .u2g-hero { height: clamp(440px, 75vh, 620px); }
    .u2g-hero-title { font-size: 1.9rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   RTL — Arabic / Farsi / Urdu
   ═══════════════════════════════════════════════════════════════════ */
[dir="rtl"] body { font-family: 'Noto Sans Arabic', var(--font-body); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { letter-spacing: 0; font-family: 'Noto Sans Arabic', var(--font-head); }
[dir="rtl"] p, [dir="rtl"] li { line-height: 1.9; }
[dir="rtl"] .header-inner, [dir="rtl"] .header-actions { flex-direction: row-reverse; }
[dir="rtl"] .primary-navigation { flex-direction: row-reverse; }
[dir="rtl"] .logo-wordmark { direction: ltr; }
[dir="rtl"] .mobile-nav-overlay { right: auto; left: 0; border-left: none; border-right: 1px solid var(--ink-100); transform: translateX(-100%); }
[dir="rtl"] .mobile-nav-overlay.is-open { transform: translateX(0); }
[dir="rtl"] .u2g-hero-text-area { direction: rtl; text-align: right; }
[dir="rtl"] .u2g-hero-eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .u2g-sc-tabs { flex-direction: row-reverse; }
[dir="rtl"] .u2g-sc-fields { direction: rtl; }
[dir="rtl"] .u2g-sc-quicklinks { flex-direction: row-reverse; }
[dir="rtl"] .u2g-section-header { text-align: right; }
[dir="rtl"] .u2g-section-header--center { text-align: center; }
[dir="rtl"] .u2g-section-header--space { flex-direction: row-reverse; }
[dir="rtl"] .u2g-feature-card { text-align: right; direction: rtl; }
[dir="rtl"] .u2g-feature-card::before { transform-origin: right; }
[dir="rtl"] .u2g-dest-info { text-align: right; }
[dir="rtl"] .u2g-testimonial { text-align: right; direction: rtl; }
[dir="rtl"] .u2g-testimonial-author { flex-direction: row-reverse; }
[dir="rtl"] .footer-top { direction: rtl; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .footer-social { direction: ltr; }
[dir="rtl"] .footer-col ul { text-align: right; }
[dir="rtl"] .u2g-trust-bar-inner { flex-direction: row-reverse; }
[dir="rtl"] .u2g-trust-item { border-right: none; border-left: 1px solid var(--ink-100); }
[dir="rtl"] .u2g-trust-item:last-child { border-left: none; }
[dir="rtl"] .u2g-stat { border-right: none; border-left: 1px solid rgba(255,255,255,.1); }
[dir="rtl"] .u2g-stat:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.1); border-right: none; }
[dir="rtl"] .u2g-post-card__body { text-align: right; direction: rtl; }
[dir="rtl"] .u2g-post-card__meta { flex-direction: row-reverse; }
[dir="rtl"] .lang-switcher { flex-direction: row-reverse; }
[dir="rtl"] .u2g-cta-banner::before { right: auto; left: -30px; }

/* ── Package split section responsive ────────────────────────────── */
@media (max-width: 960px) {
    /* Force stack: features text on top, package card below */
    .u2g-section .u2g-container > div[style*="420px"],
    .u2g-section .u2g-container > div[style*="grid-template-columns:1fr 420px"] {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--s-10) !important;
    }
}

/* ── Lang switcher footer variant ────────────────────────────────── */
.lang-switcher--footer .lang-link {
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: all var(--dur-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.lang-switcher--footer .lang-link:hover,
.lang-switcher--footer .lang-link.active { color: #fff; border-color: rgba(255,255,255,.3); }

/* ── 404 and single page specifics ──────────────────────────────── */
.template-404-inner { text-align: center; padding: var(--s-24) var(--s-6); max-width: 560px; margin: 0 auto; }
.template-404-icon { font-size: 80px; margin-bottom: var(--s-6); opacity: .6; }
.template-404-title { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--ink-900); letter-spacing: -.03em; margin-bottom: var(--s-4); }
.template-404-text  { font-size: var(--text-lg); color: var(--ink-500); margin-bottom: var(--s-8); }
.template-404-actions { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }
