/* ==============================================
   PUBLIC FRONTEND STYLES
   Modern, premium, responsive
   ============================================== */

:root {
    --primary: #8abd3e;
    --primary-dark: #72a332;
    --primary-light: #b5d88c;
    --secondary: #5d5d5d;
    --accent: #a4d65e;
    --accent-warm: #c8e68a;
    --dark: #2d2d2d;
    --dark-lighter: #3a3a3a;
    --bg: #f4f5f0;
    --bg-card: #ffffff;
    --text: #2d3436;
    --text-secondary: #5d5d5d;
    --text-muted: #999999;
    --border: #e2e8e0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 35px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(138, 189, 62, 0.2);
    --radius: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.site-header {
    background: linear-gradient(135deg, var(--dark) 0%, #383838 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #8abd3e;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.7rem 1rem;
}

.site-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.site-logo i {
    color: var(--accent);
    margin-right: 6px;
}

.site-logo:hover {
    color: #fff;
}

.header-nav {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.header-nav>a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.header-nav>a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.header-nav>a.active {
    color: #fff;
    background: var(--primary);
}

/* Header Auth Buttons */
.header-auth {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.header-auth .btn {
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 6px 14px;
    white-space: nowrap;
    transition: all 0.25s;
}

.header-auth .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
}

.header-auth .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.header-auth .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    box-shadow: 0 2px 8px rgba(138, 189, 62, 0.3);
}

.header-auth .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(138, 189, 62, 0.45);
}

/* === HERO === */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 40%, #3a5a1a 100%);
    padding: 3rem 0 2.5rem;
    text-align: center;
    color: #fff;
}

.hero-section h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 40%, #8abd3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.hero-search {
    max-width: 500px;
    margin: 1.5rem auto 0;
    position: relative;
}

.hero-search input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
    transition: all 0.3s;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-search input:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: #8abd3e;
    box-shadow: 0 0 15px rgba(138, 189, 62, 0.3);
}

.hero-search button {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    padding: 0 18px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.hero-search button:hover {
    background: var(--primary-dark);
}

/* === CITY CHIPS === */
.city-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 1.2rem;
}

.city-chip {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
}

.city-chip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* === SECTION === */
.section {
    padding: 2.5rem 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text);
    padding-left: 14px;
    border-left: 4px solid #8abd3e;
}

.section-title i {
    color: var(--primary);
    margin-right: 8px;
}

/* ==============================================
   TOP STORIES — Swiper Slider, Clean Image + Age
   ============================================== */
.stories-section {
    margin-bottom: 2rem;
    padding: 1.5rem 0 0.5rem;
}

.stories-section .section-title {
    margin-bottom: 1rem;
}

.swiper-stories {
    padding: 4px 0 12px;
}

.swiper-stories .swiper-slide {
    width: 150px !important;
    height: auto;
}

.story-card {
    display: block;
    width: 150px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 3px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)),
        linear-gradient(135deg, var(--primary), var(--accent));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.story-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-card .story-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
}

.story-card .story-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Age badge overlay at bottom */
.story-card .story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: center;
}

.story-card .story-age-badge {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.3px;
}

/* Swiper Navigation */
.stories-section .swiper-button-next,
.stories-section .swiper-button-prev {
    color: var(--primary);
    background: var(--bg-card);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: all 0.2s;
}

.stories-section .swiper-button-next::after,
.stories-section .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 800;
}

.stories-section .swiper-button-next:hover,
.stories-section .swiper-button-prev:hover {
    background: var(--primary);
    color: #fff;
}

/* === AD CARDS (Home) === */
.ad-card2 {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ad-card2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(138, 189, 62, 0.3);
}

.ad-card2-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #eee;
}

.ad-card2-img-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dfe6e9, #eee);
    color: var(--text-muted);
    font-size: 2.5rem;
}

.ad-card2-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ad-card2-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.ad-card2-title:hover {
    color: var(--primary);
}

.ad-card2-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    flex: 1;
}

.ad-card2-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.ad-card2-meta i {
    margin-right: 3px;
}

.ad-card2-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.ad-card2-footer {
    padding: 0.6rem 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 6px;
}

/* ==============================================
   AD LIST CARDS (City/Area pages) — Premium Design
   ============================================== */
.ad-list-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: 1.2rem;
    display: flex;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    overflow: hidden;
}

.ad-list-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(138, 189, 62, 0.35);
}

