/* ============= CSS VARIABLES ============= */
:root {
    --aa-primary: #183D33;
    --aa-accent: #B34B36;
    --aa-bg: #FAF9F6;
    --aa-white: #FFFFFF;
    --aa-border: #E5E2DC;
    --aa-text: #1A1D1A;
    --aa-text-muted: #4A4D4A;
    --aa-warm: #E8D5C4;
    --aa-warm-light: #E8D5C4CC;
    --aa-success: #16a34a;
    --aa-warning: #ca8a04;
    --aa-danger: #dc2626;
    --aa-radius: 8px;
    --aa-radius-lg: 12px;
    --aa-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --aa-shadow-lg: 0 4px 12px rgba(0,0,0,0.1);
    --aa-font-heading: 'Outfit', sans-serif;
    --aa-font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    --aa-container: 1280px;
}

/* ============= RESET & BASE ============= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--aa-font-body); background: var(--aa-bg); color: var(--aa-text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ============= UTILITIES ============= */
.aa-container { max-width: var(--aa-container); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .aa-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .aa-container { padding: 0 2rem; } }
.aa-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============= HEADER ============= */
.aa-header { position: sticky; top: 0; z-index: 50; background: var(--aa-white); border-bottom: 1px solid var(--aa-border); }
.aa-nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.aa-logo { display: flex; align-items: center; gap: 8px; font-family: var(--aa-font-heading); font-weight: 600; font-size: 1.25rem; color: var(--aa-primary); }
.aa-nav-links { display: none; align-items: center; gap: 2rem; }
.aa-nav-links a { color: var(--aa-text-muted); font-weight: 500; transition: color 0.2s; }
.aa-nav-links a:hover { color: var(--aa-primary); }
.aa-nav-auth { display: none; align-items: center; gap: 1rem; }
.aa-mobile-toggle { display: flex; color: var(--aa-text); }
@media (min-width: 768px) {
    .aa-nav-links, .aa-nav-auth { display: flex; }
    .aa-mobile-toggle { display: none; }
}

/* User Menu */
.aa-user-menu { position: relative; }
.aa-user-btn { display: flex; align-items: center; gap: 8px; padding: 4px 12px; border-radius: var(--aa-radius); transition: background 0.2s; }
.aa-user-btn:hover { background: rgba(0,0,0,0.04); }
.aa-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--aa-primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.875rem; }
.aa-user-name { font-weight: 500; color: var(--aa-text); }
.aa-dropdown { display: none; position: absolute; right: 0; top: calc(100% + 8px); background: white; border: 1px solid var(--aa-border); border-radius: var(--aa-radius); box-shadow: var(--aa-shadow-lg); min-width: 200px; z-index: 100; padding: 4px 0; }
.aa-dropdown.active { display: block; }
.aa-dropdown a { display: block; padding: 8px 16px; color: var(--aa-text-muted); font-size: 0.875rem; transition: background 0.15s; }
.aa-dropdown a:hover { background: var(--aa-bg); color: var(--aa-text); }
.aa-dropdown hr { border: none; border-top: 1px solid var(--aa-border); margin: 4px 0; }

