:root {
    --primary: #153f3b;
    --primary-dark: #0d2f2c;
    --primary-soft: #e6efed;
    --accent: #c99243;
    --accent-dark: #ad7426;
    --accent-soft: #f5ead8;
    --sand: #f4efe6;
    --page: #f7f8f6;
    --surface: #ffffff;
    --ink: #182421;
    --muted: #6f7d79;
    --muted-light: #98a39f;
    --line: #e3e9e6;
    --success: #16805d;
    --success-soft: #e6f6ef;
    --danger: #c84b57;
    --danger-soft: #fff0f2;
    --warning: #c57428;
    --warning-soft: #fff3e5;
    --purple: #7460bd;
    --shadow-sm: 0 8px 28px rgba(18, 54, 50, 0.07);
    --shadow-md: 0 18px 50px rgba(18, 54, 50, 0.11);
    --shadow-lg: 0 30px 80px rgba(7, 34, 31, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--surface);
    font-family: "Cairo", Tahoma, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.filter-open,
body.admin-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
input, select, textarea { min-width: 0; }
::selection { color: #fff; background: var(--primary); }
.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.muted { color: var(--muted); }

/* Buttons */
.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .62s var(--ease), background-color .62s var(--ease), border-color .62s var(--ease), color .62s var(--ease), box-shadow .62s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 3px solid rgba(201, 146, 67, .28); outline-offset: 2px; }
.btn-primary { color: #fff; background: var(--primary); box-shadow: 0 10px 25px rgba(21, 63, 59, .2); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 14px 30px rgba(21, 63, 59, .25); }
.btn-secondary { color: #fff; background: var(--accent); box-shadow: 0 10px 24px rgba(201, 146, 67, .23); }
.btn-secondary:hover { background: var(--accent-dark); }
.btn-outline { color: var(--primary); background: #fff; border-color: #cfdad6; }
.btn-outline:hover { color: #fff; background: var(--primary); border-color: var(--primary); }
.btn-ghost { color: var(--primary); background: var(--primary-soft); }
.btn-ghost:hover { background: #d9e7e4; }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-small { min-height: 36px; border-radius: 9px; padding: 7px 13px; font-size: 11px; }

/* Header */
.site-header {
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(21, 63, 59, .08);
    backdrop-filter: blur(16px);
    transition: box-shadow .55s var(--ease), height .55s var(--ease);
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(18, 54, 50, .08); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; color: var(--primary); }
.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border-radius: 14px 14px 5px 14px;
    box-shadow: 0 8px 20px rgba(21,63,59,.18);
    font-size: 23px;
}
.brand-mark .icon { width: 24px; height: 24px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-size: 24px; font-weight: 900; letter-spacing: -.7px; }
.brand-copy strong span { color: var(--accent); }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .1px; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 25px; }
.main-nav > a { position: relative; color: #44534f; font-size: 12px; font-weight: 700; transition: color .62s var(--ease); }
.main-nav > a::after { content: ""; position: absolute; right: 0; bottom: -13px; width: 0; height: 2px; border-radius: 3px; background: var(--accent); transition: width .62s var(--ease); }
.main-nav > a:hover,
.main-nav > a.active { color: var(--primary); }
.main-nav > a:hover::after,
.main-nav > a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.nav-actions .btn { min-height: 42px; padding-inline: 17px; font-size: 11px; }
.login-link { color: var(--primary); font-size: 11px; font-weight: 800; }
.account-link { position: relative; display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-size: 11px; font-weight: 800; }
.account-link b { min-width: 18px; height: 18px; display: grid; place-items: center; color: #fff; background: var(--accent); border-radius: 50%; font-size: 8px; }
.menu-toggle { display: none; width: 44px; height: 44px; place-items: center; color: var(--primary); background: var(--primary-soft); border: 0; border-radius: 11px; }
.menu-toggle .icon { width: 24px; height: 24px; }
.menu-close-icon { display: none; }
.mobile-nav-head,
.mobile-nav-actions,
.menu-overlay { display: none; }

/* Feedback */
.flash { position: relative; z-index: 65; font-size: 12px; font-weight: 700; }
.flash > .container { min-height: 47px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.flash button { width: 30px; height: 30px; display: grid; place-items: center; border: 0; border-radius: 50%; color: inherit; background: transparent; }
.flash-success { color: var(--success); background: var(--success-soft); }
.flash-error { color: var(--danger); background: var(--danger-soft); }
.site-toast { position: fixed; left: 24px; bottom: 24px; z-index: 200; max-width: min(390px, calc(100% - 32px)); padding: 11px 16px; color: #fff; background: var(--primary-dark); border-radius: 11px; box-shadow: var(--shadow-lg); font-size: 12px; font-weight: 700; opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.site-toast.show { opacity: 1; transform: translateY(0); }

/* Hero */
.hero { min-height: 690px; position: relative; display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--primary-dark); }
.hero-media { position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=90") center 54% / cover no-repeat; transform: scale(1.01); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 31, 29, .38) 0%, rgba(7, 31, 29, .9) 66%, rgba(7, 31, 29, .96) 100%); }
.hero::after { content: ""; position: absolute; inset: auto -8% -49% auto; width: 620px; height: 620px; border: 110px solid rgba(255,255,255,.025); border-radius: 50%; }
.hero-content { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 62px; }
.hero-copy { max-width: 760px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; color: #f3dfbd; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); border-radius: 30px; font-size: 11px; font-weight: 800; }
.hero h1 { max-width: 780px; margin: 17px 0 13px; font-size: clamp(42px, 5.2vw, 68px); font-weight: 900; line-height: 1.3; letter-spacing: -2px; }
.hero h1 em { color: #e5b96e; font-style: normal; }
.hero-copy > p { max-width: 680px; margin: 0; color: rgba(255,255,255,.76); font-size: 16px; line-height: 2; }
.search-panel { max-width: 1120px; margin-top: 31px; padding: 12px; display: grid; grid-template-columns: repeat(3, 1fr) 170px; align-items: stretch; color: var(--ink); background: #fff; border: 1px solid rgba(255,255,255,.5); border-radius: 17px; box-shadow: 0 24px 65px rgba(4,24,22,.28); }
.search-panel label { min-height: 64px; display: flex; flex-direction: column; justify-content: center; padding: 4px 18px; border-left: 1px solid var(--line); }
.search-panel label span { color: var(--muted-light); font-size: 9px; font-weight: 700; }
.search-panel select { width: 100%; padding: 5px 0; color: var(--primary); background: #fff; border: 0; outline: 0; font-size: 12px; font-weight: 800; }
.search-button { min-height: 64px; border-radius: 12px; }
.hero-stats { display: flex; align-items: center; gap: 0; margin-top: 24px; }
.hero-stats div { min-width: 135px; display: flex; flex-direction: column; padding-inline: 23px; border-left: 1px solid rgba(255,255,255,.17); }
.hero-stats div:first-child { padding-right: 0; }
.hero-stats div:last-child { border-left: 0; }
.hero-stats strong { font-size: 24px; line-height: 1.3; }
.hero-stats span { color: rgba(255,255,255,.58); font-size: 9px; }
.trust-strip { position: relative; z-index: 4; background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .container { min-height: 105px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-strip .container > div { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 14px; border-left: 1px solid var(--line); }
.trust-strip .container > div:last-child { border-left: 0; }
.trust-strip .icon { width: 27px; height: 27px; color: var(--accent); }
.trust-strip span { display: flex; flex-direction: column; }
.trust-strip b { color: var(--primary); font-size: 12px; }
.trust-strip small { color: var(--muted); font-size: 9px; }

/* Shared sections */
.section { padding: 92px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 36px; }
.section-head.centered { align-items: center; justify-content: center; text-align: center; }
.section-head > div { max-width: 710px; }
.section-kicker { display: inline-block; color: var(--accent-dark); font-size: 11px; font-weight: 900; letter-spacing: .2px; }
.section-kicker.light { color: #e8c78f; }
.section-head h2,
.section h2 { margin: 4px 0 5px; color: var(--primary); font-size: clamp(27px, 3vw, 39px); font-weight: 900; line-height: 1.45; letter-spacing: -.8px; }
.section-head p { margin: 0; color: var(--muted); font-size: 13px; }
.section-link,
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 11px; font-weight: 900; white-space: nowrap; }
.section-link .icon,
.text-link .icon { color: var(--accent); transition: transform .62s var(--ease); }
.section-link:hover .icon,
.text-link:hover .icon { transform: translateX(-4px); }

/* Property cards */
.properties-section { background: #fff; }
.properties-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 23px; }
.properties-grid.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.property-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 19px; box-shadow: 0 6px 22px rgba(20,57,53,.035); transition: transform .75s var(--ease), border-color .75s var(--ease), box-shadow .75s var(--ease); }
.property-card:hover { transform: translateY(-7px); border-color: rgba(201,146,67,.28); box-shadow: var(--shadow-md); }
.property-image-wrap { position: relative; }
.property-image { height: 245px; display: block; overflow: hidden; background: var(--sand); }
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease); }
.property-card:hover .property-image img { transform: scale(1.045); }
.badges { position: absolute; top: 15px; right: 15px; display: flex; flex-wrap: wrap; gap: 7px; }
.badges.static { position: static; margin-bottom: 11px; }
.badges span { display: inline-flex; align-items: center; min-height: 27px; padding: 4px 11px; color: #fff; background: rgba(13,47,44,.9); border-radius: 7px; backdrop-filter: blur(7px); font-size: 9px; font-weight: 900; }
.badges .featured-badge { color: #38240b; background: #e4b96f; }
.favorite-button { position: absolute; top: 14px; left: 14px; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; color: var(--primary); background: rgba(255,255,255,.93); border: 0; border-radius: 50%; box-shadow: 0 6px 18px rgba(13,47,44,.15); transition: color .55s var(--ease), background .55s var(--ease), transform .55s var(--ease); }
.favorite-button:hover { color: var(--danger); transform: scale(1.05); }
.favorite-button.active { color: #fff; background: var(--danger); }
.favorite-button.active .icon { fill: currentColor; }
.property-body { padding: 18px 19px 17px; }
.property-type-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.property-type-row span { color: var(--accent-dark); font-size: 10px; font-weight: 900; }
.property-type-row small { color: var(--muted-light); font-size: 8px; }
.property-body h3 { min-height: 54px; margin: 5px 0 7px; color: var(--primary); font-size: 16px; font-weight: 900; line-height: 1.7; }
.property-body h3 a { transition: color .55s var(--ease); }
.property-body h3 a:hover { color: var(--accent-dark); }
.property-location { display: flex; align-items: center; gap: 5px; margin: 0; color: var(--muted); font-size: 10px; }
.property-location .icon { color: var(--accent); }
.property-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 15px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.property-meta span { display: flex; align-items: center; justify-content: center; gap: 4px; color: var(--muted); border-left: 1px solid var(--line); font-size: 8px; white-space: nowrap; }
.property-meta span:last-child { border-left: 0; }
.property-meta b { color: var(--primary); font-size: 9px; }
.property-meta .icon { color: #80918c; font-size: 14px; }
.property-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 15px; }
.property-footer strong { color: var(--primary); font-size: 17px; font-weight: 900; }
.property-footer a { display: inline-flex; align-items: center; gap: 5px; color: var(--accent-dark); font-size: 9px; font-weight: 900; }
.property-footer a .icon { font-size: 12px; }
.empty-state { padding: 58px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--muted); background: #fbfcfb; border: 1px dashed #cad7d3; border-radius: 17px; }
.empty-state > .icon { width: 38px; height: 38px; margin-bottom: 10px; color: var(--accent); }
.empty-state b { color: var(--primary); font-size: 18px; }
.empty-state p { margin: 4px 0 18px; }

/* Categories and journey */
.category-section { background: var(--page); }
.category-grid { height: 480px; display: grid; grid-template-columns: 1.45fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 18px; }
.category-card { position: relative; display: flex; align-items: flex-end; overflow: hidden; padding: 25px; color: #fff; background: var(--category-image) center / cover no-repeat; border-radius: 21px; isolation: isolate; }
.category-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(7,31,29,.88), rgba(7,31,29,.08) 72%); transition: background .75s var(--ease); }
.category-card::after { content: ""; position: absolute; inset: 0; z-index: -2; background: inherit; transition: transform .85s var(--ease); }
.category-card:hover::after { transform: scale(1.04); }
.category-card:hover::before { background: linear-gradient(0deg, rgba(7,31,29,.94), rgba(21,63,59,.12) 80%); }
.category-large { grid-row: 1 / 3; }
.category-card span { display: flex; flex-direction: column; }
.category-card small { color: rgba(255,255,255,.65); font-size: 9px; }
.category-card strong { font-size: 22px; font-weight: 900; }
.category-card em { margin-top: 3px; color: #e8c78f; font-size: 9px; font-style: normal; font-weight: 800; }
.journey-section { overflow: hidden; background: #fff; }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 82px; }
.journey-visual { position: relative; padding: 0 0 35px 35px; }
.journey-visual::before { content: ""; position: absolute; right: -24px; bottom: 0; width: 55%; height: 55%; background: var(--sand); border-radius: 20px; }
.journey-visual img { position: relative; width: 100%; height: 535px; object-fit: cover; border-radius: 24px; }
.experience-card { position: absolute; left: 0; bottom: 0; min-width: 205px; padding: 18px 21px; color: #fff; background: var(--primary); border-radius: 15px; box-shadow: var(--shadow-md); }
.experience-card b,
.experience-card span { display: block; }
.experience-card b { font-size: 16px; }
.experience-card span { color: rgba(255,255,255,.65); font-size: 9px; }
.journey-copy > p { max-width: 590px; margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.benefits { display: grid; gap: 17px; margin: 28px 0 24px; }
.benefits > div { display: flex; align-items: flex-start; gap: 15px; }
.benefits > div > b { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 auto; color: var(--accent-dark); background: var(--accent-soft); border-radius: 12px; font-size: 11px; }
.benefits span { display: flex; flex-direction: column; }
.benefits strong { color: var(--primary); font-size: 13px; }
.benefits small { color: var(--muted); font-size: 10px; }

/* Locations */
.locations-section { background: var(--primary); }
.locations-section .section-head h2 { color: #fff; }
.locations-section .section-head p { color: rgba(255,255,255,.6); }
.locations-grid { height: 390px; display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 16px; }
.locations-grid a { position: relative; display: flex; align-items: flex-end; overflow: hidden; padding: 22px; color: #fff; background: var(--location-image) center / cover no-repeat; border-radius: 19px; isolation: isolate; }
.locations-grid a::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(5,27,25,.9), transparent 70%); transition: background .75s var(--ease); }
.locations-grid a::after { content: ""; position: absolute; inset: 0; z-index: -2; background: inherit; transition: transform .85s var(--ease); }
.locations-grid a:hover::after { transform: scale(1.04); }
.locations-grid span { display: flex; flex-direction: column; }
.locations-grid small { color: #e7c68d; font-size: 9px; }
.locations-grid strong { font-size: 18px; }

/* Plans */
.packages-section { background: linear-gradient(180deg, var(--page), #fff); }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 45px; align-items: stretch; }
.plan-card { position: relative; padding: 30px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 7px 25px rgba(20,57,53,.04); transition: transform .75s var(--ease), box-shadow .75s var(--ease), border-color .75s var(--ease); }
.plan-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.plan-card.popular { border: 2px solid var(--accent); box-shadow: 0 20px 50px rgba(201,146,67,.12); }
.popular-label { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); padding: 5px 17px; color: #2e200d; background: #e7bd78; border-radius: 20px; font-size: 9px; font-weight: 900; white-space: nowrap; }
.plan-topline > span { color: var(--accent-dark); font-size: 9px; font-weight: 800; }
.plan-card h3 { margin: 1px 0 0; color: var(--primary); font-size: 21px; }
.plan-price { display: flex; align-items: baseline; gap: 5px; margin-top: 9px; }
.plan-price strong { color: var(--primary); font-size: 42px; font-weight: 900; line-height: 1.3; }
.plan-price span { color: var(--muted); font-size: 11px; }
.plan-card > p { min-height: 48px; margin: 6px 0 0; color: var(--muted); font-size: 10px; }
.plan-card ul { min-height: 230px; margin: 20px 0 25px; padding: 20px 0 0; display: grid; align-content: start; gap: 11px; list-style: none; border-top: 1px solid var(--line); }
.plan-card li { display: flex; align-items: center; gap: 9px; color: #4e5f5a; font-size: 10px; }
.plan-card li .icon { color: var(--success); }
.plan-card li.unavailable { opacity: .42; }
.plan-card li.unavailable .icon { color: var(--muted); }
.plan-card .btn { margin-top: auto; }
.plans-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 25px 0 0; color: var(--muted); font-size: 9px; }
.plans-note .icon { color: var(--success); }
.packages-hero { background: linear-gradient(120deg, var(--primary-dark), var(--primary)); }
.packages-full-grid { margin-top: 10px; }
.package-steps-section { background: var(--sand); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-grid article { position: relative; padding: 27px; background: #fff; border: 1px solid rgba(21,63,59,.08); border-radius: 18px; }
.process-grid article > b { display: block; color: var(--accent); font-size: 28px; line-height: 1; }
.process-grid h3 { margin: 10px 0 4px; color: var(--primary); }
.process-grid p { margin: 0; color: var(--muted); font-size: 10px; }

/* CTA and footer */
.owner-cta { position: relative; overflow: hidden; padding: 67px 0; color: #fff; background: var(--primary-dark); }
.owner-cta::after { content: ""; position: absolute; left: -100px; top: -220px; width: 480px; height: 480px; border: 85px solid rgba(255,255,255,.025); border-radius: 50%; }
.owner-cta.compact { padding: 50px 0; }
.owner-cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.owner-cta span { color: #e6c487; font-size: 10px; font-weight: 900; }
.owner-cta h2 { margin: 4px 0 5px; color: #fff; font-size: 31px; }
.owner-cta p { max-width: 690px; margin: 0; color: rgba(255,255,255,.64); }
.owner-cta-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.site-footer { padding-top: 65px; color: #fff; background: #092724; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .8fr .8fr 1fr; gap: 50px; padding-bottom: 47px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { color: var(--primary-dark); background: #e7bd78; }
.footer-brand .brand-copy small { color: rgba(255,255,255,.45); }
.footer-about > p { max-width: 390px; margin: 10px 0 2px; color: rgba(255,255,255,.58); font-size: 10px; }
.footer-contact-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 5px; }
.footer-contact-chips a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.06); border-radius: 8px; font-size: 9px; }
.footer-grid h4 { margin: 4px 0 9px; font-size: 13px; }
.footer-grid > div > a:not(.brand):not(.btn) { color: rgba(255,255,255,.56); font-size: 10px; transition: color .62s var(--ease), transform .62s var(--ease); }
.footer-grid > div > a:not(.brand):not(.btn)::before { content: ""; width: 4px; height: 4px; display: inline-block; margin-left: 7px; background: var(--accent); border-radius: 50%; vertical-align: middle; }
.footer-grid > div > a:not(.brand):not(.btn):hover { color: #fff; transform: translateX(-3px); }
.footer-grid > div:last-child p { margin: 0 0 8px; color: rgba(255,255,255,.55); font-size: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom > div { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.38); font-size: 9px; }
.footer-bottom > div > div { display: flex; gap: 17px; }
.footer-bottom a { transition: color .55s var(--ease); }
.footer-bottom a:hover { color: #fff; }

/* Inner hero and forms */
.inner-page,
.dashboard-page,
.details-page { min-height: 72vh; padding-bottom: 82px; background: var(--page); }
.inner-hero { padding: 58px 0 77px; color: #fff; background: var(--primary); }
.inner-hero.centered { text-align: center; }
.inner-hero h1 { margin: 4px 0 3px; color: #fff; font-size: 38px; font-weight: 900; }
.inner-hero p { margin: 0; color: rgba(255,255,255,.62); }
.form-card { position: relative; max-width: 1050px; margin-top: -38px; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }
.filters form,
.property-form,
.admin-form,
.auth-card form { display: grid; gap: 15px; }
.filters label,
.property-form label,
.admin-form label,
.auth-card label { display: grid; gap: 6px; color: var(--primary); font-size: 10px; font-weight: 800; }
.filters input,
.filters select,
.property-form input,
.property-form select,
.property-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea,
.auth-card input,
.auth-card select,
.auth-card textarea,
.inline-search input,
.review-actions input,
.review-actions select,
.results-actions select,
.hero-quick-search input {
    width: 100%;
    min-height: 45px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #dbe4e0;
    border-radius: 10px;
    outline: 0;
    transition: border-color .55s var(--ease), box-shadow .55s var(--ease), background .55s var(--ease);
}
.filters input:focus,
.filters select:focus,
.property-form input:focus,
.property-form select:focus,
.property-form textarea:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.auth-card input:focus,
.auth-card select:focus,
.auth-card textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.two-fields,
.three-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.three-fields { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.property-form h2 { margin: 12px 0 0; padding-bottom: 10px; color: var(--primary); border-bottom: 1px solid var(--line); font-size: 17px; }
.property-form textarea,
.admin-form textarea { min-height: 125px; resize: vertical; }
.property-form label > small { color: var(--muted); font-size: 8px; font-weight: 500; }
.form-error,
.rejection-message { padding: 11px 13px; color: var(--danger); background: var(--danger-soft); border: 1px solid #f6d8dd; border-radius: 10px; font-size: 10px; }
.package-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.package-options label { position: relative; cursor: pointer; }
.package-options input { position: absolute; opacity: 0; pointer-events: none; }
.package-options span { min-height: 115px; display: flex; flex-direction: column; padding: 16px; border: 2px solid var(--line); border-radius: 13px; transition: border-color .62s var(--ease), background .62s var(--ease), transform .62s var(--ease); }
.package-options span:hover { border-color: #b8cac4; }
.package-options input:checked + span { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }
.package-options b { color: var(--primary); font-size: 12px; }
.package-options strong { color: var(--accent-dark); font-size: 18px; }
.package-options small { color: var(--muted); font-size: 8px; }
.upload-box { padding: 23px !important; text-align: center; background: #fbfcfb; border: 2px dashed #cdd9d5; border-radius: 13px; cursor: pointer; }
.upload-box input { padding: 9px; background: #fff; }
.upload-box span { color: var(--muted); font-size: 8px; }
.upload-preview { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.upload-preview figure { position: relative; aspect-ratio: 1; overflow: hidden; margin: 0; background: var(--sand); border-radius: 10px; }
.upload-preview img { width: 100%; height: 100%; object-fit: cover; }
.upload-preview button { position: absolute; top: 5px; left: 5px; width: 25px; height: 25px; display: grid; place-items: center; color: #fff; background: rgba(9,39,36,.85); border: 0; border-radius: 50%; }
.check { display: flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 8px; }
.check input { width: auto !important; min-height: auto; accent-color: var(--primary); }

/* Listing page */
.listing-hero { padding-bottom: 82px; background: linear-gradient(115deg, var(--primary-dark), var(--primary)); }
.hero-quick-search { max-width: 760px; height: 58px; margin-top: 23px; display: flex; align-items: center; gap: 10px; padding: 6px 7px 6px 15px; color: var(--muted); background: #fff; border-radius: 14px; box-shadow: 0 20px 45px rgba(5,30,28,.2); }
.hero-quick-search input { min-height: 42px; padding: 7px 2px; border: 0; }
.hero-quick-search .btn { min-height: 45px; flex: 0 0 auto; }
.listing-layout { display: grid; grid-template-columns: 282px minmax(0, 1fr); gap: 27px; margin-top: -35px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-height) + 18px); padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-sm); }
.filters-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; }
.filters-head span { color: var(--accent-dark); font-size: 8px; font-weight: 800; }
.filters-head h2 { margin: 0; color: var(--primary); font-size: 17px; }
.filters-head button { display: none; width: 35px; height: 35px; place-items: center; color: var(--primary); background: var(--primary-soft); border: 0; border-radius: 9px; }
.reset-link { display: block; text-align: center; color: var(--accent-dark); font-size: 9px; font-weight: 800; }
.listing-results { min-width: 0; padding-top: 49px; }
.results-toolbar { min-height: 55px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.results-toolbar > div:first-child span { color: var(--accent-dark); font-size: 9px; font-weight: 800; }
.results-toolbar h2 { margin: -2px 0 0; color: var(--primary); font-size: 22px; }
.results-actions { display: flex; align-items: center; gap: 10px; }
.results-actions label { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 9px; white-space: nowrap; }
.results-actions select { min-height: 40px; padding: 7px 10px; font-size: 10px; }
.filter-mobile-button { display: none; min-height: 40px; align-items: center; gap: 6px; color: var(--primary); background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 7px 11px; font-size: 10px; font-weight: 800; }
.filter-overlay { display: none; }

/* Property details */
.details-page { padding-top: 1px; }
.breadcrumb { min-height: 68px; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 9px; }
.breadcrumb .icon { font-size: 10px; }
.breadcrumb span { max-width: 55%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--primary); font-weight: 800; }
.preview-notice { margin-bottom: 14px; padding: 10px 14px; color: var(--warning); background: var(--warning-soft); border-radius: 10px; font-size: 10px; }
.property-gallery { position: relative; height: 520px; display: grid; grid-template-columns: 1.55fr .85fr; gap: 10px; }
.property-gallery button { padding: 0; overflow: hidden; background: var(--sand); border: 0; }
.property-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.property-gallery button:hover img { transform: scale(1.025); }
.gallery-main { border-radius: 0 20px 20px 0 !important; }
.gallery-side { display: grid; grid-template-rows: repeat(2, 1fr); gap: 10px; }
.gallery-side > *:first-child { border-radius: 20px 0 0 0; }
.gallery-side > *:last-child { border-radius: 0 0 0 20px; }
.gallery-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; color: var(--muted); background: var(--sand); }
.gallery-placeholder .icon { width: 35px; height: 35px; color: var(--accent); }
.gallery-placeholder span { font-size: 10px; }
.all-photos-button { position: absolute; left: 17px; bottom: 17px; z-index: 2; min-height: 39px; display: flex; align-items: center; gap: 7px; padding: 7px 12px !important; color: var(--primary); background: rgba(255,255,255,.95) !important; border-radius: 9px !important; box-shadow: var(--shadow-sm); font-size: 9px; font-weight: 900; }
.details-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) 365px; gap: 27px; margin-top: 28px; align-items: start; }
.details-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; }
.details-heading h1 { max-width: 740px; margin: 2px 0 4px; color: var(--primary); font-size: 29px; font-weight: 900; line-height: 1.55; }
.details-heading p { display: flex; align-items: center; gap: 6px; margin: 0; color: var(--muted); font-size: 11px; }
.details-heading p .icon { color: var(--accent); }
.details-price-block { display: flex; flex-direction: column; align-items: flex-end; flex: 0 0 auto; }
.details-price-block small,
.details-price-block span { color: var(--muted); font-size: 8px; }
.details-price { color: var(--accent-dark); font-size: 24px; font-weight: 900; white-space: nowrap; }
.details-actions { display: flex; align-items: center; gap: 9px; margin-top: 16px; }
.details-actions button { min-height: 36px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; color: var(--primary); background: #fff; border: 1px solid var(--line); border-radius: 9px; font-size: 9px; font-weight: 800; }
.details-actions button.active { color: #fff; background: var(--danger); border-color: var(--danger); }
.details-actions button.active .icon { fill: currentColor; }
.details-actions > span { margin-right: auto; color: var(--muted-light); font-size: 8px; }
.details-features { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 19px; padding: 17px; background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.details-features > div { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; border-left: 1px solid var(--line); }
.details-features > div:last-child { border-left: 0; }
.details-features > div > .icon { width: 23px; height: 23px; color: var(--accent); }
.details-features span { display: flex; flex-direction: column; }
.details-features b { color: var(--primary); font-size: 12px; }
.details-features small { color: var(--muted); font-size: 8px; }
.details-box,
.contact-card,
.panel { padding: 23px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 7px 25px rgba(18,54,50,.035); }
.details-box { margin-top: 17px; }
.details-box h2 { margin: 0 0 10px; color: var(--primary); font-size: 17px; }
.details-box p { margin: 0; color: #586965; font-size: 11px; line-height: 2.05; }
.info-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.info-grid span { display: flex; flex-direction: column; padding: 11px; background: var(--page); border-radius: 10px; }
.info-grid small { color: var(--muted); font-size: 8px; }
.info-grid b { color: var(--primary); font-size: 10px; }
.safety-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 17px; padding: 16px 18px; background: var(--primary-soft); border-radius: 14px; }
.safety-note > .icon { width: 25px; height: 25px; color: var(--success); }
.safety-note b { color: var(--primary); font-size: 11px; }
.safety-note p { margin: 1px 0 0; color: var(--muted); font-size: 9px; }
.contact-card { position: sticky; top: calc(var(--header-height) + 18px); }
.contact-label { color: var(--accent-dark); font-size: 9px; font-weight: 900; }
.owner-info { display: flex; align-items: center; gap: 11px; margin-top: 9px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.owner-info > span,
.user-avatar { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; background: var(--primary); border-radius: 50%; font-weight: 900; }
.owner-info > div { display: flex; flex-direction: column; min-width: 0; }
.owner-info b { color: var(--primary); font-size: 11px; }
.owner-info small { color: var(--muted); font-size: 8px; }
.verified-icon { margin-right: auto; color: var(--success); }
.contact-property-summary { display: flex; flex-direction: column; margin: 15px 0; padding: 11px; background: var(--page); border-radius: 9px; }
.contact-property-summary small { color: var(--muted); font-size: 8px; }
.contact-property-summary b { overflow: hidden; color: var(--primary); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.contact-card .btn { margin-top: 9px; }
.whatsapp { color: #fff; background: #168b5b; }
.whatsapp:hover { background: #0f7048; }
.contact-card > p { display: flex; align-items: flex-start; gap: 5px; margin: 13px 0 0; color: var(--muted); font-size: 8px; line-height: 1.7; }
.contact-card > p .icon { color: var(--success); }
.gallery-dialog { width: min(1120px, calc(100% - 35px)); max-height: calc(100vh - 35px); padding: 18px; color: #fff; background: #081f1d; border: 0; border-radius: 18px; box-shadow: var(--shadow-lg); }
.gallery-dialog::backdrop { background: rgba(1,14,13,.88); backdrop-filter: blur(7px); }
.gallery-dialog[open] { display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 12px; }
.dialog-close { position: absolute; top: 12px; left: 12px; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: rgba(0,0,0,.5); border: 0; border-radius: 50%; }
.dialog-image-wrap { min-height: 0; display: grid; place-items: center; overflow: hidden; border-radius: 12px; }
.dialog-image-wrap img { max-width: 100%; max-height: calc(100vh - 155px); object-fit: contain; }
.dialog-thumbnails { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 3px; }
.dialog-thumbnails button { width: 80px; height: 60px; flex: 0 0 auto; overflow: hidden; padding: 0; background: transparent; border: 2px solid transparent; border-radius: 8px; }
.dialog-thumbnails button.active { border-color: var(--accent); }
.dialog-thumbnails img { width: 100%; height: 100%; object-fit: cover; }

/* Authentication and user dashboard */
.auth-section { min-height: calc(100vh - var(--header-height)); padding: 70px 20px; display: grid; place-items: center; background: radial-gradient(circle at 15% 20%, rgba(201,146,67,.15), transparent 28%), linear-gradient(135deg, #edf3f1, #fff); }
.auth-card { width: min(590px, 100%); padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-md); }
.auth-card h1 { margin: 2px 0 4px; color: var(--primary); font-size: 28px; }
.auth-card > p { margin: 0 0 18px; color: var(--muted); font-size: 10px; }
.auth-switch { margin: 17px 0 0 !important; text-align: center; }
.auth-switch a,
.orange-link { color: var(--accent-dark); font-weight: 900; }
.payment-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 17px 0; }
.payment-summary span { display: flex; flex-direction: column; padding: 11px; color: var(--muted); background: var(--page); border-radius: 9px; font-size: 8px; }
.payment-summary b { color: var(--primary); font-size: 10px; }
.dashboard-page { padding-top: 1px; }
.dashboard-heading { padding-top: 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.dashboard-heading span { color: var(--accent-dark); font-size: 10px; font-weight: 900; }
.dashboard-heading h1 { margin: 2px 0; color: var(--primary); font-size: 29px; }
.dashboard-heading p { margin: 0; color: var(--muted); font-size: 11px; }
.dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 24px auto 18px; }
.dashboard-stats div { padding: 18px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.dashboard-stats b { color: var(--primary); font-size: 25px; }
.dashboard-stats span { color: var(--muted); font-size: 9px; }
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(260px, .75fr); gap: 18px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.panel-head h2 { margin: 0; color: var(--primary); font-size: 16px; }
.panel-head p { margin: 0; color: var(--muted); font-size: 9px; }
.user-listing { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.user-listing img { width: 112px; height: 92px; object-fit: cover; border-radius: 10px; }
.user-listing h3 { margin: 3px 0; color: var(--primary); font-size: 13px; }
.user-listing p { margin: 0; color: var(--muted); font-size: 9px; }
.status-row,
.listing-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.listing-actions { margin-top: 6px; font-size: 9px; font-weight: 800; }
.status,
.payment-status { display: inline-flex; align-items: center; min-height: 22px; padding: 2px 8px; border-radius: 20px; font-size: 8px; font-style: normal; font-weight: 900; }
.status-approved { color: var(--success); background: var(--success-soft); }
.status-pending { color: var(--warning); background: var(--warning-soft); }
.status-rejected { color: var(--danger); background: var(--danger-soft); }
.status-draft,
.status-paused,
.payment-status { color: #60736d; background: #edf2f0; }
.rejection-message { margin-top: 6px; }
.notifications .notification { padding: 11px 0; border-bottom: 1px solid var(--line); }
.notification b { color: var(--primary); font-size: 10px; }
.notification p { margin: 2px 0; color: var(--muted); font-size: 9px; }
.notification small { color: var(--muted-light); font-size: 8px; }

/* Admin */
.admin-body { background: #f3f6f4; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 250px minmax(0, 1fr); }
.admin-sidebar { height: 100vh; position: sticky; top: 0; z-index: 100; padding: 22px 16px; display: flex; flex-direction: column; color: #fff; background: var(--primary-dark); overflow-y: auto; }
.admin-brand { padding: 0 7px; color: #fff; }
.admin-brand .brand-mark { color: var(--primary-dark); background: #e4b96f; }
.admin-sidebar > small { padding: 5px 59px 20px; color: rgba(255,255,255,.4); font-size: 8px; }
.admin-sidebar nav { display: grid; gap: 4px; }
.admin-sidebar nav a { min-height: 42px; display: flex; align-items: center; gap: 9px; padding: 9px 11px; color: rgba(255,255,255,.64); border-radius: 9px; font-size: 10px; font-weight: 700; transition: color .6s var(--ease), background .6s var(--ease), transform .6s var(--ease); }
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active { color: #fff; background: rgba(255,255,255,.09); transform: translateX(-2px); }
.admin-sidebar nav a .icon { color: #dfb66f; font-size: 17px; }
.admin-sidebar nav b { min-width: 20px; height: 20px; display: grid; place-items: center; margin-right: auto; color: var(--primary-dark); background: #e4b96f; border-radius: 20px; font-size: 8px; }
.admin-logout { margin-top: auto; padding: 11px; color: #f0a4ac; font-size: 10px; font-weight: 700; }
.admin-main { min-width: 0; }
.admin-topbar { height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 27px; background: #fff; border-bottom: 1px solid var(--line); }
.admin-topbar > div { display: flex; flex-direction: column; }
.admin-topbar h1 { margin: 0; color: var(--primary); font-size: 17px; }
.admin-topbar span { color: var(--muted); font-size: 8px; }
.admin-menu { display: none; width: 42px; height: 42px; place-items: center; color: var(--primary); background: var(--primary-soft); border: 0; border-radius: 10px; }
.admin-content { width: min(1450px, 100%); margin: auto; padding: 26px; }
.admin-flash { padding: 10px 27px; font-size: 10px; }
.admin-welcome { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-welcome > div > span { color: var(--muted); font-size: 8px; }
.admin-welcome h2 { margin: 1px 0; color: var(--primary); font-size: 22px; }
.admin-welcome p { margin: 0; color: var(--muted); font-size: 10px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0; }
.admin-stats article { min-width: 0; padding: 17px; display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.admin-stats article > span,
.payment-doc { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 auto; color: var(--primary); background: var(--primary-soft); border-radius: 11px; }
.admin-stats article > div { min-width: 0; display: flex; flex-direction: column; }
.admin-stats small { color: var(--muted); font-size: 8px; }
.admin-stats strong { overflow: hidden; color: var(--primary); font-size: 18px; text-overflow: ellipsis; white-space: nowrap; }
.orange-bg { color: var(--accent-dark) !important; background: var(--accent-soft) !important; }
.green-bg { color: var(--success) !important; background: var(--success-soft) !important; }
.purple-bg { color: var(--purple) !important; background: #f0edff !important; }
.admin-panel { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.admin-two-cols { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr); gap: 18px; align-items: start; }
.admin-list article,
.package-admin-list article,
.reason-list article { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.admin-list article:last-child,
.package-admin-list article:last-child,
.reason-list article:last-child { border-bottom: 0; }
.admin-list article > img { width: 68px; height: 55px; flex: 0 0 auto; object-fit: cover; border-radius: 8px; }
.admin-list article > div:not(.user-avatar):not(.payment-doc),
.package-admin-list article > div { min-width: 0; display: flex; flex-direction: column; }
.admin-list b,
.package-admin-list b { overflow: hidden; color: var(--primary); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.admin-list span,
.package-admin-list span { color: var(--muted); font-size: 8px; }
.grow { min-width: 0; flex: 1; }
.package-admin-list em,
.reason-list em { margin-right: auto; color: var(--muted); font-size: 8px; font-style: normal; }
.inline-search { display: flex; align-items: center; gap: 7px; }
.inline-search input { min-height: 37px; width: 230px; }
.admin-tabs { display: flex; flex-wrap: wrap; gap: 5px; }
.admin-tabs a { padding: 6px 9px; color: var(--muted); background: var(--page); border-radius: 7px; font-size: 8px; font-weight: 700; }
.review-actions { display: flex; align-items: center; gap: 5px; margin-right: auto; }
.review-actions input,
.review-actions select { width: 150px; min-height: 35px; padding: 6px 8px; font-size: 8px; }
.accept,
.reject { min-height: 34px; padding: 6px 10px; border: 0; border-radius: 8px; font-size: 8px; font-weight: 900; }
.accept { color: var(--success); background: var(--success-soft); }
.reject { color: var(--danger); background: var(--danger-soft); }
.settings-panel { max-width: 1000px; }
.wide-form { max-width: 900px; }

/* Static content pages */
.static-page-main { min-height: 70vh; background: var(--page); }
.static-hero { padding: 72px 0; color: #fff; background: linear-gradient(120deg, var(--primary-dark), var(--primary)); text-align: center; }
.static-hero .container { max-width: 850px; }
.static-hero h1 { margin: 5px 0; font-size: 40px; }
.static-hero p { margin: 0; color: rgba(255,255,255,.66); }
.content-section { padding: 70px 0; }
.content-card { max-width: 900px; margin: auto; padding: 35px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }
.content-card h2 { margin: 25px 0 7px; color: var(--primary); font-size: 19px; }
.content-card h2:first-child { margin-top: 0; }
.content-card p,
.content-card li { color: #586965; font-size: 11px; }
.content-card ul { padding-right: 20px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 25px; }
.about-values article { padding: 22px; background: var(--page); border-radius: 15px; }
.about-values b { color: var(--accent-dark); font-size: 20px; }
.about-values h3 { margin: 5px 0; color: var(--primary); font-size: 14px; }
.about-values p { margin: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-info-card,
.contact-form-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.contact-info-card h2,
.contact-form-card h2 { margin-top: 0; color: var(--primary); }
.contact-list { display: grid; gap: 10px; margin-top: 20px; }
.contact-list a { padding: 13px; display: flex; flex-direction: column; background: var(--page); border-radius: 10px; }
.contact-list small { color: var(--muted); font-size: 8px; }
.contact-list b { color: var(--primary); font-size: 11px; }
.contact-form-card form { display: grid; gap: 13px; }
.contact-form-card label { display: grid; gap: 5px; color: var(--primary); font-size: 10px; font-weight: 800; }
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; outline: 0; }
.contact-form-card textarea { min-height: 125px; resize: vertical; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { padding: 17px 19px; background: #fff; border: 1px solid var(--line); border-radius: 13px; }
.faq-list summary { color: var(--primary); font-size: 12px; font-weight: 900; cursor: pointer; }
.faq-list p { margin: 10px 0 0; color: var(--muted); font-size: 10px; }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .82s var(--ease), transform .82s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal { opacity: 1; transform: none; }
}
