/* ============================================================
   RESET & ROOT VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:       #003580;
    --blue-mid:   #0071c2;
    --blue-light: #e8f3ff;
    --blue-hover: #00224f;
    --gold:       #f5a623;
    --white:      #ffffff;
    --off-white:  #f5f7fa;
    --text:       #1a1a2e;
    --text-muted: #6b7280;
    --border:     #e2e8f0;
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
    --radius:     8px;
    --radius-lg:  12px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: var(--blue);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
}
.logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 0.875rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.btn-login {
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.45);
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: border-color 0.2s, background 0.2s;
}
.btn-login:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-register {
    background: var(--white);
    color: var(--blue);
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
}
.btn-register:hover { background: var(--blue-light); }

.btn-list {
    background: var(--gold);
    color: var(--blue);
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 700;
    transition: background 0.2s;
}
.btn-list:hover { background: #e09500; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600&q=80'); }
.hero-slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1547970810-dc1eac37d174?w=1600&q=80'); }
.hero-slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80'); }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,30,80,0.5) 0%, rgba(0,30,80,0.72) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
    max-width: 820px;
    width: 100%;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.88;
    margin-bottom: 2.25rem;
}

.search-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.28);
    max-width: 580px;
    margin: 0 auto;
}
.search-bar select {
    flex: 1;
    border: none;
    padding: 1.05rem 1.25rem;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.search-divider { width: 1px; height: 30px; background: var(--border); flex-shrink: 0; }
.search-btn {
    background: var(--blue-mid);
    color: var(--white);
    border: none;
    padding: 1.05rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.search-btn:hover { background: var(--blue); }
.search-btn svg { width: 18px; height: 18px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--blue);
    padding: 1.4rem 2rem;
    display: flex;
    justify-content: center;
    gap: 5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { text-align: center; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1.1;
}
.stat-label {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-top: 2px;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { padding: 4.5rem 2.5rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 2.75rem; }
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.section-header p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section { background: var(--off-white); }
.categories-section + .counties-section {
    border-top: 6px solid var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.cat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s;
    box-shadow: var(--shadow-sm);
    display: block;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat-img {
    height: 130px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cat-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,30,80,0.55) 0%, transparent 55%);
}
.cat-info { padding: 0.875rem 1rem; }
.cat-info h3 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.cat-info span { font-size: 0.76rem; color: var(--text-muted); }

/* ============================================================
   BROWSE BY COUNTY
   ============================================================ */
.counties-section { background: var(--off-white); }

.county-search-wrap {
    max-width: 420px;
    margin: 0 auto 2rem;
    position: relative;
}
.county-search-wrap svg {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    stroke: var(--text-muted);
}
.county-search-wrap input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}
.county-search-wrap input:focus { border-color: var(--blue-mid); }

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
}
.county-pill {
    background: var(--blue-light);
    border: 1px solid #c3d9f5;
    border-radius: var(--radius);
    padding: 0.7rem 0.875rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    display: block;
}
.county-pill:hover {
    background: #d0e8ff;
    border-color: var(--blue-mid);
    transform: translateY(-2px);
}
.county-pill h3 { font-size: 0.84rem; font-weight: 600; color: var(--blue); }
.county-pill span { font-size: 0.73rem; color: var(--text-muted); display: block; margin-top: 1px; }
.county-pill.hidden { display: none; }

.featured-dest-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 3rem 0 1.25rem;
}
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}
.dest-card {
    position: relative;
    height: 210px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: block;
}
.dest-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,30,80,0.78) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}
.dest-overlay h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
}
.dest-overlay span { color: rgba(255,255,255,0.72); font-size: 0.78rem; margin-top: 3px; display: block; }

/* ============================================================
   LISTINGS SHOWCASE
   ============================================================ */
.listings-section { background: var(--off-white); }

.section-tabs { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 2.25rem; }
.tab-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 24px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.tab-btn.active { border-color: var(--blue-mid); background: var(--blue-mid); color: var(--white); }

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 1.25rem;
}
.listings-loading {
    grid-column: 1/-1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.listing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: pointer;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.listing-img {
    height: 185px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.badge-featured { background: var(--gold); color: var(--blue); }
.badge-new      { background: #00a651; color: var(--white); }
.badge-top      { background: var(--blue-mid); color: var(--white); }

.listing-body { padding: 1rem 1.1rem 1.1rem; }
.listing-body h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.listing-meta { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 7px; }
.listing-meta svg { width: 13px; height: 13px; flex-shrink: 0; }
.listing-type-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
    border: 1px solid #c3d9f5;
}
.stars { color: var(--gold); font-size: 0.82rem; display: flex; align-items: center; gap: 1px; margin-bottom: 8px; }
.stars span { color: var(--text-muted); font-size: 0.74rem; margin-left: 4px; }
.listing-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 9px; margin-top: 4px; }
.listing-price .from { font-size: 0.75rem; color: var(--text-muted); display: block; }
.listing-price strong { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.btn-view {
    background: var(--blue-mid);
    color: var(--white);
    border: none;
    padding: 0.4rem 0.95rem;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}
.btn-view:hover { background: var(--blue); }

.section-link { text-align: center; margin-top: 2.25rem; }
.section-link a { color: var(--blue-mid); font-weight: 600; font-size: 0.9rem; border-bottom: 2px solid transparent; transition: border-color 0.2s; padding-bottom: 2px; }
.section-link a:hover { border-color: var(--blue-mid); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--blue);
    padding: 5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -90px; left: -50px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 2.25rem; font-size: 1rem; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-primary {
    background: var(--gold);
    color: var(--blue);
    border: none;
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}
.btn-primary:hover { background: #e09500; }
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: border-color 0.2s;
    display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #001a40;
    color: rgba(255,255,255,0.72);
    padding: 4.5rem 2.5rem 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.footer-logo { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.2rem; font-weight: 700; display: inline-block; margin-bottom: 1rem; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.84rem; line-height: 1.75; opacity: 0.68; margin-bottom: 1.5rem; }
.newsletter { display: flex; }
.newsletter input {
    flex: 1;
    padding: 0.62rem 1rem;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.07);
    color: var(--white);
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.84rem;
    outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.38); }
.newsletter button {
    background: var(--blue-mid);
    color: var(--white);
    border: none;
    padding: 0.62rem 1rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-size: 0.84rem;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s;
}
.newsletter button:hover { background: var(--blue); }
.footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.07em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.58); font-size: 0.84rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; opacity: 0.45; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { color: rgba(255,255,255,0.58); width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 600; transition: color 0.2s, border-color 0.2s; }
.social-links a:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ============================================================
   RESULTS PAGE
   ============================================================ */
