/* =====================================================================
   DORSAA PLUS — MAIN STYLESHEET
   Palette: Navy / White / Light Gray / Charcoal
   ===================================================================== */

:root {
  --navy: #0e2148;
  --navy-dark: #081530;
  --navy-light: #1b3a70;
  --navy-tint: #eef2f8;
  --charcoal: #22262f;
  --gray: #6b7280;
  --gray-light: #f4f6f9;
  --border: #e4e8ef;
  --white: #ffffff;
  --success: #1c8a52;
  --warning: #b8860b;
  --danger: #c0392b;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(14, 33, 72, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 33, 72, 0.10);
  --shadow-lg: 0 20px 48px rgba(14, 33, 72, 0.16);
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --transition: all 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--navy-dark); font-weight: 600; line-height: 1.25; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 12px; }
.section-head h2 { font-size: 2rem; margin-bottom: 6px; }
.section-head p { color: var(--gray); font-size: 0.98rem; }
.section-link { font-weight: 600; color: var(--navy); font-size: 0.95rem; white-space: nowrap; }
.section-link:hover { color: var(--navy-light); }
.section-center { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.eyebrow { text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.75rem; font-weight: 700; color: var(--navy-light); display: block; margin-bottom: 8px; }

.bg-light { background: var(--gray-light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

/* ------------------------- Buttons ------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid transparent; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: var(--navy-tint); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-danger { background: var(--danger); color: var(--white); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ------------------------- Top bar ------------------------- */
.topbar { background: var(--navy-dark); color: rgba(255,255,255,0.85); font-size: 0.82rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
.topbar-contacts { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-contacts a { display: inline-flex; align-items: center; gap: 6px; color: inherit; }
.topbar-contacts a:hover { color: var(--white); }
.topbar-social { display: flex; gap: 12px; align-items: center; }
.topbar-social a { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; }
.topbar-social a:hover { background: rgba(255,255,255,0.15); }

/* ------------------------- Navbar ------------------------- */
.navbar { background: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 500; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 24px; }
.logo img { height: 38px; }
.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy-dark); }
.logo .plus { color: var(--navy-light); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--charcoal); padding: 8px 0; position: relative; }
.nav-links a.active, .nav-links a:hover { color: var(--navy); }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--navy); border-radius: 2px; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.icon-btn { position: relative; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--gray-light); color: var(--navy-dark); transition: var(--transition); }
.icon-btn:hover { background: var(--navy-tint); }
.icon-badge { position: absolute; top: -4px; right: -4px; background: var(--navy); color: var(--white); font-size: 0.65rem; font-weight: 700; min-width: 17px; height: 17px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 3px; }
.nav-auth { display: flex; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--navy-dark); border-radius: 2px; }

.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 999; padding: 20px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 1.05rem; }
.mobile-menu-close { background: none; border: none; font-size: 1.6rem; color: var(--navy-dark); }
.mobile-auth { display: flex; gap: 10px; margin-top: 20px; }

/* ------------------------- Hero Slider ------------------------- */
.hero { position: relative; height: 620px; overflow: hidden; background: var(--navy-dark); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,21,48,0.82) 0%, rgba(8,21,48,0.45) 55%, rgba(8,21,48,0.25) 100%); }
.hero-content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: center; max-width: 620px; padding: 0 20px; margin: 0 auto; }
.hero-content .container { padding: 0; }
.hero-inner { max-width: 560px; padding-left: 20px; }
.hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 16px; }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.15rem; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-controls { position: absolute; bottom: 28px; right: 40px; z-index: 4; display: flex; gap: 12px; }
.hero-arrow { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.4); color: var(--white); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.hero-arrow:hover { background: rgba(255,255,255,0.28); }
.hero-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; transition: var(--transition); }
.hero-dot.active { background: var(--white); width: 28px; border-radius: 6px; }

/* ------------------------- Search Panel ------------------------- */
.search-wrap { margin-top: -56px; position: relative; z-index: 10; }
.search-panel { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 8px; }
.search-tabs { display: flex; gap: 4px; padding: 8px 8px 0; }
.search-tab { display: flex; align-items: center; gap: 8px; padding: 14px 26px; font-weight: 600; color: var(--gray); border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.search-tab.active { color: var(--navy); background: var(--gray-light); }
.search-body { display: none; padding: 24px; }
.search-body.active { display: block; }
.search-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; align-items: end; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.4px; }
.form-control, select.form-control { padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.92rem; background: var(--white); color: var(--charcoal); transition: var(--transition); width: 100%; font-family: inherit; }
.form-control:focus { outline: none; border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(27,58,112,0.12); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ------------------------- Benefits strip ------------------------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; }
.benefit { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--navy-tint); color: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit h4 { font-size: 1rem; margin-bottom: 4px; }
.benefit p { font-size: 0.86rem; color: var(--gray); }

