/* ============================================================
   RESET & TOKENS
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', -apple-system, sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: #3d5af1; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

:root {
  --blue: #3d5af1; --blue-dark: #2a3fc7;
  --green: #00c896; --green-dark: #00a87d;
  --orange: #ff6b35;
  --bg-light: #f5f7ff; --border: #e2e6f3;
  --text-muted: #6b7280;
  --shadow: 0 4px 24px rgba(61,90,241,0.10);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 200;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 800; color: #1a1a2e; display: flex; align-items: center; gap: 8px; letter-spacing: -0.5px; flex-shrink: 0; }
.nav-logo .accent { color: var(--blue); }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: #555; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #1a1a2e; text-decoration: none; }
.nav-auth { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

.profile-menu { position: relative; }
.profile-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; padding: 2px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, box-shadow 0.2s; }
.profile-btn:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(61,90,241,0.18); }
.profile-btn img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.profile-dropdown { position: absolute; top: calc(100% + 10px); right: 0; width: 250px; background: #fff; border: 1.5px solid var(--border); border-radius: 12px; box-shadow: 0 10px 36px rgba(26,26,46,0.12); padding: 12px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.18s, transform 0.18s, visibility 0.18s; z-index: 500; }
.profile-menu.open .profile-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.profile-meta { padding: 2px 4px 10px; margin-bottom: 8px; border-bottom: 1px solid var(--border); }
.profile-name { font-family: 'Sora', sans-serif; font-size: 0.86rem; font-weight: 700; color: #1a1a2e; margin-bottom: 3px; }
.profile-email { font-size: 0.76rem; color: var(--text-muted); line-height: 1.4; word-break: break-word; }

.profile-action { width: 100%; border: 1px solid transparent; background: #fff; color: #444; font-size: 0.82rem; font-weight: 600; text-align: left; border-radius: 8px; padding: 9px 10px; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.profile-action:hover { background: var(--bg-light); border-color: var(--border); }
.profile-action.danger { color: #dc2626; }
.profile-action.danger:hover { background: #fff1f2; border-color: #fecdd3; }

#adminBtn { display: none; }
.hamburger { display: none; background: none; border: none; flex-direction: column; gap: 4px; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: #333; border-radius: 2px; }
.mobile-menu { display: none; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 0; color: #444; font-size: 0.95rem; border-bottom: 1px solid #f0f0f0; }
.mobile-auth { display: flex; gap: 8px; padding-top: 12px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-block; padding: 9px 20px; border-radius: 8px; font-weight: 600; font-size: 0.86rem; border: none; transition: all 0.2s; font-family: 'Sora', sans-serif; letter-spacing: -0.2px; cursor: pointer; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(61,90,241,0.3); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--bg-light); }
.btn-light { background: #f3f4f8; color: #333; border: 1px solid var(--border); }
.btn-light:hover { background: #e8eaf5; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-pay { background: linear-gradient(135deg, var(--blue), #6c63ff); color: #fff; }
.btn-pay:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,90,241,0.35); }
.btn-sm { padding: 7px 14px; font-size: 0.78rem; }
.btn-ghost { background: transparent; color: #555; border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: linear-gradient(135deg, #f0f3ff 0%, #fff8f5 50%, #f0fff8 100%); padding: 64px 0 56px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; text-align: center; }
.hero::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(61,90,241,0.06) 0%, transparent 70%); top: -200px; right: -100px; pointer-events: none; }
.hero-tag { display: inline-block; background: #e8f5e9; color: #2e7d32; font-size: 0.8rem; font-weight: 600; padding: 4px 14px; border-radius: 20px; margin-bottom: 18px; font-family: 'Sora', sans-serif; }
.hero h1 { font-family: 'Sora', sans-serif; font-size: 2.6rem; font-weight: 800; color: #1a1a2e; margin-bottom: 14px; line-height: 1.2; letter-spacing: -1px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 30px; }
.hero-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.search-bar { max-width: 720px; margin: 0 auto 40px; background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 8px; display: flex; gap: 6px; flex-wrap: wrap; box-shadow: var(--shadow); }
.search-bar select, .search-bar input[type="text"] { flex: 1; min-width: 140px; padding: 10px 14px; border: 1px solid #eef0f8; border-radius: 8px; background: var(--bg-light); font-size: 0.86rem; color: #333; }
.search-bar select:focus, .search-bar input:focus { border-color: var(--blue); outline: none; background: #fff; }
.search-bar .btn { padding: 10px 24px; flex-shrink: 0; border-radius: 8px; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.hero-stats .stat { text-align: center; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--blue); letter-spacing: -1px; }
.stat-label { font-size: 0.78rem; color: #999; margin-top: 2px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 44px; }
.section-header .tag { display: inline-block; background: #eef1ff; color: var(--blue); font-size: 0.74rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Sora', sans-serif; }
.section-header h2 { font-family: 'Sora', sans-serif; font-size: 1.9rem; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; letter-spacing: -0.5px; }
.section-header p { font-size: 0.95rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ============================================================
   FILTERS & LISTINGS
   ============================================================ */