.results-header { background: var(--blue); padding: 1.75rem 2.5rem; }
.results-header-inner { max-width: 1200px; margin: 0 auto; }
.results-breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 0.6rem; }
.results-breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.results-breadcrumb a:hover { color: var(--white); }
.results-summary h1 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.results-summary p { font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.results-summary p strong { color: var(--gold); }

.filter-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 2.5rem; position: sticky; top: 68px; z-index: 900; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.filter-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 160px; }
.filter-group label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.filter-group select { padding: 0.6rem 0.875rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--text); background: var(--white); cursor: pointer; outline: none; transition: border-color 0.2s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.25rem; }
.filter-group select:focus { border-color: var(--blue-mid); }
.filter-search-btn { background: var(--blue-mid); color: var(--white); border: none; padding: 0.65rem 1.5rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; gap: 6px; white-space: nowrap; align-self: flex-end; }
.filter-search-btn:hover { background: var(--blue); }
.filter-search-btn svg { width: 16px; height: 16px; }

.results-section { background: var(--off-white); padding: 2.5rem 2.5rem 4rem; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.page-btn { width: 38px; height: 38px; border: 1.5px solid var(--border); background: var(--white); color: var(--text); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.page-btn:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
.page-btn.active { background: var(--blue-mid); border-color: var(--blue-mid); color: var(--white); }
.page-dots { color: var(--text-muted); font-size: 0.875rem; padding: 0 0.25rem; }
.page-next { padding: 0 1.25rem; height: 38px; border: 1.5px solid var(--blue-mid); background: var(--white); color: var(--blue-mid); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.page-next:hover { background: var(--blue-mid); color: var(--white); }

/* ============================================================
   LISTING PAGE — BOOKING.COM STYLE
   ============================================================ */
.listing-page-wrap { background: var(--off-white); padding: 0 0 4rem; }

.listing-breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0.875rem 2.5rem; }
.listing-breadcrumb-bar .container { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); }
.listing-breadcrumb-bar a { color: var(--blue-mid); transition: color 0.2s; }
.listing-breadcrumb-bar a:hover { color: var(--blue); }

.listing-business-header { background: var(--white); padding: 1.5rem 2.5rem 1.25rem; border-bottom: 1px solid var(--border); }
.listing-business-header .container { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.listing-biz-left h1 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.listing-biz-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.listing-stars { color: var(--gold); font-size: 1rem; }
.listing-type-tag { background: var(--blue-light); color: var(--blue); font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; border: 1px solid #c3d9f5; }
.listing-plan-badge { font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.listing-plan-free { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.listing-plan-premium { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.listing-address-line { display: flex; align-items: center; gap: 5px; font-size: 0.85rem; color: var(--text-muted); }
.listing-address-line svg { width: 14px; height: 14px; stroke: var(--blue-mid); flex-shrink: 0; }
.listing-address-line a { color: var(--blue-mid); font-weight: 500; margin-left: 4px; }

.listing-two-col { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; max-width: 1200px; margin: 1.5rem auto 0; padding: 0 2.5rem; }

.listing-left { display: flex; flex-direction: column; gap: 1.25rem; }
.listing-right { display: flex; flex-direction: column; gap: 1.25rem; }

.listing-section-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.5rem; }
.listing-section-card h2 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 1.1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; }
.premium-tag { background: var(--gold); color: var(--blue); font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; }

/* Photo Grid */
.photo-grid-main { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 4px; border-radius: var(--radius-lg); overflow: hidden; }
.photo-main-large { grid-row: span 2; background-size: cover; background-position: center; position: relative; }
.photo-sm-top { background-size: cover; background-position: center; }
.photo-sm-bottom { background-size: cover; background-position: center; position: relative; }
.photo-more-overlay { position: absolute; inset: 0; background: rgba(0,30,80,0.65); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.photo-more-overlay span { color: var(--white); font-size: 1rem; font-weight: 700; }
.photo-thumbs-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin-top: 4px; }
.photo-thumb { height: 80px; background-size: cover; background-position: center; border-radius: 4px; position: relative; overflow: hidden; cursor: pointer; transition: opacity 0.2s; }
.photo-thumb:hover { opacity: 0.85; }
.photo-thumb-more { background: rgba(0,30,80,0.75); display: flex; align-items: center; justify-content: center; }
.photo-thumb-more span { color: var(--white); font-size: 0.85rem; font-weight: 700; }
.photo-single { height: 400px; background-size: cover; background-position: center; border-radius: var(--radius-lg); }

/* About */
.listing-about { font-size: 0.95rem; line-height: 1.8; color: var(--text); }

/* Video */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: var(--radius); }

/* Reviews */
.reviews-summary { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.reviews-score-big { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--blue); line-height: 1; }
.reviews-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 3px; }
.reviews-count { font-size: 0.82rem; color: var(--text-muted); }
.reviews-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.review-item { padding: 1rem; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border); }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; }
.reviewer-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.reviewer-date { font-size: 0.75rem; color: var(--text-muted); }
.review-rating { color: var(--gold); font-size: 0.85rem; margin-left: auto; }
.review-text { font-size: 0.875rem; line-height: 1.7; color: var(--text); }
.review-form-wrap { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.review-form-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.review-form { display: flex; flex-direction: column; gap: 0.875rem; }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group textarea { padding: 0.65rem 0.875rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--text); outline: none; transition: border-color 0.2s; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue-mid); }
.star-rating { display: flex; gap: 4px; }
.star-rating .star { font-size: 1.75rem; color: var(--border); cursor: pointer; transition: color 0.15s; }
.star-rating .star.active { color: var(--gold); }
.btn-submit-review, .btn-submit-enquiry { background: var(--blue-mid); color: var(--white); border: none; padding: 0.8rem 1.75rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s; align-self: flex-start; }
.btn-submit-review:hover, .btn-submit-enquiry:hover { background: var(--blue); }