/* Boosted card highlight */
.ad-list-card.ad-boosted {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)),
        linear-gradient(135deg, var(--primary), var(--accent), var(--accent-warm));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow-sm), 0 0 20px rgba(138, 189, 62, 0.15);
    position: relative;
}

.ad-list-card.ad-boosted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-warm));
    z-index: 2;
}

.ad-list-card.ad-boosted:hover {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(138, 189, 62, 0.2);
}

/* Image link wrapper */
.ad-list-card-img-link {
    display: block;
    flex-shrink: 0;
    position: relative;
    width: 210px;
    overflow: hidden;
}

.ad-list-card-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ad-list-card:hover .ad-list-card-img {
    transform: scale(1.05);
}

.ad-list-card-img--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0e0, #f0f5eb);
    color: #8abd3e;
    font-size: 2.2rem;
    min-height: 220px;
}

/* Featured badge on image */
.ad-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    color: #e17055;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ad-featured-badge i {
    margin-right: 2px;
}

/* Card body */
.ad-list-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.1rem 1.3rem;
    min-width: 0;
}

.ad-list-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s;
}

.ad-list-card-title:hover {
    color: var(--primary);
}

.ad-list-card-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 1.55;
}

/* Meta info chips */
.ad-list-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.ad-list-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.ad-list-card-meta span i {
    color: var(--primary);
    font-size: 0.65rem;
}

.ad-list-card-meta span:hover {
    border-color: var(--primary-light);
    background: rgba(138, 189, 62, 0.05);
}

/* Price */
.ad-list-card-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Action buttons row */
.ad-list-card-btns {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.ad-list-card-btns .btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    border: none;
    padding: 7px 16px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.ad-list-card-btns .btn-wa:hover {
    background: linear-gradient(135deg, #1fb855, #0e7a63);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.ad-list-card-btns .btn-cl {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    border: none;
    padding: 7px 16px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(138, 189, 62, 0.25);
}

.ad-list-card-btns .btn-cl:hover {
    background: linear-gradient(135deg, var(--primary-dark), #5e8a28);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(138, 189, 62, 0.35);
}

.ad-list-card-btns .btn-vw {
    background: var(--bg);
    color: var(--text-secondary) !important;
    border: 1px solid var(--border);
    padding: 7px 16px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s;
}

.ad-list-card-btns .btn-vw:hover {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* Profile page contact buttons (keep for sidebar) */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1fb855, #0e7a63);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s;
    box-shadow: 0 2px 6px rgba(138, 189, 62, 0.2);
}

.btn-call:hover {
    background: linear-gradient(135deg, var(--primary-dark), #4a3ab0);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(138, 189, 62, 0.3);
}

/* === BOOSTED BADGE === */
.boosted-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    color: #e17055;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ==============================================
   PROFILE PAGE — Professional Detail View
   ============================================== */
.profile-gallery {
    position: relative;
    background: var(--dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.profile-main-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.profile-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    overflow-x: auto;
}

.profile-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    opacity: 0.65;
    transition: all 0.25s;
    flex-shrink: 0;
}

.profile-thumb:hover,
.profile-thumb.active {
    opacity: 1;
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Profile Card */
.profile-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.profile-name {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 3px;
    letter-spacing: -0.3px;
}

.profile-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

/* Profile Info Grid */
.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 1.5rem;
}

.profile-info-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s;
}

.profile-info-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.profile-info-item .info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(138, 189, 62, 0.1), rgba(164, 214, 94, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
}

.profile-info-item .info-icon i {
    color: var(--primary);
    font-size: 0.85rem;
}

.profile-info-item .info-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.profile-info-item .info-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

/* Profile Section Titles */
.profile-section-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-section-title i {
    color: var(--primary);
    font-size: 0.9rem;
}

.profile-desc {
    color: var(--text-secondary);
    line-height: 1.85;
    white-space: pre-line;
    font-size: 0.9rem;
    background: var(--bg);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border);
}

/* Pricing */
.price-box {
    background: linear-gradient(135deg, #f4f9ec, #ebf4da);
    border: 1px solid rgba(138, 189, 62, 0.15);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 130px;
    transition: all 0.2s;
}

.price-box:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.price-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 4px;
}

/* Service & Payment Tags */
.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s;
}

.service-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.payment-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s;
}

.payment-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.15);
}

/* Contact Card (sidebar) */
.contact-card-inner .btn-whatsapp,
.contact-card-inner .btn-call {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.92rem;
    border-radius: 12px;
}