/* ------------------------- Cards grid ------------------------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 26px; }

/* Centers its items instead of left-aligning them with empty trailing grid tracks —
   use this instead of .cards-grid when the row won't always be full (e.g. team members). */
.cards-grid-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.cards-grid-center > .card { flex: 0 1 300px; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-media { position: relative; height: 190px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.4px; }
.card-badge.status-sold { background: var(--danger); }
.card-badge.status-reserved { background: var(--warning); }
.card-wishlist { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; color: var(--navy); border: none; transition: var(--transition); }
.card-wishlist:hover, .card-wishlist.active { background: var(--navy); color: var(--white); }
.card-body { padding: 18px 20px; }
.card-body h3 { font-size: 1.08rem; margin-bottom: 4px; }
.card-meta { font-size: 0.85rem; color: var(--gray); margin-bottom: 10px; }
.card-loc { display: flex; align-items: center; gap: 6px; font-size: 0.84rem; color: var(--gray); margin-bottom: 12px; }
.card-specs { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: var(--gray); margin-bottom: 14px; }
.card-specs span { display: flex; align-items: center; gap: 5px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.card-price { font-family: var(--font-display); font-weight: 700; color: var(--navy-dark); font-size: 1.1rem; }
.card-price small { font-weight: 500; font-size: 0.72rem; color: var(--gray); display: block; }

/* ------------------------- Feature promo split ------------------------- */
.promo-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 24px; }
.promo-card { border-radius: var(--radius-lg); padding: 32px; }
.promo-card.light { background: var(--gray-light); }
.promo-card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.promo-card ul li { display: flex; gap: 10px; font-size: 0.92rem; align-items: flex-start; }
.promo-card ul li::before { content: '✓'; color: var(--navy); font-weight: 700; }
.promo-video { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 260px; }
.promo-video img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.promo-video-caption { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,21,48,0.1), rgba(8,21,48,0.75)); display: flex; align-items: flex-end; padding: 24px; color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; color: var(--navy); }
.promo-help { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.promo-help a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); }

/* ------------------------- Stats ------------------------- */
.stats-bar { background: var(--navy-dark); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 44px 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-item .icon { margin-bottom: 10px; opacity: 0.85; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* ------------------------- Newsletter ------------------------- */
.newsletter { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 40px 0; }
.newsletter-text { display: flex; gap: 16px; align-items: center; }
.newsletter-text h3 { font-size: 1.2rem; }
.newsletter-text p { font-size: 0.88rem; color: var(--gray); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); min-width: 200px; font-family: inherit; }

/* ------------------------- Footer ------------------------- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 40px; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer .logo { color: var(--white); }
.footer p { font-size: 0.88rem; line-height: 1.7; margin: 14px 0; }
.footer ul li { margin-bottom: 10px; font-size: 0.88rem; }
.footer ul li a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.payment-icons { display: flex; gap: 8px; }
.payment-icons span { background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 4px; font-size: 0.72rem; font-weight: 700; }

/* ------------------------- Breadcrumb / page header ------------------------- */
.page-header { background: var(--navy); color: var(--white); padding: 56px 0 40px; }
.page-header h1 { color: var(--white); font-size: 2.1rem; margin-bottom: 8px; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.86rem; color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* ------------------------- Listing layout (filters + results) ------------------------- */
.listing-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filters-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; position: sticky; top: 90px; }
.filters-panel h3 { font-size: 1rem; margin-bottom: 16px; }
.filters-panel .form-group { margin-bottom: 16px; }
.results-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.results-count { color: var(--gray); font-size: 0.9rem; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); font-size: 0.9rem; font-weight: 600; }
.pagination a:hover { background: var(--gray-light); }
.pagination .active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ------------------------- Details pages ------------------------- */
.gallery-main { border-radius: var(--radius-md); overflow: hidden; height: 460px; margin-bottom: 14px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 12px; overflow-x: auto; }
.gallery-thumbs img { width: 100px; height: 74px; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; opacity: 0.7; }
.gallery-thumbs img.active { border-color: var(--navy); opacity: 1; }
.detail-title { font-size: 1.7rem; margin-bottom: 6px; }
.detail-price { font-family: var(--font-display); font-size: 1.9rem; color: var(--navy); font-weight: 700; margin: 12px 0; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.spec-item { display: flex; justify-content: space-between; padding: 12px 16px; background: var(--gray-light); border-radius: var(--radius-sm); font-size: 0.9rem; }
.spec-item strong { color: var(--navy-dark); }
.feature-chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.feature-chip { background: var(--navy-tint); color: var(--navy); font-size: 0.82rem; font-weight: 600; padding: 7px 14px; border-radius: 20px; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; margin-bottom: 20px; }
.sidebar-card h4 { font-size: 1rem; margin-bottom: 14px; }

/* ------------------------- Forms / auth pages ------------------------- */
.auth-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; background: var(--gray-light); }
.auth-card { background: var(--white); max-width: 460px; width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 40px; }
.auth-card h2 { text-align: center; margin-bottom: 6px; }
.auth-card .sub { text-align: center; color: var(--gray); font-size: 0.9rem; margin-bottom: 28px; }
.auth-card .form-group { margin-bottom: 18px; }
.auth-foot { text-align: center; margin-top: 18px; font-size: 0.9rem; color: var(--gray); }
.checkbox-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.86rem; margin-bottom: 18px; }
.checkbox-row label { display: flex; gap: 8px; align-items: center; }