/* Sidebar */
.sidebar-score-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; position: sticky; top: 88px; }
.score-header { background: var(--blue); padding: 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.score-label { color: var(--white); font-size: 1rem; font-weight: 600; }
.score-badge { background: var(--gold); color: var(--blue); font-size: 1.1rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: var(--radius); }
.score-review-count { color: rgba(255,255,255,0.7); font-size: 0.78rem; margin-top: 2px; }
.top-review-wrap { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.top-review-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; }
.top-review-text { font-size: 0.82rem; line-height: 1.6; color: var(--text); font-style: italic; margin-bottom: 0.6rem; }
.top-reviewer { display: flex; align-items: center; gap: 6px; }
.top-reviewer-av { width: 24px; height: 24px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
.top-reviewer span { font-size: 0.78rem; color: var(--text-muted); }
.location-wrap { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.location-score-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.location-score-label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.location-score-num { border: 1.5px solid var(--border); padding: 0.2rem 0.6rem; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; color: var(--text); }
.location-address { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.75rem; }
.btn-map-view { display: block; text-align: center; background: var(--blue-light); color: var(--blue); border: 1px solid #c3d9f5; padding: 0.5rem; border-radius: var(--radius); font-size: 0.82rem; font-weight: 600; transition: background 0.2s; }
.btn-map-view:hover { background: #d0e8ff; }
.contact-wrap { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.6rem; }
.contact-btn-phone { background: var(--blue); color: var(--white); border: none; padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s; text-decoration: none; }
.contact-btn-phone:hover { background: var(--blue-hover); }
.contact-btn-whatsapp { background: #25D366; color: var(--white); border: none; padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: opacity 0.2s; text-decoration: none; }
.contact-btn-whatsapp:hover { opacity: 0.9; }
.enquiry-form-wrap { padding: 1rem 1.25rem; }
.enquiry-form-title { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 0.875rem; }
.enquiry-form { display: flex; flex-direction: column; gap: 0.75rem; }

/* Social links */
.social-links-wrap { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link-btn { display: flex; align-items: center; gap: 8px; background: var(--blue-light); border: 1px solid #c3d9f5; color: var(--blue); padding: 0.5rem 1rem; border-radius: var(--radius); font-size: 0.82rem; font-weight: 500; transition: background 0.2s; }
.social-link-btn:hover { background: #d0e8ff; }

/* Related */
.related-section { max-width: 1200px; margin: 1.5rem auto 0; padding: 0 2.5rem; }
.related-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 1.25rem; }

/* ============================================================
   REGISTRATION PAGE
   ============================================================ */
.reg-header { background: var(--blue); padding: 2.5rem; text-align: center; }
.reg-header-inner { max-width: 700px; margin: 0 auto; }
.reg-header h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.reg-header p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.reg-wrap { background: var(--off-white); padding: 2.5rem 2.5rem 5rem; min-height: 60vh; }
.reg-container { max-width: 860px; margin: 0 auto; }
.plan-comparison { margin-bottom: 2rem; }
.plan-title { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--text); text-align: center; margin-bottom: 0.4rem; }
.plan-subtitle { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.plan-card { background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--border); overflow: hidden; cursor: pointer; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; position: relative; }
.plan-card:hover { border-color: var(--blue-mid); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan-card.selected { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(0,113,194,0.15); }
.plan-card-premium { border-color: var(--gold); }
.plan-card-premium:hover { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,0.15); }
.plan-card-premium.selected { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,0.2); }
.plan-badge-wrap { position: absolute; top: 12px; right: 12px; }
.plan-recommended { background: var(--gold); color: var(--blue); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.plan-card-header { padding: 1.5rem 1.5rem 1.25rem; }
.plan-free-header { background: var(--off-white); border-bottom: 1px solid var(--border); }
.plan-premium-header { background: var(--blue); border-bottom: 1px solid rgba(255,255,255,0.1); }
.plan-premium-header .plan-name { color: var(--white); }
.plan-premium-header .plan-price { color: var(--gold); }
.plan-premium-header .plan-price-annual { color: rgba(255,255,255,0.65); }
.plan-name { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--blue); }
.plan-price span { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.plan-price-annual { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.plan-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.plan-features li { font-size: 0.85rem; }
.feature-yes { color: var(--text); }
.feature-no { color: var(--text-muted); }
.plan-select-btn { width: 100%; padding: 0.8rem; border: none; border-radius: var(--radius); font-size: 0.9rem; font-weight: 700; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; }
.plan-free-btn { background: var(--blue-light); color: var(--blue); border: 2px solid var(--blue-mid); }
.plan-free-btn:hover { background: var(--blue-mid); color: var(--white); }
.plan-premium-btn { background: var(--gold); color: var(--blue); }
.plan-premium-btn:hover { background: #e09500; }
.step-indicator { display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; gap: 0; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; transition: all 0.3s; }
.step-item.active .step-circle { background: var(--blue-mid); color: var(--white); }
.step-item.done .step-circle { background: #00a651; color: var(--white); }
.step-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.step-item.active .step-label { color: var(--blue-mid); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 0.5rem; margin-bottom: 22px; min-width: 40px; }
.selected-plan-bar { background: var(--blue-light); border: 1px solid #c3d9f5; border-radius: var(--radius); padding: 0.75rem 1.25rem; display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; font-size: 0.875rem; font-weight: 600; color: var(--blue); }
.change-plan-btn { background: none; border: 1px solid var(--blue-mid); color: var(--blue-mid); padding: 0.3rem 0.875rem; border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; }
.change-plan-btn:hover { background: var(--blue-mid); color: var(--white); }
.reg-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2rem; margin-bottom: 1.5rem; }
.reg-step-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 1.75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.reg-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; display: block; }
.required { color: #e53e3e; }
.reg-step-actions { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: 0.5rem; }
.btn-next { background: var(--blue-mid); color: var(--white); border: none; padding: 0.875rem 2rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 700; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
.btn-next:hover { background: var(--blue); }
.btn-back { background: var(--white); color: var(--text-muted); border: 1.5px solid var(--border); padding: 0.875rem 1.5rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-back:hover { border-color: var(--text-muted); color: var(--text); }
.btn-submit { background: #00a651; color: var(--white); border: none; padding: 0.875rem 2.5rem; border-radius: var(--radius); font-size: 1rem; font-weight: 700; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: #008040; }
.photo-upload-box { border: 2px dashed var(--border); border-radius: var(--radius-lg); min-height: 140px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; overflow: hidden; }
.photo-upload-box:hover { border-color: var(--blue-mid); background: var(--blue-light); }
.photo-upload-placeholder { text-align: center; padding: 1.5rem; }
.upload-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.photo-upload-placeholder p { font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.upload-hint { font-size: 0.75rem; color: var(--text-muted); }
.photo-preview-wrap img { width: 100%; max-height: 200px; object-fit: cover; }
.three-photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.875rem; }
.photo-slot { display: flex; flex-direction: column; gap: 0.4rem; }
.photo-slot-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.additional-photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.add-photo-box { border: 2px dashed var(--border); border-radius: var(--radius); height: 90px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.add-photo-box:hover { border-color: var(--blue-mid); background: var(--blue-light); color: var(--blue-mid); }
.add-photo-box.has-photo { border-style: solid; border-color: var(--blue-mid); }
.premium-section-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.premium-section-header h3 { font-size: 1rem; font-weight: 600; color: var(--text); }
.premium-section-header p { font-size: 0.82rem; color: var(--text-muted); width: 100%; margin-top: -0.5rem; }
.confirm-summary { background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.5rem; margin-bottom: 1.5rem; }
.confirm-summary-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.confirm-rows { display: flex; flex-direction: column; }
.confirm-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.confirm-row:last-child { border-bottom: none; }
.confirm-label { color: var(--text-muted); font-weight: 500; }
.confirm-value { color: var(--text); font-weight: 600; text-align: right; max-width: 60%; }
.confirm-notice { background: var(--blue-light); border: 1px solid #c3d9f5; border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; gap: 0.875rem; align-items: flex-start; margin-bottom: 1.5rem; font-size: 0.875rem; color: var(--text); line-height: 1.6; }
.confirm-notice span { font-size: 1.25rem; flex-shrink: 0; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--text); cursor: pointer; line-height: 1.6; }
.checkbox-label input { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; cursor: pointer; }
.terms-link { color: var(--blue-mid); text-decoration: underline; }
.reg-success { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 4rem 2rem; text-align: center; }
.success-icon { font-size: 4rem; margin-bottom: 1.25rem; display: block; }
.reg-success h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.reg-success p { color: var(--text-muted); font-size: 0.95rem; max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }
.success-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-wrap { background: var(--off-white); min-height: calc(100vh - 68px); display: flex; align-items: center; padding: 3rem 2.5rem; }
.login-container { max-width: 1000px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.login-left { background: var(--blue); border-radius: var(--radius-lg); padding: 2.5rem; height: 100%; display: flex; align-items: center; }
.login-left-inner { width: 100%; }
.login-logo { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.3rem; font-weight: 700; display: inline-block; margin-bottom: 1.75rem; }
.login-logo span { color: var(--gold); }
.login-left h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.login-left > .login-left-inner > p { color: rgba(255,255,255,0.72); font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; }
.login-features { display: flex; flex-direction: column; gap: 1.25rem; }
.login-feature { display: flex; gap: 1rem; align-items: flex-start; }
.login-feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.login-feature strong { display: block; color: var(--white); font-size: 0.875rem; margin-bottom: 2px; }
.login-feature p { color: rgba(255,255,255,0.62); font-size: 0.8rem; line-height: 1.5; margin: 0; }
.login-right { display: flex; flex-direction: column; gap: 1rem; }
.login-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2.25rem 2rem; }
.login-title { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.login-subtitle { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.75rem; }
.login-form { display: flex; flex-direction: column; gap: 1.1rem; }
.password-wrap { position: relative; }
.password-wrap input { width: 100%; padding-right: 3rem; }
.toggle-password { position: absolute; right: 0.875rem; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 1rem; padding: 0; line-height: 1; }
.login-options { display: flex; justify-content: space-between; align-items: center; }
.forgot-link { color: var(--blue-mid); font-size: 0.82rem; font-weight: 500; transition: color 0.2s; }
.forgot-link:hover { color: var(--blue); text-decoration: underline; }
.btn-login-submit { background: var(--blue-mid); color: var(--white); border: none; padding: 0.95rem; border-radius: var(--radius); font-size: 1rem; font-weight: 700; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s; width: 100%; margin-top: 0.25rem; }
.btn-login-submit:hover { background: var(--blue); }
.login-divider { text-align: center; position: relative; color: var(--text-muted); font-size: 0.82rem; }
.login-divider::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--border); }
.login-divider span { background: var(--white); padding: 0 0.875rem; position: relative; z-index: 1; }
.btn-register-link { display: block; text-align: center; background: var(--white); color: var(--blue-mid); border: 2px solid var(--blue-mid); padding: 0.875rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 700; transition: all 0.2s; }
.btn-register-link:hover { background: var(--blue-mid); color: var(--white); }
.admin-login-note { text-align: center; font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.admin-login-note a { color: var(--blue-mid); font-weight: 600; transition: color 0.2s; }
.admin-login-note a:hover { color: var(--blue); }

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-nav { background: var(--blue); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.dashboard-nav-right { display: flex; align-items: center; gap: 1rem; }
.dashboard-user { color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.btn-view-listing { background: rgba(255,255,255,0.12); color: var(--white); padding: 0.4rem 1rem; border-radius: var(--radius); font-size: 0.82rem; font-weight: 500; transition: background 0.2s; }
.btn-view-listing:hover { background: rgba(255,255,255,0.2); }
.btn-logout { background: var(--gold); color: var(--blue); padding: 0.4rem 1rem; border-radius: var(--radius); font-size: 0.82rem; font-weight: 700; transition: background 0.2s; }
.btn-logout:hover { background: #e09500; }
.dashboard-wrap { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 64px); }
.dashboard-sidebar { background: var(--white); border-right: 1px solid var(--border); display: flex; flex-direction: column; position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto; }
.sidebar-business { padding: 1.5rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.875rem; }
.sidebar-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; flex-shrink: 0; }
.sidebar-business-name { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.sidebar-status { font-size: 0.72rem; font-weight: 600; }
.sidebar-status-pending { color: #d97706; }
.sidebar-status-live { color: #00a651; }
.sidebar-nav { padding: 1rem 0; flex: 1; display: flex; flex-direction: column; }
.sidebar-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; color: var(--text-muted); font-size: 0.875rem; font-weight: 500; transition: all 0.2s; position: relative; }
.sidebar-link:hover { background: var(--off-white); color: var(--text); }
.sidebar-link.active { background: var(--blue-light); color: var(--blue); font-weight: 600; border-right: 3px solid var(--blue-mid); }
.sidebar-icon { font-size: 1rem; width: 20px; text-align: center; }
.sidebar-badge { background: #e53e3e; color: var(--white); font-size: 0.65rem; font-weight: 700; padding: 1px 6px; border-radius: 20px; margin-left: auto; }
.sidebar-upgrade { color: var(--gold) !important; font-weight: 600 !important; }
.sidebar-upgrade:hover { background: #fff8e6 !important; }
.sidebar-upgrade.active { background: #fff8e6 !important; border-right-color: var(--gold) !important; }
.sidebar-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border); }
.sidebar-logout { color: var(--text-muted); font-size: 0.82rem; transition: color 0.2s; }
.sidebar-logout:hover { color: #e53e3e; }
.dashboard-main { background: var(--off-white); padding: 2rem 2.5rem; overflow-y: auto; }
.dash-section-header { margin-bottom: 1.75rem; }
.dash-section-header h1 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.dash-section-header p { color: var(--text-muted); font-size: 0.875rem; }
.status-banner { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.75rem; font-size: 0.875rem; line-height: 1.6; }
.status-banner-icon { font-size: 1.4rem; flex-shrink: 0; }
.status-banner strong { display: block; font-weight: 600; margin-bottom: 2px; }
.status-banner p { margin: 0; opacity: 0.85; }
.status-pending { background: #fef3c7; border: 1px solid #fcd34d; color: #92400e; }
.status-live { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.status-rejected { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.stats-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.75rem; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.25rem; display: flex; align-items: center; gap: 1rem; }
.stat-card-icon { font-size: 2rem; flex-shrink: 0; }
.stat-card-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 3px; }
.stat-card-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.stat-card-change { font-size: 0.72rem; font-weight: 600; }
.positive { color: #00a651; }
.negative { color: #e53e3e; }
.neutral { color: var(--text-muted); }
.dash-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.5rem 1.75rem; margin-bottom: 1.5rem; }
.dash-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.dash-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.dash-card-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-top: -0.875rem; margin-bottom: 1.25rem; }
.dash-card-link { color: var(--blue-mid); font-size: 0.82rem; font-weight: 600; transition: color 0.2s; }
.dash-card-link:hover { color: var(--blue); }
.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.quick-action-btn { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--text); cursor: pointer; transition: all 0.2s; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
.quick-action-btn span { font-size: 1.5rem; }
.quick-action-btn:hover { border-color: var(--blue-mid); background: var(--blue-light); color: var(--blue); }
.enquiries-list { display: flex; flex-direction: column; }
.enquiry-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.enquiry-item:last-child { border-bottom: none; }
.enquiry-item.unread { background: #f0f7ff; margin: 0 -1.75rem; padding: 1.1rem 1.75rem; }
.enquiry-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; flex-shrink: 0; }
.enquiry-info { flex: 1; min-width: 0; }
.enquiry-name { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.enquiry-email { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.enquiry-message { font-size: 0.82rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 400px; }
.enquiry-message-full { font-size: 0.82rem; color: var(--text); line-height: 1.6; margin-bottom: 4px; }
.enquiry-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.unread-dot { color: var(--blue-mid); font-size: 0.6rem; }
.btn-reply { background: var(--blue-mid); color: var(--white); padding: 0.4rem 1rem; border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; white-space: nowrap; transition: background 0.2s; flex-shrink: 0; display: inline-block; }
.btn-reply:hover { background: var(--blue); }
.full-enquiries .enquiry-item { padding: 1.25rem 0; }
.full-enquiries .enquiry-item.unread { padding: 1.25rem 1.75rem; }
.enquiry-actions { display: flex; flex-direction: column; gap: 0.5rem; flex-shrink: 0; }
.btn-mark-read { background: none; border: 1px solid var(--border); color: var(--text-muted); padding: 0.35rem 0.75rem; border-radius: var(--radius); font-size: 0.72rem; font-weight: 500; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-mark-read:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
.reviews-manage-list { display: flex; flex-direction: column; gap: 1.25rem; }
.review-manage-item { background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.25rem; }
.pending-review { border-color: #fcd34d; background: #fffbeb; }
.review-manage-header { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 0.875rem; }
.review-manage-text { font-size: 0.875rem; line-height: 1.7; color: var(--text); margin-bottom: 1rem; }
.review-manage-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.review-status-badge { font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-left: auto; }
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-approved { background: #d1fae5; color: #065f46; }
.badge-rejected { background: #fee2e2; color: #991b1b; }
.btn-approve { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; padding: 0.4rem 0.875rem; border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; }
.btn-approve:hover { background: #00a651; color: var(--white); border-color: #00a651; }
.btn-reject { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; padding: 0.4rem 0.875rem; border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; }
.btn-reject:hover { background: #e53e3e; color: var(--white); border-color: #e53e3e; }
.btn-reply-review { background: var(--blue-light); color: var(--blue); border: 1px solid #c3d9f5; padding: 0.4rem 0.875rem; border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; }
.btn-reply-review:hover { background: var(--blue-mid); color: var(--white); border-color: var(--blue-mid); }
.current-photo-wrap { display: flex; gap: 1rem; align-items: flex-start; flex-wrap: wrap; }
.current-photo { width: 280px; height: 180px; border-radius: var(--radius); background-size: cover; background-position: center; position: relative; flex-shrink: 0; }
.photo-delete-btn { position: absolute; top: 8px; right: 8px; background: rgba(229,62,62,0.9); color: var(--white); border: none; padding: 3px 8px; border-radius: var(--radius); font-size: 0.72rem; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.small-upload { width: 160px; height: 180px; min-height: unset; flex-direction: column; }
.gallery-manage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.875rem; }
.gallery-manage-item { height: 120px; border-radius: var(--radius); background-size: cover; background-position: center; position: relative; }
.dash-form-actions { display: flex; align-items: center; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: 0.5rem; }
.btn-save { background: var(--blue-mid); color: var(--white); border: none; padding: 0.75rem 2rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 700; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s; }
.btn-save:hover { background: var(--blue); }
.save-note { font-size: 0.78rem; color: var(--text-muted); }
.premium-only-section { background: #fffbeb; border: 1px solid #fcd34d; border-radius: var(--radius); padding: 1.25rem; display: flex; flex-direction: column; gap: 1.25rem; }
.premium-only-header { display: flex; align-items: center; gap: 0.75rem; }
.premium-only-header h3 { font-size: 1rem; font-weight: 600; color: var(--text); }
.notification-prefs { display: flex; flex-direction: column; gap: 0.875rem; }
.danger-zone { border-color: #fca5a5; }
.danger-title { color: #991b1b; }
.danger-text { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.btn-delete-listing { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; padding: 0.7rem 1.5rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; }
.btn-delete-listing:hover { background: #e53e3e; color: var(--white); border-color: #e53e3e; }
.upgrade-comparison { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; align-items: center; margin-bottom: 2rem; }
.upgrade-current, .upgrade-premium { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.5rem; }
.upgrade-premium { border-color: var(--gold); background: #fffbeb; }
.upgrade-arrow { font-size: 2rem; color: var(--text-muted); text-align: center; }
.upgrade-plan-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.4rem; }
.upgrade-plan-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.premium-name { color: var(--blue); }
.upgrade-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.upgrade-features li { font-size: 0.82rem; }
.upgrade-pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 600px; margin-bottom: 1.5rem; }
.upgrade-price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; position: relative; }
.upgrade-price-card-best { border-color: var(--gold); background: #fffbeb; }
.upgrade-best-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--blue); font-size: 0.72rem; font-weight: 700; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.upgrade-price-period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.upgrade-price-amount { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--blue); margin-bottom: 0.4rem; }
.upgrade-price-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.btn-upgrade-now { background: var(--gold); color: var(--blue); border: none; padding: 0.75rem 1.5rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 700; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s; width: 100%; }
.btn-upgrade-now:hover { background: #e09500; }
.upgrade-contact { font-size: 0.875rem; color: var(--text-muted); }
.upgrade-contact a { color: var(--blue-mid); font-weight: 600; }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-nav { background: #001a40; }
.admin-badge { background: #e53e3e; color: var(--white); font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; font-family: 'DM Sans', sans-serif; vertical-align: middle; margin-left: 6px; }
.admin-avatar { background: #e53e3e; }
.admin-stats-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 1.75rem; }
.admin-filters { display: flex; gap: 0.875rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.admin-search { flex: 1; min-width: 200px; padding: 0.65rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--text); outline: none; transition: border-color 0.2s; }
.admin-search:focus { border-color: var(--blue-mid); }
.admin-filter-select { padding: 0.65rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--text); background: var(--white); outline: none; cursor: pointer; transition: border-color 0.2s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.25rem; }
.admin-filter-select:focus { border-color: var(--blue-mid); }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.admin-table th { background: var(--off-white); padding: 0.75rem 1rem; text-align: left; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }
.table-actions { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.plan-pill { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; white-space: nowrap; }
.plan-premium { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.plan-free { background: var(--blue-light); color: var(--blue); border: 1px solid #c3d9f5; }
.status-pill { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; white-space: nowrap; }
.status-live { background: #d1fae5; color: #065f46; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-rejected { background: #fee2e2; color: #991b1b; }
.btn-table-approve { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; padding: 0.3rem 0.75rem; border-radius: var(--radius); font-size: 0.75rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-table-approve:hover { background: #00a651; color: var(--white); border-color: #00a651; }
.btn-table-reject { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; padding: 0.3rem 0.75rem; border-radius: var(--radius); font-size: 0.75rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-table-reject:hover { background: #e53e3e; color: var(--white); border-color: #e53e3e; }
.btn-table-view { background: var(--blue-light); color: var(--blue); border: 1px solid #c3d9f5; padding: 0.3rem 0.75rem; border-radius: var(--radius); font-size: 0.75rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; white-space: nowrap; display: inline-block; }
.btn-table-view:hover { background: var(--blue-mid); color: var(--white); border-color: var(--blue-mid); }
.btn-table-edit { background: var(--off-white); color: var(--text); border: 1px solid var(--border); padding: 0.3rem 0.75rem; border-radius: var(--radius); font-size: 0.75rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-table-edit:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
.btn-table-feature { background: var(--off-white); color: var(--text-muted); border: 1px solid var(--border); padding: 0.3rem 0.75rem; border-radius: var(--radius); font-size: 0.75rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-table-feature:hover { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.btn-table-feature.featured { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.btn-table-delete { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; padding: 0.3rem 0.75rem; border-radius: var(--radius); font-size: 0.75rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-table-delete:hover { background: #e53e3e; color: var(--white); border-color: #e53e3e; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .listing-two-col { grid-template-columns: 1fr 300px; }
    .admin-stats-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .navbar { padding: 0 1rem; }
   .nav-links { display: none; }
   .hamburger { display: none; }
   .dashboard-nav .nav-links { display: none; }
.dashboard-nav .nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #001a40; padding: 1rem 1.5rem; gap: 0; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--blue); padding: 1rem 1.5rem; gap: 0; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.nav-links.mobile-open a { padding: 0.875rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--white); font-size: 0.95rem; }
.nav-links.mobile-open a:last-child { border-bottom: none; }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav-right { gap: 0.5rem; }
    .btn-list { display: none; }
    .hero-content h1 { font-size: 1.9rem; }
    .hero { height: 460px; }
    .stats-bar { gap: 1.5rem; flex-wrap: wrap; padding: 1.25rem 1rem; }
    section { padding: 3rem 1rem; }
    @media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
    
    .county-pill-carousel { width: calc((100% - 0.75rem) / 2); min-width: 140px; }
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .listings-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .filter-bar { padding: 1rem; top: 0; position: relative; }
    .filter-bar-inner { flex-direction: column; }
    .filter-group { min-width: 100%; }
    .filter-search-btn { width: 100%; justify-content: center; }
    .results-section { padding: 1.5rem 1rem 3rem; }
    .results-grid { grid-template-columns: 1fr; }
    .results-header { padding: 1.25rem 1rem; }
    .listing-two-col { grid-template-columns: 1fr; padding: 0 1rem; }
    .listing-breadcrumb-bar { padding: 0.875rem 1rem; }
    .listing-business-header { padding: 1.25rem 1rem; }
    .related-section { padding: 0 1rem; }
    .sidebar-score-card { position: relative; top: 0; }
    .photo-grid-main { grid-template-rows: 160px 160px; }
    .form-row-two { grid-template-columns: 1fr; }
    .login-wrap { padding: 1.5rem 1rem; align-items: flex-start; }
    .login-container { grid-template-columns: 1fr; gap: 1.5rem; }
    .login-left { display: none; }
    .login-card { padding: 1.75rem 1.25rem; }
    .dashboard-wrap { grid-template-columns: 1fr; }
    .dashboard-sidebar { position: relative; top: 0; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
    .sidebar-nav { flex-direction: row; overflow-x: auto; padding: 0.5rem; }
    .sidebar-link { flex-direction: column; gap: 3px; padding: 0.5rem 0.75rem; font-size: 0.7rem; text-align: center; white-space: nowrap; border-right: none !important; }
    .sidebar-link.active { border-bottom: 3px solid var(--blue-mid); border-right: none; }
    .sidebar-business { display: none; }
    .sidebar-footer { display: none; }
    .dashboard-main { padding: 1.25rem 1rem; }
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
    .quick-actions { grid-template-columns: repeat(2, 1fr); }
    .upgrade-comparison { grid-template-columns: 1fr; }
    .upgrade-arrow { transform: rotate(90deg); }
    .upgrade-pricing-cards { grid-template-columns: 1fr; }
    .dashboard-nav { padding: 0 1rem; }
    .dashboard-user { display: none; }
    .admin-stats-cards { grid-template-columns: repeat(2, 1fr); }
    .admin-filters { flex-direction: column; }
    .admin-search { min-width: unset; }
    .reg-wrap { padding: 1.5rem 1rem 4rem; }
    .plans-grid { grid-template-columns: 1fr; }
    .reg-card { padding: 1.25rem 1rem; }
    .reg-step-actions { flex-direction: column-reverse; gap: 0.75rem; }
    .btn-next, .btn-back, .btn-submit { width: 100%; text-align: center; }
    .three-photos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .categories-section { padding: 2rem 0.75rem; }
    .categories-section .container { padding: 1.25rem 0.875rem; border-radius: 12px; }
    .counties-section { padding: 2rem 0.75rem; }
    .counties-section .container { padding: 1.25rem 0.875rem; border-radius: 12px; }
    .county-pill-carousel h3 { font-size: 0.78rem; }
    .county-pill-carousel span { font-size: 0.68rem; }
    .cat-info h3 { font-size: 0.78rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.5rem; }
    .search-bar { flex-direction: column; border-radius: var(--radius); }
    .search-bar select { width: 100%; border-radius: var(--radius) var(--radius) 0 0; }
    .search-divider { width: 100%; height: 1px; }
    .search-btn { width: 100%; justify-content: center; border-radius: 0 0 var(--radius) var(--radius); }
    .stat-num { font-size: 1.4rem; }
    .photo-thumbs-row { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   COUNTIES CAROUSEL
   ============================================================ */
.counties-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
    font-size: 1rem;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.carousel-arrow:hover {
    border-color: var(--blue-mid);
    color: var(--blue-mid);
    box-shadow: var(--shadow-md);
}
.carousel-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.counties-carousel {
    display: flex;
    gap: 0.75rem;
    overflow: hidden;
    flex: 1;
}
.county-pill-carousel {
    background: var(--blue-light);
    border: 1px solid #c3d9f5;
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    display: block;
    flex-shrink: 0;
    width: calc((100% - 3.75rem) / 6);
    white-space: nowrap;
}
.county-pill-carousel:hover {
    background: #d0e8ff;
    border-color: var(--blue-mid);
    transform: translateY(-2px);
}
.county-pill-carousel h3 {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--blue);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.county-pill-carousel span {
    font-size: 0.73rem;
    color: var(--text-muted);
    display: block;
    margin-top: 1px;
}

@media (max-width: 768px) {
    .county-pill-carousel {
        width: calc((100% - 1.5rem) / 3);
    }
}

@media (max-width: 480px) {
    .county-pill-carousel {
        width: calc((100% - 0.75rem) / 2);
    }
}

/* ============================================================
   HOMEPAGE CATEGORY ROWS
   ============================================================ */
.category-rows-section {
    background: var(--white);
    padding: 4.5rem 2.5rem;
}
.category-row {
    margin-bottom: 3.5rem;
}
.category-row:last-child { margin-bottom: 0; }
.category-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.category-row-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.category-row-title span {
    font-size: 1.1rem;
}
.category-row-link {
    color: var(--blue-mid);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s;
}
.category-row-link:hover { color: var(--blue); }

.category-cards-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.category-cards-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    flex: 1;
    overflow: hidden;
}
.cat-row-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
    font-size: 0.875rem;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.cat-row-arrow:hover {
    border-color: var(--blue-mid);
    color: var(--blue-mid);
    box-shadow: var(--shadow-md);
}
.cat-row-arrow.hidden { display: none; }

.cat-row-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: pointer;
    display: block;
    text-decoration: none;
}
.cat-row-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-row-img {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cat-row-badge {
    position: absolute;
    top: 8px; left: 8px;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.cat-row-body { padding: 0.75rem 0.875rem; }
.cat-row-body h3 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cat-row-location {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.72rem;
    color: var(--text-muted);
}
.cat-row-location svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}
.cat-row-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px dashed var(--border);
}

@media (max-width: 1200px) {
    .category-cards-carousel { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .category-cards-carousel { grid-template-columns: repeat(3, 1fr); }
    .category-rows-section { padding: 3rem 1.5rem; }
}
@media (max-width: 768px) {
    .category-cards-carousel { grid-template-columns: repeat(2, 1fr); }
    .category-rows-section { padding: 2.5rem 1rem; }
    .category-row-title { font-size: 1.1rem; }
}

/* ============================================================
   PAGE HEADER — ABOUT AND CONTACT
   ============================================================ */
.page-header {
    background: var(--blue);
    padding: 3rem 2.5rem;
    text-align: center;
}
.page-header-inner { max-width: 700px; margin: 0 auto; }
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.page-header p { color: rgba(255,255,255,0.78); font-size: 1rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-wrap { background: var(--off-white); padding: 4rem 2.5rem; }

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}
.about-section.reverse { direction: rtl; }
.about-section.reverse > * { direction: ltr; }

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}
.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}
.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.about-list li { font-size: 0.875rem; color: var(--text); line-height: 1.6; }

.about-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-features {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}
.about-features-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 2rem;
}
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.about-feature-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-feature-icon { font-size: 2.5rem; display: block; margin-bottom: 0.875rem; }
.about-feature-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.about-feature-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: var(--blue);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.about-stat { text-align: center; }
.about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.4rem;
}
.about-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap { background: var(--off-white); padding: 4rem 2.5rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem;
}
.contact-info-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.contact-info-card > p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-detail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.contact-detail-value { font-size: 0.875rem; color: var(--text); line-height: 1.5; }
.contact-detail-value a { color: var(--blue-mid); transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--blue); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem;
}
.contact-form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* ============================================================
   BROWSE SECTIONS — ROUNDED AND SEPARATED
   ============================================================ */
.categories-section {
    background: var(--off-white);
    padding: 4.5rem 2.5rem;
}
.categories-section .container {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.counties-section {
    background: var(--white);
    padding: 4.5rem 2.5rem;
}
.counties-section .container {
    background: var(--off-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

/* ============================================================
   MOBILE RESPONSIVE — ABOUT AND CONTACT
   ============================================================ */
@media (max-width: 768px) {
    .about-wrap { padding: 2.5rem 1rem; }
    .about-section { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
    .about-section.reverse { direction: ltr; }
    .about-features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }
    .contact-wrap { padding: 2.5rem 1rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .page-header { padding: 2rem 1rem; }
    .page-header h1 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .about-features-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
}