/* ============================================
   PLAYPORTALMANOR — GLOBAL STYLES
   Unique Cafes & Workspaces in Europe
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0d2b0d;
    --bg-cream: #fff6f0;
    --bg-card: #ffffff;
    --accent: #4caf50;
    --accent-light: #81c784;
    --accent-dark: #2e7d32;
    --pink: #ff8fab;
    --purple: #7b2cbf;
    --green-dark: #1a3a1a;
    --green-mid: #2d5a2d;
    --green-light: #4caf50;
    --green-glow: #66bb6a;
    --text: #3a3a3a;
    --text-light: #6b7280;
    --text-white: #f0f0f0;
    --border: #f3d5d5;
    --border-green: rgba(76, 175, 80, 0.3);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(26, 58, 26, 0.45);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shine: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.06) 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

/* ---------- HEADER / NAVBAR ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 43, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.15);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(13, 43, 13, 0.97);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
}

.logo-play {
    color: var(--green-light);
}

.logo-portal {
    color: var(--text-white);
    opacity: 0.7;
}

.logo-manor {
    color: var(--green-glow);
    font-weight: 800;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(240, 240, 240, 0.75);
    padding: 8px 16px;
    border-radius: 30px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
    background: rgba(76, 175, 80, 0.15);
}

.nav-link.active {
    color: #fff;
    background: rgba(76, 175, 80, 0.25);
}

.nav-fav {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.fav-badge {
    background: var(--pink);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2b0d 0%, #1a4a1a 30%, #2d5a2d 60%, #1a3a1a 100%);
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 40%, rgba(76, 175, 80, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(46, 125, 50, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-light);
    display: block;
    margin-bottom: 12px;
}

.hero-tag-sub {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(76, 175, 80, 0.5);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(240, 240, 240, 0.7);
    max-width: 440px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    padding-left: calc((100% - 1280px) / 2 + 24px);
}

.hero-page {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
}

.hero-page.active {
    color: #fff;
    font-weight: 700;
}

.hero-page-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.1));
    border-radius: 2px;
}

/* ---------- BUTTONS ---------- */
.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-light);
    color: #fff;
    border-color: var(--green-light);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--green-light);
    color: var(--green-light);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 0.8rem;
    padding: 8px 20px;
    background: rgba(76, 175, 80, 0.15);
    color: var(--green-light);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 25px;
}

.btn-sm:hover {
    background: var(--green-light);
    color: #fff;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.btn-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    background: #ef4444;
    color: #fff;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green-light);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 540px;
    margin: 0 auto;
}

/* ---------- UNIFORM GRID (replaces masonry) ---------- */
.uniform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---------- MASONRY GRID (kept for backward compat but unused in main pages now) ---------- */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.masonry-grid .card {
    margin-bottom: 0;
}

/* ---------- GLOSSY CARDS ---------- */
.card {
    background: var(--glass-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: var(--glass-shine);
    pointer-events: none;
    z-index: 1;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.35),
        0 0 30px rgba(76, 175, 80, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.card-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.card-save {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    z-index: 5;
}

.card-save:hover {
    background: rgba(255, 143, 171, 0.8);
    transform: scale(1.1);
}

.card-save.saved {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

.card-save.saved svg {
    fill: #fff;
}

.card-body {
    padding: 20px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-city {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green-light);
    margin-bottom: 6px;
    display: block;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    line-height: 1.6;
    flex: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.feature-tag {
    font-size: 0.72rem;
    padding: 4px 10px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    color: var(--green-light);
    font-weight: 500;
}

/* WS Badge */
.ws-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green-light);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 5;
}

/* WS Specs */
.ws-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.ws-specs span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.ws-specs strong {
    color: #fff;
}

/* ---------- CITIES GRID ---------- */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.city-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    display: block;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover img {
    transform: scale(1.08);
}

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.city-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.city-overlay span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

/* ---------- WORKSPACE PREVIEW CARDS ---------- */
.workspace-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.ws-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.ws-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: var(--glass-shine);
    pointer-events: none;
}

.ws-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 12px 40px rgba(0,0,0,0.25),
        0 0 20px rgba(76, 175, 80, 0.06);
}

.ws-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.ws-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.ws-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.center-cta {
    text-align: center;
    margin-top: 32px;
}

/* ---------- TIPS GRID ---------- */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tip-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
}

.tip-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: var(--glass-shine);
    pointer-events: none;
    z-index: 1;
}

.tip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 12px 40px rgba(0,0,0,0.25),
        0 0 20px rgba(76, 175, 80, 0.06);
}

.tip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tip-card:hover img {
    transform: scale(1.05);
}

.tip-body {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.tip-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.tip-body p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ---------- NEWSLETTER ---------- */
.section-newsletter {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(46, 125, 50, 0.1) 100%);
    border-top: 1px solid rgba(76, 175, 80, 0.15);
    border-bottom: 1px solid rgba(76, 175, 80, 0.15);
}