/* ------------------------- Alerts ------------------------- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #e7f6ec; color: var(--success); border: 1px solid #bfe8cc; }
.alert-error { background: #fdecea; color: var(--danger); border: 1px solid #f5c6c0; }
.alert-info { background: var(--navy-tint); color: var(--navy); border: 1px solid #d3ddef; }
.field-error { color: var(--danger); font-size: 0.8rem; margin-top: 4px; }

/* ------------------------- Dashboard layout ------------------------- */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.dash-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; position: sticky; top: 90px; }
.dash-profile { display: flex; gap: 12px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.dash-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); }
.dash-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; }
.dash-nav a:hover { background: var(--gray-light); }
.dash-nav a.active { background: var(--navy-tint); color: var(--navy); font-weight: 700; }
.dash-nav .divider { height: 1px; background: var(--border); margin: 12px 0; }
.dash-content { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.dash-stat { background: var(--gray-light); border-radius: var(--radius-md); padding: 20px; }
.dash-stat .num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--navy-dark); }
.dash-stat .label { font-size: 0.84rem; color: var(--gray); }

table.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.data-table th { text-align: left; padding: 12px 14px; background: var(--gray-light); color: var(--gray); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.4px; }
table.data-table td { padding: 14px; border-bottom: 1px solid var(--border); }
table.data-table tr:hover td { background: #fafbfd; }
.badge { padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: capitalize; }
.badge-pending, .badge-new { background: #fff4d9; color: var(--warning); }
.badge-processing, .badge-read { background: var(--navy-tint); color: var(--navy); }
.badge-completed, .badge-responded, .badge-available, .badge-active { background: #e7f6ec; color: var(--success); }
.badge-cancelled, .badge-closed, .badge-sold, .badge-disabled { background: #fdecea; color: var(--danger); }
.badge-reserved { background: #fff4d9; color: var(--warning); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray); }
.empty-state .icon { margin-bottom: 14px; opacity: 0.5; }

/* ------------------------- Misc ------------------------- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.tab-toggle { display: inline-flex; background: var(--gray-light); border-radius: var(--radius-sm); padding: 4px; }
.tab-toggle button { padding: 9px 20px; border-radius: 5px; border: none; background: transparent; font-weight: 600; font-size: 0.85rem; color: var(--gray); }
.tab-toggle button.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }

/* ------------------------- Team ------------------------- */
.team-card { text-align: center; padding: 32px 24px; }
.team-avatar { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 4px solid var(--gray-light); }
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-role { color: var(--navy-light); font-weight: 600; font-size: 0.88rem; margin-bottom: 14px; }
.team-contact { font-size: 0.84rem; color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.team-contact a { color: var(--navy); font-weight: 500; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--navy); transition: var(--transition); }
.team-social a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ------------------------- Scroll to top ------------------------- */
.scroll-top-btn {
  position: fixed; bottom: 24px; right: 92px; width: 48px; height: 48px;
  border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border: none; box-shadow: var(--shadow-md); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  z-index: 400;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--navy-light); }
@media (max-width: 600px) {
  .scroll-top-btn { right: 16px; bottom: 88px; width: 44px; height: 44px; }
}

/* ------------------------- Responsive ------------------------- */
@media (max-width: 1024px) {
  .promo-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-layout, .listing-layout { grid-template-columns: 1fr; }
  .filters-panel, .dash-sidebar { position: static; }
}

@media (max-width: 860px) {
  .nav-links, .nav-auth, .topbar-contacts { display: none; }
  .hamburger { display: flex; }
  .hero { height: 560px; }
  .hero h1 { font-size: 2.1rem; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .benefits { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 16px; }
  .hero h1 { font-size: 1.7rem; }
  .search-body { padding: 16px; }
  .newsletter { flex-direction: column; align-items: flex-start; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
}