/* Quick Info Table */
.quick-info-table {
    width: 100%;
    font-size: 0.85rem;
    border-collapse: separate;
    border-spacing: 0 4px;
}

.quick-info-table tr {
    transition: all 0.15s;
}

.quick-info-table tr:hover {
    background: var(--bg);
    border-radius: 8px;
}

.quick-info-table td {
    padding: 8px 10px;
}

.quick-info-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    border-radius: 8px 0 0 8px;
}

.quick-info-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text);
    border-radius: 0 8px 8px 0;
}

/* === BREADCRUMB === */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin: 0 0 1.2rem;
    font-size: 0.82rem;
}

.breadcrumb-custom a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    text-decoration: underline;
}

.breadcrumb-custom .separator {
    color: var(--text-muted);
    margin: 0 6px;
}

/* === SEO CONTENT === */
.seo-content {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.seo-content h2,
.seo-content h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid rgba(138, 189, 62, 0.2);
}

/* === SIDEBAR === */
.sidebar-areas {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.sidebar-areas h6 {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.area-link {
    display: block;
    padding: 7px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.84rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.area-link:hover {
    background: var(--bg);
    color: var(--primary);
    padding-left: 16px;
}

.area-link.active {
    background: var(--primary);
    color: #fff;
}

.area-link .badge {
    float: right;
    font-size: 0.7rem;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(135deg, var(--dark) 0%, #383838 100%);
    color: rgba(255, 255, 255, 0.65);
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-title {
    color: #8abd3e;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #8abd3e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* === PAGINATION === */
.pagination-custom {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 2rem;
}

.pagination-custom a,
.pagination-custom span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}

.pagination-custom a {
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.pagination-custom a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
}

.pagination-custom span.active {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    box-shadow: 0 2px 10px rgba(138, 189, 62, 0.3);
}

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    display: block;
}

.empty-state p {
    font-size: 0.95rem;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.4rem;
    }

    .hero-section {
        padding: 2rem 0 1.5rem;
    }

    .ad-list-card {
        flex-direction: column;
    }

    .ad-list-card-img-link {
        width: 100%;
    }

    .ad-list-card-img,
    .ad-list-card-img--empty {
        width: 100%;
        height: 220px;
        min-height: auto;
    }

    .ad-list-card-body {
        padding: 1rem;
    }

    .header-nav {
        gap: 0.15rem;
    }

    .header-nav>a {
        font-size: 0.75rem;
        padding: 5px 6px;
    }

    .header-auth {
        gap: 4px;
        margin-left: 6px;
        padding-left: 6px;
    }

    .header-auth .btn {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .profile-card {
        padding: 1.2rem;
    }

    .profile-name {
        font-size: 1.25rem;
    }

    .profile-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-card {
        width: 130px;
        height: 175px;
    }

    .section {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .header-auth .btn i {
        margin-right: 0 !important;
    }

    .header-auth .btn-outline-light span {
        display: none;
    }

    .ad-list-card-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .ad-list-card-btns .btn-wa,
    .ad-list-card-btns .btn-cl,
    .ad-list-card-btns .btn-vw {
        justify-content: center;
    }

    .profile-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .profile-info-item {
        padding: 10px 8px;
    }

    .story-card {
        width: 115px;
        height: 155px;
    }
}

/* ==============================================
   MOBILE HAMBURGER NAV
   ============================================== */
.nav-hamburger {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .header-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--dark) 0%, #383838 100%);
        padding: 1rem;
        gap: 0.5rem;
        border-top: 2px solid var(--primary);
        z-index: 999;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav > a,
    .header-nav .dropdown {
        width: 100%;
    }

    .header-nav .dropdown-toggle {
        display: block;
        width: 100%;
    }

    .header-auth {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 0.75rem;
        margin-top: 0.25rem;
        flex-direction: column;
        gap: 8px;
        margin-left: 0;
        padding-left: 0;
    }

    .header-auth .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 14px;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-inner {
        position: relative;
    }
}

/* Post Your Ad button premium look */
.header-auth .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 10px rgba(138, 189, 62, 0.35);
    transition: all 0.25s;
}

.header-auth .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(138, 189, 62, 0.5);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

/* ==============================================
   CITY / AREA HERO BANNER
   ============================================== */
.city-hero-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #1a5c2a 100%);
    position: relative;
    overflow: hidden;
}

.city-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(138, 189, 62, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 189, 62, 0.08) 0%, transparent 40%);
}

.city-hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary-dark) 100%);
}

.city-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0 2rem;
}