.filters-bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab { padding: 7px 18px; background: #fff; border: 1.5px solid var(--border); border-radius: 24px; color: #666; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.15s; font-family: 'Sora', sans-serif; }
.filter-tab:hover, .filter-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.sort-dropdown { display: flex; align-items: center; gap: 8px; }
.sort-dropdown label { font-size: 0.82rem; color: #888; }
.sort-dropdown select { padding: 7px 12px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.82rem; color: #333; background: #fff; }
.results-count { font-size: 0.83rem; color: #999; margin-bottom: 16px; }
.load-more-wrap { text-align: center; margin-top: 36px; }

.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.hostel-card { border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; transition: all 0.25s; }
.hostel-card:hover { box-shadow: 0 8px 32px rgba(61,90,241,0.12); transform: translateY(-3px); border-color: #c8d0f8; }
.hostel-card-img { position: relative; height: 185px; overflow: hidden; }
.hostel-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.hostel-card:hover .hostel-card-img img { transform: scale(1.04); }

/* Image Slider Controls */
.hostel-slider-nav { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; align-items: center; padding: 0 8px; opacity: 0; transition: opacity 0.2s; pointer-events: none; z-index: 10; }
.hostel-card:hover .hostel-slider-nav { opacity: 1; pointer-events: auto; }
.slider-btn { width: 32px; height: 32px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9rem; color: #1a1a2e; transition: all 0.2s; font-weight: bold; }
.slider-btn:hover { background: rgba(255,255,255,1); box-shadow: 0 2px 8px rgba(0,0,0,0.2); transform: scale(1.1); }
.slider-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 4px; z-index: 10; }
.slider-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s; }
.slider-dot.active { background: rgba(255,255,255,0.95); width: 8px; }

.hostel-card-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
.badge { padding: 3px 9px; border-radius: 5px; font-size: 0.67rem; font-weight: 700; text-transform: uppercase; font-family: 'Sora', sans-serif; letter-spacing: 0.3px; }
.badge-boys { background: #dbeafe; color: #1e40af; }
.badge-girls { background: #fce7f3; color: #be185d; }
.badge-coed { background: #d1fae5; color: #065f46; }
.badge-premium { background: #fef3c7; color: #92400e; }
.badge-verified { background: rgba(255,255,255,0.92); color: #065f46; }
.hostel-card-fav { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; border: 1px solid var(--border); cursor: pointer; }
.hostel-card-fav:hover { background: #fee2e2; }
.hostel-card-body { padding: 16px; }
.hostel-card-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; letter-spacing: -0.3px; }
.hostel-card-location { font-size: 0.8rem; color: #999; margin-bottom: 10px; }
.hostel-card-amenities { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 14px; }
.amenity-tag { padding: 3px 8px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 5px; font-size: 0.68rem; color: #666; }
.hostel-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); }
.hostel-price { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--green-dark); letter-spacing: -0.5px; }
.hostel-price span { font-size: 0.75rem; font-weight: 400; color: #999; }
.hostel-rating { font-size: 0.85rem; font-weight: 600; color: #555; background: #fffbeb; padding: 3px 8px; border-radius: 6px; border: 1px solid #fde68a; }
.hostel-card-actions { display: flex; gap: 6px; padding: 0 16px 16px; flex-wrap: wrap; }
.hostel-card-actions .btn { flex: 1; text-align: center; font-size: 0.74rem; padding: 7px 8px; min-width: 80px; }

/* ============================================================
   GOOGLE MAPS SECTION
   ============================================================ */
.map-wrapper { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--shadow); }
.map-iframe { width: 100%; height: 480px; border: 0; display: block; }
.map-legend { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 16px 20px; margin-top: 18px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.map-legend-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.86rem; color: #1a1a2e; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #555; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.blue { background: var(--blue); } .legend-dot.green { background: var(--green); } .legend-dot.orange { background: var(--orange); }
.hostel-map-pins { margin-top: 20px; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.map-pin-card { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: #fff; border: 1.5px solid var(--border); border-radius: 12px; cursor: pointer; transition: all 0.2s; }
.map-pin-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(61,90,241,0.1); transform: translateY(-2px); }
.map-pin-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.map-pin-info h4 { font-family: 'Sora', sans-serif; font-size: 0.83rem; font-weight: 700; color: #1a1a2e; margin-bottom: 2px; }
.map-pin-info p { font-size: 0.73rem; color: #999; }
.map-pin-price { font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--green-dark); margin-left: auto; white-space: nowrap; }

/* ============================================================
   AREAS
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.area-card { position: relative; height: 165px; border-radius: 12px; overflow: hidden; cursor: pointer; border: 1.5px solid var(--border); }
.area-card:hover img { transform: scale(1.06); }
.area-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.area-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,0.72), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; color: #fff; }
.area-card-name { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; }
.area-card-count { font-size: 0.76rem; color: #a8edcd; }

/* ============================================================
   FEATURES / STEPS / AMENITIES
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.feature-card { text-align: center; padding: 36px 24px; background: #fff; border: 1.5px solid var(--border); border-radius: 14px; transition: all 0.2s; }
.feature-card:hover { border-color: #c8d0f8; box-shadow: var(--shadow); }
.feature-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--bg-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.feature-card h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.feature-card p { font-size: 0.84rem; color: var(--text-muted); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.step-card { text-align: center; padding: 28px 16px; }
.step-num { width: 48px; height: 48px; margin: 0 auto 16px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem; }
.step-card h3 { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: #1a1a2e; }
.step-card p { font-size: 0.83rem; color: var(--text-muted); }

.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 14px; }
.amenity-card { text-align: center; padding: 22px 10px; background: #fff; border: 1.5px solid var(--border); border-radius: 12px; transition: all 0.2s; }
.amenity-card:hover { border-color: var(--blue); background: var(--bg-light); }
.amenity-card .icon { font-size: 1.6rem; margin-bottom: 8px; display: block; }
.amenity-card span { font-size: 0.76rem; color: #666; font-weight: 500; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 20px; }
.review-card { padding: 26px; background: #fff; border: 1.5px solid var(--border); border-radius: 14px; transition: all 0.2s; }
.review-card:hover { box-shadow: var(--shadow); border-color: #c8d0f8; }
.review-stars { color: #f59e0b; margin-bottom: 12px; font-size: 0.9rem; }
.review-text { font-size: 0.9rem; color: #555; margin-bottom: 16px; line-height: 1.7; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 40px; height: 40px; background: linear-gradient(135deg, var(--blue), #6c63ff); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.85rem; }
.review-info h4 { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; color: #1a1a2e; }
.review-info p { font-size: 0.76rem; color: #999; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-wrap { overflow-x: auto; border: 1.5px solid var(--border); border-radius: 14px; }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.pricing-table th, .pricing-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #f0f2ff; font-size: 0.87rem; }
.pricing-table th { background: var(--bg-light); font-family: 'Sora', sans-serif; font-weight: 700; color: #444; text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.8px; }
.pricing-table td { color: #555; }
.pricing-table tr:hover td { background: #fafbff; }
.price-highlight { color: var(--green-dark); font-weight: 700; font-family: 'Sora', sans-serif; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.9rem; color: #1a1a2e; background: #fff; width: 100%; border: none; text-align: left; gap: 12px; }
.faq-question:hover { background: var(--bg-light); }
.faq-icon { color: var(--blue); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 22px 18px; font-size: 0.87rem; color: #666; line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(135deg, var(--blue) 0%, #6c63ff 100%); color: #fff; border-radius: 16px; padding: 56px 40px; text-align: center; margin: 64px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; top: -200px; right: -100px; pointer-events: none; }
.cta-banner h2 { font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.cta-banner p { font-size: 1rem; opacity: 0.9; margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-cta { display: inline-block; background: #fff; color: var(--blue); font-weight: 700; padding: 14px 32px; border-radius: 10px; font-family: 'Sora', sans-serif; border: none; cursor: pointer; font-size: 0.95rem; transition: all 0.2s; }
.cta-banner .btn-cta:hover { background: #f0f3ff; transform: translateY(-2px); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: #555; margin-bottom: 6px; font-family: 'Sora', sans-serif; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.87rem; color: #333; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); outline: none; }
.form-group textarea { min-height: 100px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 12px; }
.contact-info-icon { width: 42px; height: 42px; background: #eef1ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-text h4 { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; color: #1a1a2e; margin-bottom: 2px; }
.contact-info-text p { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1a1a2e; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; }
.footer-brand .nav-logo .accent { color: #6c63ff; }
.footer-brand p { font-size: 0.84rem; color: #8892a4; max-width: 260px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: background 0.2s; }
.footer-social-link:hover { background: rgba(61,90,241,0.3); }
.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; color: #e0e4f0; }
.footer-col a { display: block; padding: 5px 0; font-size: 0.82rem; color: #8892a4; transition: color 0.2s; }
.footer-col a:hover { color: #a8b5ff; text-decoration: none; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.78rem; color: #5a6475; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-btn { position: fixed; bottom: 80px; right: 20px; z-index: 900; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s; }
.whatsapp-btn:hover { text-decoration: none; transform: scale(1.1); }
.back-to-top { position: fixed; bottom: 20px; right: 20px; z-index: 900; width: 44px; height: 44px; background: #fff; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #555; opacity: 0; visibility: hidden; transition: opacity 0.2s; cursor: pointer; }
.back-to-top.visible { opacity: 1; visibility: visible; }

/* ============================================================
   BOOKING MODAL (visit scheduler)
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(26,26,46,0.55); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.2s; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: #fff; border-radius: 16px; padding: 32px; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.18); transform: translateY(20px); transition: transform 0.2s; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-header h2 { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 800; color: #1a1a2e; }
.modal-close { width: 34px; height: 34px; background: #f3f4f8; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: #666; cursor: pointer; }
.modal-close:hover { background: #fee2e2; color: #dc2626; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input, .modal-form select { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.87rem; color: #333; }
.modal-form input:focus, .modal-form select:focus { border-color: var(--blue); outline: none; }

/* ============================================================
   PAYMENT MODAL
   ============================================================ */
.payment-summary { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 12px; padding: 18px; margin-bottom: 18px; }
.payment-summary h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.payment-summary .pay-area { font-size: 0.8rem; color: #888; margin-bottom: 12px; }
.payment-summary .pay-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.87rem; color: #555; border-bottom: 1px solid var(--border); }
.payment-summary .pay-row:last-child { border-bottom: none; }
.payment-summary .pay-total { display: flex; justify-content: space-between; padding: 10px 0 0; font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 800; color: #1a1a2e; border-top: 2px solid var(--border); margin-top: 6px; }
.payment-summary .pay-total .amount { color: var(--green-dark); }
.payment-methods { margin-bottom: 18px; }
.payment-methods label { font-family: 'Sora', sans-serif; font-size: 0.83rem; font-weight: 700; color: #444; margin-bottom: 10px; display: block; }
.payment-option { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; margin-bottom: 8px; cursor: pointer; transition: border-color 0.15s; }
.payment-option:hover { border-color: var(--blue); }
.payment-option.selected { border-color: var(--blue); background: #f0f4ff; }
.payment-option input[type="radio"] { accent-color: var(--blue); }
.payment-option .pay-label { font-size: 0.87rem; color: #333; }
.payment-note { font-size: 0.74rem; color: #999; text-align: center; margin-top: 12px; }
.payment-note a { color: var(--blue); }

/* ============================================================
   AUTH FULLSCREEN OVERLAY (Register / Login)
   ============================================================ */
.auth-overlay {
  position: fixed; inset: 0; z-index: 50000;
  background: rgba(26,26,46,0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s;
  overflow-y: auto;
}
.auth-overlay.open { opacity: 1; visibility: visible; }

.auth-panel {
  background: #fff;
  border-radius: 20px;
  width: 100%; max-width: 980px;
  min-height: 600px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,0.22);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.25s;
  position: relative;
  margin: auto;
}
.auth-overlay.open .auth-panel { transform: translateY(0) scale(1); }

/* Auth close button */
.auth-panel-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.06); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #555; cursor: pointer; z-index: 10;
  transition: background 0.2s;
}
.auth-panel-close:hover { background: #fee2e2; color: #dc2626; }

/* Left decorative panel */
.auth-left {
  width: 42%;
  background: linear-gradient(160deg, #1a1a2e 0%, #2d2d5e 50%, #3d5af1 100%);
  padding: 52px 44px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.auth-left::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(108,99,255,0.2) 0%, transparent 70%); bottom: -200px; right: -200px; pointer-events: none; }
.auth-left-badge { display: inline-block; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); font-size: 0.74rem; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,0.15); font-family: 'Sora', sans-serif; letter-spacing: 0.5px; }
.auth-left h2 { font-family: 'Sora', sans-serif; font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -1px; margin-bottom: 14px; }
.auth-left h2 span { color: #a8b5ff; }
.auth-left > p { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.7; }
.auth-features { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.auth-feature { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; }
.auth-feature-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.auth-feature-text h4 { font-family: 'Sora', sans-serif; font-size: 0.83rem; font-weight: 700; color: #fff; margin-bottom: 1px; }
.auth-feature-text p { font-size: 0.73rem; color: rgba(255,255,255,0.52); }
.auth-testimonial { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 18px; }
.auth-testimonial p { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-style: italic; line-height: 1.65; margin-bottom: 12px; }
.auth-testimonial-author { display: flex; align-items: center; gap: 10px; }
.auth-t-avatar { width: 34px; height: 34px; background: linear-gradient(135deg, #6c63ff, #3d5af1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 0.76rem; font-weight: 700; color: #fff; }
.auth-testimonial-author h5 { font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 700; color: #fff; }
.auth-testimonial-author span { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

/* Right form panel */
.auth-right { flex: 1; padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; overflow-y: auto; }

/* Role / mode selectors */
.role-selector { display: flex; gap: 0; background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 12px; padding: 4px; margin-bottom: 24px; }
.role-btn { flex: 1; padding: 9px 12px; border: none; background: transparent; border-radius: 9px; font-family: 'Sora', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); transition: all 0.2s; text-align: center; cursor: pointer; }
.role-btn.active { background: #fff; color: var(--blue); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.mode-tabs { display: flex; margin-bottom: 22px; border-bottom: 2px solid var(--border); }
.mode-tab { padding: 9px 22px; font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--text-muted); background: transparent; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all 0.2s; }
.mode-tab.active { color: var(--blue); border-bottom-color: var(--blue); }

.auth-form-title { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; color: #1a1a2e; margin-bottom: 5px; letter-spacing: -0.5px; }
.auth-form-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }
.auth-form-sub a { color: var(--blue); font-weight: 600; }

/* Auth form inputs */
.auth-form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.auth-form-group label { font-family: 'Sora', sans-serif; font-size: 0.76rem; font-weight: 700; color: #444; }
.auth-form-group input, .auth-form-group select, .auth-form-group textarea { padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 9px; font-size: 0.87rem; color: #333; background: #fff; width: 100%; transition: border-color 0.2s; }
.auth-form-group input:focus, .auth-form-group select:focus, .auth-form-group textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(61,90,241,0.08); }
.auth-form-group textarea { min-height: 72px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-section-divider { font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #bbb; padding: 6px 0 10px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }

/* Password */
.input-wrap { position: relative; }
.input-wrap input { padding-right: 44px; }
.pw-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #aaa; cursor: pointer; font-size: 1rem; }
.pw-toggle:hover { color: var(--blue); }
.pw-strength { margin-top: 5px; }
.pw-strength-bar { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; margin-bottom: 3px; }
.pw-strength-fill { height: 100%; border-radius: 2px; transition: width 0.3s, background 0.3s; width: 0%; }
.pw-strength-label { font-size: 0.7rem; color: #aaa; }

/* Social buttons */
.social-btns { display: flex; gap: 10px; margin-bottom: 14px; }
.social-btn { flex: 1; padding: 9px; border: 1.5px solid var(--border); border-radius: 9px; background: #fff; font-size: 0.82rem; font-weight: 600; color: #333; display: flex; align-items: center; justify-content: center; gap: 7px; transition: all 0.2s; cursor: pointer; }
.social-btn:hover { border-color: #aaa; background: var(--bg-light); }
.auth-divider { display: flex; align-items: center; gap: 10px; margin: 4px 0 16px; }
.auth-divider span { font-size: 0.76rem; color: #ccc; white-space: nowrap; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Checkbox */
.check-group { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 14px; cursor: pointer; }
.check-group input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--blue); margin-top: 3px; flex-shrink: 0; cursor: pointer; }
.check-group span { font-size: 0.8rem; color: #555; line-height: 1.5; }
.check-group a { color: var(--blue); font-weight: 500; }

/* Amenity checkboxes */
.amenities-check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 14px; }
.amenity-checkbox { display: flex; align-items: center; gap: 5px; padding: 7px 9px; border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; font-size: 0.76rem; color: #555; transition: all 0.15s; user-select: none; }
.amenity-checkbox input { display: none; }
.amenity-checkbox.checked { border-color: var(--blue); background: #eef1ff; color: var(--blue); font-weight: 600; }

/* File upload */
.file-upload-area { border: 2px dashed var(--border); border-radius: 10px; padding: 16px; text-align: center; cursor: pointer; transition: all 0.2s; background: var(--bg-light); margin-bottom: 14px; }
.file-upload-area:hover { border-color: var(--blue); background: #eef1ff; }
.file-upload-area input { display: none; }
.file-upload-area .upload-icon { font-size: 1.6rem; margin-bottom: 4px; }
.file-upload-area p { font-size: 0.8rem; color: var(--text-muted); }
.file-upload-area small { font-size: 0.72rem; color: #bbb; }
.file-upload-area.has-file { border-color: var(--green); background: #f0fff8; }

/* Info tip */
.info-tip { display: flex; align-items: flex-start; gap: 8px; padding: 10px 12px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; font-size: 0.78rem; color: #92400e; margin-bottom: 14px; }

/* Step progress */
.step-progress { display: flex; align-items: center; margin-bottom: 20px; }
.step-dot { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 700; background: #f3f4f8; color: #aaa; border: 2px solid var(--border); flex-shrink: 0; transition: all 0.3s; }
.step-dot.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.step-dot.done { background: var(--green); color: #fff; border-color: var(--green); }
.step-line { flex: 1; height: 2px; background: var(--border); transition: background 0.3s; }
.step-line.done { background: var(--green); }
.step-labels { display: flex; justify-content: space-between; margin-top: 6px; margin-bottom: 20px; }
.step-label { font-family: 'Sora', sans-serif; font-size: 0.68rem; font-weight: 600; color: #bbb; }
.step-label.active { color: var(--blue); }
.step-label.done { color: var(--green); }

/* Form panels */
.form-panel { display: none; }
.form-panel.active { display: block; }

/* OTP inputs */
.otp-inputs { display: flex; gap: 8px; justify-content: center; margin: 16px 0; }
.otp-inputs input { width: 46px; height: 52px; text-align: center; font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700; border: 1.5px solid var(--border); border-radius: 10px; color: var(--blue); }
.otp-inputs input:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(61,90,241,0.1); }

/* Submit button */
.btn-auth-submit { width: 100%; padding: 12px; background: var(--blue); color: #fff; border: none; border-radius: 10px; font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 700; transition: all 0.2s; cursor: pointer; margin-top: 4px; }
.btn-auth-submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(61,90,241,0.3); }
.btn-auth-next { width: 100%; padding: 11px; background: var(--blue); color: #fff; border: none; border-radius: 10px; font-family: 'Sora', sans-serif; font-size: 0.86rem; font-weight: 700; transition: all 0.2s; cursor: pointer; }
.btn-auth-next:hover { background: var(--blue-dark); }
.btn-auth-back { width: 100%; padding: 11px; background: var(--bg-light); color: #555; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'Sora', sans-serif; font-size: 0.86rem; font-weight: 600; transition: all 0.2s; cursor: pointer; }
.btn-auth-back:hover { border-color: #aaa; }
.two-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }

/* Success screen */
.success-screen { text-align: center; padding: 32px 16px; display: none; }
.success-screen.show { display: block; }
.success-icon { font-size: 3.6rem; display: block; margin-bottom: 14px; animation: popIn 0.5s cubic-bezier(0.36,0.07,0.19,0.97); }
@keyframes popIn { 0% { transform: scale(0); } 60% { transform: scale(1.2); } 100% { transform: scale(1); } }
.success-screen h2 { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.success-screen p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.btn-success { display: inline-block; padding: 12px 28px; background: var(--blue); color: #fff; border-radius: 10px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; transition: all 0.2s; }
.btn-success:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 99999; display: flex; flex-direction: column; gap: 8px; }
.toast { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: #fff; border: 1.5px solid var(--border); border-radius: 12px; min-width: 280px; max-width: 370px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); animation: toastIn 0.3s ease; }
.toast.removing { animation: toastOut 0.25s ease forwards; }
.toast-icon { font-size: 1.1rem; }
.toast-content { flex: 1; }
.toast-title { font-family: 'Sora', sans-serif; font-size: 0.83rem; font-weight: 700; color: #1a1a2e; }
.toast-message { font-size: 0.75rem; color: #888; margin-top: 1px; }
.toast-close-btn { background: none; border: none; color: #bbb; font-size: 0.9rem; padding: 2px; cursor: pointer; }
@keyframes toastIn { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(60px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .auth-left { display: none; }
  .auth-right { padding: 36px 32px; }
  .auth-panel { max-width: 520px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; } .nav-auth { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 1.9rem; }
  .search-bar { flex-direction: column; }
  .listings-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .filters-bar { flex-direction: column; align-items: flex-start; }
  .map-iframe { height: 340px; }
  .hostel-map-pins { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .auth-right { padding: 28px 22px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .amenities-check-grid { grid-template-columns: repeat(2, 1fr); }
  .otp-inputs input { width: 40px; height: 46px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .areas-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .hostel-card-actions { flex-wrap: wrap; }
}

/* ============================================================
   POLICY MODAL
   ============================================================ */
.policy-overlay {
  position: fixed; inset: 0; z-index: 60000;
  background: rgba(26,26,46,0.6); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.2s;
  overflow-y: auto;
}
.policy-overlay.open { opacity: 1; visibility: visible; }
.policy-modal {
  background: #fff; border-radius: 18px; width: 100%; max-width: 760px;
  max-height: 88vh; overflow-y: auto;
  box-shadow: 0 32px 100px rgba(0,0,0,0.2);
  transform: translateY(20px); transition: transform 0.25s;
}
.policy-overlay.open .policy-modal { transform: translateY(0); }
.policy-modal-header {
  position: sticky; top: 0; background: #fff; z-index: 2;
  padding: 24px 32px 18px;
  border-bottom: 1.5px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  border-radius: 18px 18px 0 0;
}
.policy-modal-header h2 { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 800; color: #1a1a2e; letter-spacing: -0.4px; }
.policy-modal-header span { font-size: 0.76rem; color: #aaa; margin-top: 2px; display: block; }
.policy-close { width: 36px; height: 36px; background: #f3f4f8; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #666; cursor: pointer; flex-shrink: 0; }
.policy-close:hover { background: #fee2e2; color: #dc2626; }
.policy-body { padding: 28px 32px 36px; }
.policy-body h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: #1a1a2e; margin: 24px 0 8px; }
.policy-body h3:first-child { margin-top: 0; }
.policy-body p { font-size: 0.88rem; color: #555; line-height: 1.75; margin-bottom: 10px; }
.policy-body ul { padding-left: 20px; margin-bottom: 10px; }
.policy-body ul li { font-size: 0.88rem; color: #555; line-height: 1.75; margin-bottom: 5px; list-style: disc; }
.policy-body .policy-highlight { background: var(--bg-light); border-left: 4px solid var(--blue); padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 16px 0; font-size: 0.87rem; color: #333; }
.policy-body .policy-contact { background: #f0fff8; border: 1.5px solid #a7f3d0; border-radius: 10px; padding: 16px 20px; margin-top: 24px; }
.policy-body .policy-contact p { margin: 0; color: #065f46; font-size: 0.86rem; }
.policy-body .policy-contact a { color: var(--green-dark); font-weight: 600; }
.policy-tabs { display: flex; gap: 0; margin-bottom: 0; border-bottom: 2px solid var(--border); }
.policy-tab { padding: 10px 24px; font-family: 'Sora', sans-serif; font-size: 0.86rem; font-weight: 700; color: var(--text-muted); background: transparent; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all 0.2s; }
.policy-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.policy-section { display: none; }
.policy-section.active { display: block; }
@media (max-width: 600px) {
  .policy-modal-header, .policy-body { padding-left: 20px; padding-right: 20px; }
}