.newsletter-wrap {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.newsletter-wrap p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 30px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* ---------- FOOTER ---------- */
.footer {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green-light);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ---------- PAGE HERO ---------- */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.page-hero-green {
    background: linear-gradient(135deg, #0d2b0d 0%, #1a4a1a 50%, #2d5a2d 100%);
    border-bottom: 1px solid rgba(76, 175, 80, 0.15);
}

.page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.page-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- FILTER SECTION ---------- */
.filter-section {
    padding: 30px 0;
}

.filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    background: transparent;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green-light);
    color: #fff;
    border-color: var(--green-light);
}

/* Workspace Filters */
.workspace-filters {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
}

.filter-group select {
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    outline: none;
    cursor: pointer;
    min-width: 160px;
    transition: var(--transition);
}

.filter-group select:focus {
    border-color: var(--green-light);
}

.filter-group select option {
    background: #1a3a1a;
    color: #fff;
}

/* ---------- CITY SECTIONS ---------- */
.city-section {
    margin-bottom: 60px;
}

.city-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(76, 175, 80, 0.15);
}

/* ---------- CITY DETAIL ---------- */
.city-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    align-items: center;
}

.city-detail-img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 16/10;
    object-fit: cover;
}

.city-detail-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.city-detail-info p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.city-stats {
    display: flex;
    gap: 32px;
}

.city-stat {
    display: flex;
    flex-direction: column;
}

.city-stat strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-light);
}

.city-stat span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.subsection-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 20px;
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.neighborhood-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.neighborhood-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-sm);
    background: var(--glass-shine);
    pointer-events: none;
}

.neighborhood-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.neighborhood-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.neighborhood-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ---------- CAFE DETAIL PAGE ---------- */
.cafe-detail-page {
    padding-top: 120px;
}

.back-link {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--green-light);
    margin-bottom: 24px;
    transition: var(--transition);
}

.back-link:hover {
    color: #fff;
    transform: translateX(-4px);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-gallery .detail-main-img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.detail-gallery .detail-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.detail-gallery .detail-thumbs img {
    width: 100%;
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
}

.detail-gallery .detail-thumbs img:hover {
    opacity: 1;
}

.detail-info h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.detail-city {
    font-size: 0.88rem;
    color: var(--green-light);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.detail-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 28px;
}

.detail-amenities {
    margin-bottom: 28px;
}

.detail-amenities h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.amenity-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    padding: 10px 14px;
    background: var(--glass-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.amenity-icon {
    font-size: 1.2rem;
}

.detail-timing h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.detail-timing p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* ---------- TIP ARTICLES ---------- */
.tip-article {
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.article-layout.reverse {
    direction: rtl;
}

.article-layout.reverse > * {
    direction: ltr;
}

.article-img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.article-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.article-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-list {
    list-style: none;
    padding: 0;
}

.article-list li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.article-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green-light);
    font-weight: 600;
}

/* ---------- FAVORITES ---------- */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.empty-state p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

/* ---------- CONTACT ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrap h2,
.contact-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(76, 175, 80, 0.2);
    background: rgba(0,0,0,0.25);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group select option {
    background: #1a3a1a;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.form-success h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.form-success p {
    color: rgba(255,255,255,0.6);
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 16px;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-sm);
    background: var(--glass-shine);
    pointer-events: none;
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.contact-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ---------- FAQ ---------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.open {
    border-color: var(--green-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--green-light);
    font-weight: 300;
    transition: var(--transition);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--green-light);
    text-decoration: underline;
}

/* ---------- LEGAL CONTENT ---------- */
.legal-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ---------- NO RESULTS ---------- */
.no-results {
    text-align: center;
    padding: 60px 20px;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
}

/* ---------- TOAST ---------- */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(76, 175, 80, 0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .uniform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-sub {
        margin: 0 auto 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-main-image {
        max-width: 400px;
    }

    .hero-pagination {
        padding-left: 24px;
    }

    .workspace-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .city-detail-header {
        grid-template-columns: 1fr;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .article-layout,
    .article-layout.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .neighborhood-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 43, 13, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 999;
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .hamburger {
        display: flex;
    }

    .uniform-grid {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .workspace-cards {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-main-image {
        max-width: 300px;
        aspect-ratio: 1;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-pagination {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .workspace-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group select {
        min-width: auto;
        width: 100%;
    }

    .neighborhood-grid {
        grid-template-columns: 1fr;
    }

    .city-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .page-hero {
        padding: 120px 0 40px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .card-body {
        padding: 16px;
    }

    .detail-actions {
        flex-direction: column;
    }

    .amenity-list {
        grid-template-columns: 1fr;
    }

    .ws-specs {
        grid-template-columns: 1fr;
    }
}