.city-hero-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 50%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.city-hero-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    margin: 0;
}

.city-hero-sub strong {
    color: var(--accent);
    font-weight: 700;
}

.city-hero-banner .breadcrumb-custom {
    background: none;
    padding: 0;
    margin-bottom: 0.75rem;
}

.city-hero-banner .breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.82rem;
}

.city-hero-banner .breadcrumb-custom a:hover {
    color: var(--accent);
}

.city-hero-banner .breadcrumb-custom .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
    font-size: 0.75rem;
}

/* ==============================================
   AREA FILTER BAR
   ============================================== */
.area-filter-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0.75rem 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 0.5rem;
}

.area-filter-bar::-webkit-scrollbar {
    display: none;
}

.area-chip-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    transition: all 0.22s;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.area-chip-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(138, 189, 62, 0.06);
    transform: translateY(-1px);
}

.area-chip-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 3px 10px rgba(138, 189, 62, 0.3);
}

.area-chip-btn i {
    font-size: 0.72rem;
}

/* ==============================================
   AREAS BOTTOM SECTION
   ============================================== */
.areas-bottom-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.area-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem 0.75rem 1rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.area-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.25s;
}

.area-profile-card:hover {
    border-color: rgba(138, 189, 62, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 15px rgba(138, 189, 62, 0.1);
    color: inherit;
}

.area-profile-card:hover::before {
    transform: scaleX(1);
}

.area-profile-card.current {
    border-color: var(--primary);
    background: linear-gradient(160deg, rgba(138, 189, 62, 0.06), var(--bg-card));
}

.area-profile-card.current::before {
    transform: scaleX(1);
}

.area-profile-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 189, 62, 0.15), rgba(138, 189, 62, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    transition: background 0.25s;
}

.area-profile-card:hover .area-profile-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.area-profile-card-icon i {
    color: var(--primary);
    font-size: 1.1rem;
    transition: color 0.25s;
}

.area-profile-card:hover .area-profile-card-icon i {
    color: #fff;
}

.area-profile-card-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.area-profile-card-count {
    display: flex;
    align-items: center;
    gap: 4px;
}

.count-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    line-height: 1.4;
    min-width: 24px;
    text-align: center;
}

.count-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==============================================
   FILTER PANEL — City + Area Dropdowns
   ============================================== */
.filter-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.filter-panel-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 140px;
}

.filter-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.filter-label i {
    color: var(--primary);
    margin-right: 4px;
}

.filter-select {
    width: 100%;
    padding: 9px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    background: var(--bg);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: auto;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 189, 62, 0.15);
}

@media (max-width: 480px) {
    .filter-panel-row {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ==============================================
   COMPACT AREAS SECTION — Inline chips at bottom
   ============================================== */
.areas-compact-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.areas-compact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-compact-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.area-compact-chip:hover {
    border-color: var(--primary);
    background: rgba(138, 189, 62, 0.06);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.area-compact-chip.current {
    background: linear-gradient(135deg, rgba(138, 189, 62, 0.1), rgba(138, 189, 62, 0.04));
    border-color: var(--primary);
}

.area-compact-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}

.area-compact-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;
}

/* ==============================================
   PROFESSIONAL PAGINATION
   ============================================== */
.pagination-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2rem;
    padding: 1rem 0;
}

.pg-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
}

.pg-btn:hover:not(.disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(138, 189, 62, 0.06);
    transform: translateY(-1px);
}

.pg-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pg-btn i {
    font-size: 0.7rem;
}

.pg-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pg-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.pg-num:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.pg-num.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(138, 189, 62, 0.3);
}