/* ============= BUTTONS ============= */
.aa-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: var(--aa-radius); font-weight: 500; font-size: 0.875rem; transition: all 0.2s; border: 1px solid transparent; line-height: 1.4; }
.aa-btn--primary { background: var(--aa-primary); color: white; }
.aa-btn--primary:hover { background: #142f28; }
.aa-btn--accent { background: var(--aa-accent); color: white; }
.aa-btn--accent:hover { background: #9a3f2d; }
.aa-btn--outline { background: transparent; border-color: var(--aa-border); color: var(--aa-text); }
.aa-btn--outline:hover { background: var(--aa-bg); border-color: var(--aa-text-muted); }
.aa-btn--warm { background: var(--aa-warm); color: var(--aa-text); }
.aa-btn--warm:hover { background: #d9c4b2; }
.aa-btn--lg { padding: 14px 28px; font-size: 1rem; }
.aa-btn--full { width: 100%; }
.aa-btn--icon { padding: 8px; }
.aa-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============= BADGES ============= */
.aa-badge { display: inline-flex; align-items: center; padding: 2px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.aa-badge--success { background: #dcfce7; color: #166534; }
.aa-badge--warning { background: #fef3c7; color: #854d0e; }
.aa-badge--danger { background: #fee2e2; color: #991b1b; }
.aa-badge--muted { background: #f3f4f6; color: #6b7280; }
.aa-badge--accent { background: var(--aa-accent); color: white; }
.aa-badge--verified { background: #dbeafe; color: #1e40af; }
.aa-badge--trust { background: var(--aa-primary); color: white; }
.aa-badge--trust-light { background: rgba(24,61,51,0.8); color: white; }
.aa-badge--trusted { background: #f0fdf4; color: #166534; border: 1px solid #dcfce7; }
.aa-badge--outline { background: transparent; color: var(--aa-primary); border: 1px solid rgba(24,61,51,0.3); }
.aa-badge-date { font-size: 0.7rem; color: var(--aa-text-muted); display: inline-flex; align-items: center; gap: 4px; }
.aa-score-circle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: white; font-weight: 700; font-size: 0.8rem; border: 2px solid white; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.aa-tag { display: inline-flex; padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; background: rgba(24,61,51,0.08); color: var(--aa-primary); border: 1px solid rgba(24,61,51,0.15); }

/* ============= CARDS ============= */
.aa-card { background: var(--aa-white); border: 1px solid var(--aa-border); border-radius: var(--aa-radius-lg); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.aa-card:hover { box-shadow: var(--aa-shadow-lg); transform: translateY(-2px); }
.aa-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.aa-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.aa-card:hover .aa-card-image img { transform: scale(1.03); }
.aa-card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.aa-card-body { padding: 16px; }
.aa-card-title { font-family: var(--aa-font-heading); font-weight: 600; font-size: 1.1rem; color: var(--aa-text); margin-bottom: 4px; }
.aa-card-subtitle { font-size: 0.875rem; color: var(--aa-text-muted); margin-bottom: 8px; }
.aa-card-desc { font-size: 0.875rem; color: var(--aa-text-muted); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.aa-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.aa-card-trust { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.aa-card-score { position: absolute; bottom: 8px; right: 8px; z-index: 5; }
.aa-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--aa-border); }
.aa-card-meta { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--aa-text-muted); }

/* ============= HERO ============= */
.aa-hero { position: relative; min-height: 560px; display: flex; align-items: center; background: linear-gradient(135deg, rgba(24,61,51,0.75) 0%, rgba(24,61,51,0.55) 100%); overflow: hidden; }
.aa-hero-bg { position: absolute; inset: 0; z-index: -1; }
.aa-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.aa-hero-content { position: relative; z-index: 1; padding: 4rem 0; }
.aa-hero-label { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.75rem; font-weight: 600; color: var(--aa-warm); margin-bottom: 1rem; }
.aa-hero h1 { font-family: var(--aa-font-heading); font-size: 2.5rem; font-weight: 700; color: white; line-height: 1.15; margin-bottom: 1rem; }
@media (min-width: 640px) { .aa-hero h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .aa-hero h1 { font-size: 4rem; } }
.aa-hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.85); max-width: 600px; margin-bottom: 2rem; }

/* Search Bar */
.aa-search-bar { display: flex; background: white; border-radius: var(--aa-radius-lg); overflow: hidden; box-shadow: var(--aa-shadow-lg); max-width: 640px; }
.aa-search-bar input { flex: 1; padding: 16px 20px; border: none; font-size: 1rem; outline: none; min-width: 0; }
.aa-search-bar button { padding: 16px 32px; background: var(--aa-accent); color: white; font-weight: 600; font-size: 1rem; border: none; white-space: nowrap; }
.aa-search-bar button:hover { background: #9a3f2d; }

/* Region Quick Links */
.aa-hero-regions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.aa-hero-region { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border-radius: 999px; color: white; font-size: 0.875rem; font-weight: 500; transition: background 0.2s; }
.aa-hero-region:hover { background: rgba(255,255,255,0.25); }

/* ============= SECTIONS ============= */
.aa-section { padding: 4rem 0; }
.aa-section-header { text-align: center; margin-bottom: 3rem; }
.aa-section-header h2 { font-family: var(--aa-font-heading); font-size: 1.75rem; font-weight: 700; color: var(--aa-text); margin-bottom: 0.5rem; }
.aa-section-header p { color: var(--aa-text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* Value Props */
.aa-values { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .aa-values { grid-template-columns: repeat(3, 1fr); } }
.aa-value { text-align: center; padding: 1.5rem; }
.aa-value-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.aa-value h3 { font-family: var(--aa-font-heading); font-weight: 600; margin-bottom: 0.5rem; }
.aa-value p { color: var(--aa-text-muted); font-size: 0.875rem; }

/* ============= GRID LAYOUTS ============= */
.aa-grid { display: grid; gap: 1.5rem; }
.aa-grid--2 { grid-template-columns: 1fr; }
.aa-grid--3 { grid-template-columns: 1fr; }
.aa-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .aa-grid--2 { grid-template-columns: repeat(2, 1fr); }
    .aa-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .aa-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .aa-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .aa-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============= BROWSE / FILTER ============= */
.aa-browse { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .aa-browse { grid-template-columns: 280px 1fr; } }
.aa-filters { background: white; border: 1px solid var(--aa-border); border-radius: var(--aa-radius-lg); padding: 1.5rem; height: fit-content; position: sticky; top: 80px; }
.aa-filters h3 { font-family: var(--aa-font-heading); font-weight: 600; margin-bottom: 1rem; }
.aa-filter-group { margin-bottom: 1.25rem; }
.aa-filter-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--aa-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.aa-filter-group select,
.aa-filter-group input[type="text"] { width: 100%; padding: 10px 12px; border: 1px solid var(--aa-border); border-radius: var(--aa-radius); font-size: 0.875rem; outline: none; }
.aa-filter-group select:focus,
.aa-filter-group input:focus { border-color: var(--aa-primary); box-shadow: 0 0 0 3px rgba(24,61,51,0.1); }
.aa-checkbox { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.aa-checkbox input { accent-color: var(--aa-primary); width: 16px; height: 16px; }
.aa-checkbox span { font-size: 0.875rem; color: var(--aa-text); }
.aa-results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.aa-results-count { font-size: 0.875rem; color: var(--aa-text-muted); }
.aa-view-toggle { display: flex; gap: 4px; }
.aa-view-toggle button { padding: 8px; border-radius: var(--aa-radius); color: var(--aa-text-muted); }
.aa-view-toggle button.active { background: var(--aa-primary); color: white; }

/* ============= SINGLE LISTING ============= */
.aa-listing-hero { position: relative; height: 400px; overflow: hidden; }
.aa-listing-hero img { width: 100%; height: 100%; object-fit: cover; }
.aa-listing-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%); }
.aa-listing-content { max-width: 960px; margin: -80px auto 0; position: relative; z-index: 10; padding: 0 1rem; }
.aa-listing-main { background: white; border-radius: var(--aa-radius-lg); border: 1px solid var(--aa-border); overflow: hidden; }
.aa-listing-header { padding: 2rem; }
.aa-listing-header h1 { font-family: var(--aa-font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.aa-listing-meta { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--aa-text-muted); font-size: 0.875rem; margin-bottom: 1rem; }
.aa-listing-meta span { display: flex; align-items: center; gap: 4px; }
.aa-listing-body { padding: 0 2rem 2rem; }
.aa-listing-section { margin-bottom: 2rem; }
.aa-listing-section h2 { font-family: var(--aa-font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--aa-border); }

/* Accessibility Grid */
.aa-access-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .aa-access-grid { grid-template-columns: repeat(3, 1fr); } }
.aa-access-item { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: var(--aa-radius); font-size: 0.875rem; }
.aa-access-item--yes { background: #dcfce7; color: #166534; }
.aa-access-item--no { background: #f3f4f6; color: #6b7280; }
.aa-access-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* Contact Sidebar */
.aa-listing-sidebar { margin-top: 2rem; }
@media (min-width: 768px) {
    .aa-listing-body { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; }
    .aa-listing-sidebar { margin-top: 0; }
}
.aa-contact-card { background: var(--aa-bg); border: 1px solid var(--aa-border); border-radius: var(--aa-radius-lg); padding: 1.5rem; }
.aa-contact-card h3 { font-family: var(--aa-font-heading); font-weight: 600; margin-bottom: 1rem; }
.aa-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.875rem; color: var(--aa-text-muted); }
.aa-contact-item a { color: var(--aa-accent); }
.aa-contact-item a:hover { text-decoration: underline; }

/* ============= MAP ============= */
.aa-map-container { height: 400px; border-radius: var(--aa-radius-lg); overflow: hidden; border: 1px solid var(--aa-border); }
#aa-map { height: 100%; width: 100%; }

/* ============= TRIP PLANNER ============= */
.aa-trips-list { display: grid; gap: 1rem; }
.aa-trip-card { background: white; border: 1px solid var(--aa-border); border-radius: var(--aa-radius-lg); padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; transition: box-shadow 0.2s; }
.aa-trip-card:hover { box-shadow: var(--aa-shadow); }
.aa-trip-info h3 { font-family: var(--aa-font-heading); font-weight: 600; margin-bottom: 4px; }
.aa-trip-info p { font-size: 0.875rem; color: var(--aa-text-muted); }
.aa-empty-state { text-align: center; padding: 4rem 2rem; }
.aa-empty-state h3 { font-family: var(--aa-font-heading); font-weight: 600; margin-bottom: 0.5rem; }
.aa-empty-state p { color: var(--aa-text-muted); margin-bottom: 1.5rem; }

/* ============= FORMS ============= */
.aa-form { max-width: 640px; }
.aa-form-group { margin-bottom: 1.25rem; }
.aa-form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--aa-text); margin-bottom: 6px; }
.aa-form-group input,
.aa-form-group select,
.aa-form-group textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--aa-border); border-radius: var(--aa-radius); font-size: 0.875rem; outline: none; transition: border-color 0.2s; }
.aa-form-group input:focus,
.aa-form-group select:focus,
.aa-form-group textarea:focus { border-color: var(--aa-primary); box-shadow: 0 0 0 3px rgba(24,61,51,0.1); }
.aa-form-group textarea { resize: vertical; min-height: 100px; }
.aa-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============= SUBSCRIPTION ============= */
.aa-pricing { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .aa-pricing { grid-template-columns: repeat(3, 1fr); } }
.aa-price-card { background: white; border: 1px solid var(--aa-border); border-radius: var(--aa-radius-lg); padding: 2rem; text-align: center; position: relative; }
.aa-price-card--popular { border: 2px solid var(--aa-accent); box-shadow: var(--aa-shadow-lg); }
.aa-price-card--popular .aa-price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); }
.aa-price-name { font-family: var(--aa-font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.aa-price-amount { font-size: 2.5rem; font-weight: 700; color: var(--aa-text); }
.aa-price-period { font-size: 0.875rem; color: var(--aa-text-muted); }
.aa-price-features { list-style: none; text-align: left; margin: 1.5rem 0; }
.aa-price-features li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: 0.875rem; color: var(--aa-text-muted); }
.aa-price-features li::before { content: ''; display: inline-block; width: 20px; height: 20px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center; flex-shrink: 0; }

/* ============= ABOUT PAGE ============= */
.aa-about-hero { background: var(--aa-primary); color: white; padding: 5rem 0; text-align: center; }
.aa-about-hero h1 { font-family: var(--aa-font-heading); font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.aa-about-hero p { font-size: 1.125rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }
.aa-about-section { padding: 3rem 0; }
.aa-about-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .aa-about-grid { grid-template-columns: 1fr 1fr; } }

/* ============= FOOTER ============= */
.aa-footer { background: var(--aa-primary); color: rgba(255,255,255,0.8); padding: 4rem 0 2rem; }
.aa-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .aa-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.aa-logo--footer span { color: white; }
.aa-footer-brand p { font-size: 0.875rem; margin-top: 0.75rem; line-height: 1.6; }
.aa-footer-links h4 { color: white; font-family: var(--aa-font-heading); font-weight: 600; margin-bottom: 1rem; font-size: 0.9rem; }
.aa-footer-links a { display: block; font-size: 0.875rem; padding: 4px 0; transition: color 0.2s; }
.aa-footer-links a:hover { color: white; }
.aa-footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; font-size: 0.8rem; gap: 0.5rem; }

/* ============= NEAR ME ============= */
.aa-nearme-btn { display: inline-flex; align-items: center; gap: 6px; }
.aa-nearme-btn.active { background: var(--aa-primary); color: white; }
.aa-card-distance { position: absolute; bottom: 12px; right: 12px; }
.aa-badge--distance { background: rgba(24,61,51,0.9); color: white; backdrop-filter: blur(4px); font-size: 0.7rem; padding: 4px 10px; }
.aa-spin-icon { animation: aa-spin 0.8s linear infinite; }
.aa-user-marker-dot { width: 16px; height: 16px; background: #3b82f6; border: 3px solid white; border-radius: 50%; box-shadow: 0 0 0 3px rgba(59,130,246,0.3), 0 2px 8px rgba(0,0,0,0.2); }
.aa-nearme-hero { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--aa-radius-lg); color: white; font-weight: 500; cursor: pointer; transition: all 0.2s; margin-top: 1.5rem; }
.aa-nearme-hero:hover { background: rgba(255,255,255,0.25); transform: translateY(-1px); }

/* ============= LOADING & ANIMATIONS ============= */
.aa-loading { display: flex; align-items: center; justify-content: center; padding: 3rem; }
.aa-spinner { width: 32px; height: 32px; border: 3px solid var(--aa-border); border-top-color: var(--aa-primary); border-radius: 50%; animation: aa-spin 0.8s linear infinite; }
@keyframes aa-spin { to { transform: rotate(360deg); } }

/* Toast / Alert */
.aa-toast { position: fixed; top: 20px; right: 20px; padding: 14px 20px; border-radius: var(--aa-radius); color: white; font-size: 0.875rem; font-weight: 500; z-index: 10000; transform: translateX(120%); transition: transform 0.3s ease; }
.aa-toast.active { transform: translateX(0); }
.aa-toast--success { background: var(--aa-success); }
.aa-toast--error { background: var(--aa-danger); }

/* ============= MOBILE MENU ============= */
.aa-mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; }
.aa-mobile-menu.active { display: block; }
.aa-mobile-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.aa-mobile-panel { position: absolute; right: 0; top: 0; bottom: 0; width: 280px; background: white; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.aa-mobile-panel a { font-size: 1.1rem; font-weight: 500; color: var(--aa-text); padding: 8px 0; }

/* ============= RESPONSIVE TWEAKS ============= */
@media (max-width: 767px) {
    .aa-hero { min-height: 480px; }
    .aa-hero h1 { font-size: 2rem; }
    .aa-search-bar { flex-direction: column; }
    .aa-search-bar input { border-bottom: 1px solid var(--aa-border); }
    .aa-listing-body { display: block; }
    .aa-form-row { grid-template-columns: 1fr; }
}

/* ============= PAGE HEADER ============= */
.aa-page-header { background: var(--aa-primary); padding: 3rem 0; }
.aa-page-header h1 { font-family: var(--aa-font-heading); font-size: 2rem; font-weight: 700; color: white; }
.aa-page-header p { color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

/* ============= VERIFICATION ============= */
.aa-verification { background: white; border: 1px solid var(--aa-border); border-radius: var(--aa-radius); padding: 1rem; margin-bottom: 1rem; }
.aa-verification-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.aa-verification-user { font-weight: 600; font-size: 0.875rem; }
.aa-verification-date { font-size: 0.75rem; color: var(--aa-text-muted); }
.aa-verification-comment { font-size: 0.875rem; color: var(--aa-text-muted); margin-top: 0.5rem; }
.aa-verification-badges { display: flex; gap: 6px; margin-top: 0.5rem; flex-wrap: wrap; }

/* ============= CREATE TRIP MODAL ============= */
.aa-modal-overlay { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.5); align-items: center; justify-content: center; }
.aa-modal-overlay.active { display: flex; }
.aa-modal { background: white; border-radius: var(--aa-radius-lg); padding: 2rem; max-width: 480px; width: 90%; max-height: 90vh; overflow-y: auto; }
.aa-modal h2 { font-family: var(--aa-font-heading); font-weight: 600; margin-bottom: 1.5rem; }
.aa-modal-actions { display: flex; gap: 0.75rem; justify-content: flex-end; margin-top: 1.5rem; }


/* ============= SAVE / HEART BUTTON ON CARDS ============= */
.aa-card { position: relative; }
.aa-card-save {
    position: absolute; top: 12px; right: 12px; z-index: 10;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #4A4D4A; transition: all 0.2s ease; box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.aa-card-save:hover { background: white; transform: scale(1.1); }
.aa-card-save.active { color: #dc2626; }

/* ============= ACCENT BUTTON (Book Now) ============= */
.aa-btn--accent { background: #B34B36; color: white; border: none; }
.aa-btn--accent:hover { background: #983f2e; }

/* ============= WARM BUTTON (Claim) ============= */
.aa-btn--warm { background: #E8D5C4; color: #183D33; border: none; font-weight: 600; }
.aa-btn--warm:hover { background: #dbc7b4; }

/* ============= FORM ROW ============= */
.aa-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .aa-form-row { grid-template-columns: 1fr; } }

/* ============= TABS (My Account) ============= */
.aa-tab {
    padding: 10px 20px; background: none; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem;
    color: #6b7280; border-bottom: 2px solid transparent; margin-bottom: -2px;
    transition: all 0.2s ease;
}
.aa-tab:hover { color: #183D33; }
.aa-tab.active { color: #183D33; border-bottom-color: #183D33; }

/* ============= ACCESSIBILITY GRID ============= */
.aa-access-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.aa-access-item {
    display: flex; align-items: center; gap: 8px; padding: 10px 12px;
    border-radius: 8px; font-size: 0.875rem;
}
.aa-access-item--yes { background: #f0fdf4; color: #166534; }
.aa-access-item--no { background: #fef2f2; color: #991b1b; opacity: 0.6; }
@media (max-width: 640px) { .aa-access-grid { grid-template-columns: 1fr; } }