.pg-dots {
    padding: 0 4px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .pg-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .pg-num {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .pagination-pro {
        gap: 3px;
    }
}

/* ==============================================
   AREA COMPACT ICON
   ============================================== */
.area-compact-icon {
    color: var(--primary);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ==============================================
   SEARCH AUTOCOMPLETE
   ============================================== */
.search-autocomplete {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    border-top: none;
    z-index: 100;
    max-height: 320px;
    overflow-y: auto;
}

.ac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.15s;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ac-item:hover {
    background: rgba(138, 189, 62, 0.06);
}

.ac-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(138, 189, 62, 0.12);
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.ac-text {
    display: flex;
    flex-direction: column;
}

.ac-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.ac-type {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ==============================================
   HOMEPAGE CITY CARDS — Premium Gradient Style
   ============================================== */
.city-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.city-card-premium {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    height: 140px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.city-card-premium:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.city-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: transform 0.4s;
}

.city-card-premium:hover .city-card-bg {
    transform: scale(1.08);
}

.city-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.city-card-pin {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.city-card-premium:hover .city-card-pin {
    background: rgba(255,255,255,0.35);
    transform: scale(1.1);
}

.city-card-pin i {
    color: #fff;
    font-size: 0.9rem;
}

.city-card-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.city-card-stats {
    display: flex;
    gap: 10px;
}

.city-card-stats span {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.city-card-stats i {
    margin-right: 3px;
    font-size: 0.65rem;
}

.city-card-arrow {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.city-card-premium:hover .city-card-arrow {
    background: #fff;
}

.city-card-arrow i {
    color: #fff;
    font-size: 0.7rem;
    transition: all 0.3s;
}

.city-card-premium:hover .city-card-arrow i {
    color: #333;
    transform: translateX(2px);
}

@media (max-width: 576px) {
    .city-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .city-card-premium {
        height: 120px;
    }
    .city-card-title {
        font-size: 0.88rem;
    }
}

/* ==============================================
   WHY CHOOSE US SECTION
   ============================================== */
.why-card {
    text-align: center;
    padding: 1.5rem 1rem;
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(138,189,62,0.3);
}

.why-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.why-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.why-card p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.5;
}

/* ==============================================
   FLOATING STORIES WIDGET (bottom-left)
   ============================================== */
.stories-float-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 900;
    cursor: pointer;
    display: none;
    animation: storiesSlideIn 0.5s ease-out forwards;
}

@keyframes storiesSlideIn {
    from { transform: translateY(100px) scale(0.8); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.stories-float-card {
    width: 160px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border: 3px solid #e91e63;
}

.stories-float-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stories-float-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
}

.stories-float-name {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.stories-float-badge {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 4px;
}

.stories-float-btn {
    display: block;
    text-align: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 0;
    border-radius: 8px;
    margin-top: 4px;
}

.stories-float-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #fff;
    color: #fff;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s;
}

.stories-float-close:hover {
    background: #e91e63;
}

@media (max-width: 480px) {
    .stories-float-widget {
        bottom: 16px;
        left: 16px;
    }
    .stories-float-card {
        width: 130px;
        height: 180px;
    }
}

/* ==============================================
   FULLSCREEN STORIES VIEWER (Instagram-style)
   ============================================== */
.stories-viewer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.stories-viewer-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stories-viewer-container {
    width: 100%;
    max-width: 420px;
    height: 90vh;
    max-height: 720px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Progress bars at top */
.stories-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 4px;
    padding: 10px 14px 0;
    z-index: 10;
}

.stories-progress-seg {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
}

.stories-progress-seg .fill {
    height: 100%;
    background: #fff;
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.stories-progress-seg.done .fill {
    width: 100%;
}

.stories-progress-seg.active .fill {
    width: 0%;
}

/* Header with profile info */
.stories-viewer-header {
    position: absolute;
    top: 18px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.stories-viewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.stories-viewer-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.stories-viewer-featured {
    background: #e91e63;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 8px;
    margin-left: 4px;
}

.stories-viewer-location {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

.stories-viewer-time {
    margin-left: auto;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
}

.stories-viewer-close {
    position: absolute;
    top: 22px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: background 0.2s;
}

.stories-viewer-close:hover {
    background: rgba(255,255,255,0.3);
}

/* Main image */
.stories-viewer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* View Profile button — above thumbnails */
.stories-viewer-cta {
    position: absolute;
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 20;
    transition: all 0.2s;
}

.stories-viewer-cta:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

/* Navigation arrows */
.stories-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.stories-viewer-nav:hover {
    background: rgba(255,255,255,0.25);
}

.stories-viewer-nav.prev { left: 12px; }
.stories-viewer-nav.next { right: 12px; }

/* Bottom profile thumbnails */
.stories-viewer-thumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    z-index: 10;
}

.stories-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.6;
}

.stories-thumb.active {
    border-color: #e91e63;
    opacity: 1;
    transform: scale(1.15);
}

.stories-thumb:hover {
    opacity: 1;
}

@media (max-width: 480px) {
    .stories-viewer-container {
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
}

/* ==============================================
   FLOATING CARD — Sliding images
   ============================================== */
.stories-float-card {
    position: relative;
}

.stories-float-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.stories-float-slide.active {
    opacity: 1;
    z-index: 2;
}

.stories-float-info {
    z-index: 3;
}
