/* TatilEvi - Mobil Öncelikli Responsive CSS v3.0 */
/* iOS, Android, Masaüstü tam uyumlu */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f9fafb;
    color: #111827;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================
   RENKLER
   ============================================ */
.bg-primary { background: #16a34a; }
.bg-primary-dark { background: #15803d; }
.bg-white { background: #ffffff; }
.bg-gray-50 { background: #f9fafb; }
.bg-gray-100 { background: #f3f4f6; }

.text-primary { color: #16a34a; }
.text-primary-dark { color: #15803d; }
.text-white { color: #ffffff; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-dark { color: #111827; }
.text-gold { color: #fbbf24; }
.text-danger { color: #ef4444; }
.text-success { color: #22c55e; }

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .container { padding: 0 20px; }
}

@media (min-width: 1024px) {
    .container { padding: 0 24px; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 { font-size: 1.75rem; font-weight: 800; line-height: 1.2; }
h2 { font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { font-size: 0.875rem; line-height: 1.6; color: #4b5563; }

@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    p { font-size: 1rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    min-height: 44px;
}

.btn-primary {
    background: #16a34a;
    color: white;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.btn-outline:hover {
    border-color: #16a34a;
    color: #16a34a;
}

.btn-ghost {
    background: transparent;
    color: #4b5563;
}

.btn-ghost:hover {
    background: #dcfce7;
    color: #16a34a;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.75rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 12px;
}

@media (min-width: 768px) {
    .header-inner { height: 70px; }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-circle {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    border: 2px solid #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .logo-circle { width: 44px; height: 44px; }
}

.logo-circle svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .logo-circle svg { width: 24px; height: 24px; }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.125rem;
    font-weight: 800;
    color: #15803d;
}

.logo-main span { color: #16a34a; }

.logo-sub {
    font-size: 0.5rem;
    color: #6b7280;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .logo-main { font-size: 1.375rem; }
    .logo-sub { font-size: 0.625rem; }
}

/* Navigation Desktop */
.nav {
    display: none;
    gap: 4px;
}

@media (min-width: 992px) {
    .nav { display: flex; }
}

.nav a {
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    border-radius: 9999px;
    transition: all 0.2s;
}

.nav a:hover,
.nav a.active {
    color: #16a34a;
    background: #dcfce7;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .header-actions { gap: 12px; }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #111827;
    border-radius: 12px;
}

@media (min-width: 992px) {
    .mobile-menu-btn { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(85%, 320px);
    background: white;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
    box-shadow: -10px 0 25px -5px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    font-size: 1.125rem;
    color: #6b7280;
}

.mobile-nav {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero { padding: 100px 0 60px; }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 20px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero-badge { font-size: 0.875rem; padding: 12px 24px; margin-bottom: 24px; }
}

.hero h1 {
    font-size: clamp(1.75rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.hero p {
    font-size: clamp(0.875rem, 4vw, 1.375rem);
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Search Box */
.search-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    padding: 8px;
    background: #f3f4f6;
    gap: 8px;
}

.search-tab {
    flex: 1;
    padding: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    background: transparent;
    border: none;
    border-radius: 12px;
    transition: all 0.2s;
    min-height: 44px;
}

@media (min-width: 768px) {
    .search-tab { padding: 16px; }
}

.search-tab.active {
    background: white;
    color: #16a34a;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.search-fields {
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .search-fields {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.search-field {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
    .search-field {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid #e5e7eb;
    }
    .search-field:last-child { border-right: none; }
}

.search-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.search-field input,
.search-field select {
    width: 100%;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    background: transparent;
    outline: none;
    padding: 4px 0;
    -webkit-appearance: none;
    appearance: none;
}

.search-btn {
    width: 100%;
    padding: 16px;
    background: #16a34a;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    transition: all 0.2s;
    min-height: 56px;
}

@media (min-width: 640px) {
    .search-btn {
        width: auto;
        padding: 0 32px;
    }
}

.search-btn:hover {
    background: #15803d;
}

/* Quick Filters */
.quick-filters-wrapper {
    position: relative;
    margin-top: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    padding-bottom: 4px;
}

.quick-filters-wrapper::-webkit-scrollbar {
    display: none;
}

.quick-filters {
    display: inline-flex;
    gap: 12px;
    padding: 4px 0;
}

.quick-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    transition: all 0.2s;
    white-space: nowrap;
}

.quick-filter:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section { padding: 80px 0; }
}

@media (min-width: 1024px) {
    .section { padding: 100px 0; }
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 800;
    color: #111827;
}

.section-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 4px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #16a34a;
    padding: 12px 0;
}

/* ============================================
   LISTING GRID & CARDS
   ============================================ */
.listings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .listings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .listings-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
    .listings-grid { grid-template-columns: repeat(4, 1fr); }
}

.listing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    border: 1px solid #e5e7eb;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.listing-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f4f6;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.listing-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 1.125rem;
    color: #9ca3af;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.listing-fav.active {
    color: #ef4444;
}

.listing-content {
    padding: 16px;
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.listing-location i { color: #16a34a; }
.listing-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.listing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.listing-features span {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 9999px;
}

.listing-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.listing-rating i { color: #fbbf24; }

.listing-footer {
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.listing-price {
    margin-bottom: 12px;
}

.listing-price .old {
    text-decoration: line-through;
    color: #d1d5db;
    font-size: 0.875rem;
    margin-right: 8px;
}

.listing-price .amount {
    font-size: clamp(1.125rem, 5vw, 1.625rem);
    font-weight: 800;
    color: #16a34a;
}

.listing-price .period {
    font-size: 0.875rem;
    color: #6b7280;
}

.listing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.listing-btn {
    padding: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    transition: all 0.2s;
    min-height: 44px;
}

.listing-btn-outline {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.listing-btn-primary {
    background: #16a34a;
    color: white;
}

/* ============================================
   DESTINATIONS GRID
   ============================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 220px;
    }
    .destination-card.large { grid-column: span 5; grid-row: span 2; }
    .destination-card.medium { grid-column: span 4; }
    .destination-card.small { grid-column: span 3; }
}

.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    min-height: 180px;
}

@media (min-width: 640px) {
    .destination-card { min-height: 200px; }
}

.destination-card img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.85) 100%);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    z-index: 1;
}

.destination-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.destination-content h3 {
    font-size: clamp(1.125rem, 4vw, 1.625rem);
    font-weight: 700;
}

.destination-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: linear-gradient(180deg, #f8fffe 0%, white 100%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.stats-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-bar {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
}

.stat-number {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #15803d, #16a34a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    display: none;
}

@media (min-width: 640px) {
    .stat-divider {
        display: block;
        width: 2px;
        height: 50px;
        background: linear-gradient(180deg, transparent, #e5e7eb, transparent);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #e5e7eb;
}

@media (min-width: 640px) {
    .trust-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-section { padding: 100px 0; }
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.9), rgba(16, 185, 129, 0.85));
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 48px;
        text-align: left;
        max-width: 650px;
    }
}

.cta-card h2 {
    font-size: clamp(1.5rem, 5vw, 2.375rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .cta-actions {
        flex-direction: row;
        justify-content: flex-start;
    }
}

.btn-white {
    background: white;
    color: #15803d;
}

.btn-white:hover {
    background: #f3f4f6;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-main { color: white; }
.footer-brand p { font-size: 0.875rem; color: #6b7280; }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: #16a34a;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    padding: 8px 0;
    transition: all 0.2s;
}

.footer-col a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

/* ============================================
   AUTH PAGES (Login/Register)
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: linear-gradient(135deg, #15803d 0%, #111827 100%);
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.auth-logo-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    border: 2px solid #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: #15803d;
}

.auth-logo-main span { color: #16a34a; }

.auth-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.auth-card .subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
}

.auth-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-success {
    background: #dcfce7;
    color: #15803d;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: #374151;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.form-group input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: #16a34a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.2s;
    min-height: 50px;
}

.auth-btn:hover {
    background: #15803d;
}

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #9ca3af;
    font-size: 0.875rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.divider span { padding: 0 16px; }

.auth-links {
    text-align: center;
    margin-top: 24px;
}

.auth-links a {
    color: #16a34a;
    font-weight: 600;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.875rem;
    color: #6b7280;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #111827;
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 5000;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .toast {
        left: auto;
        right: 24px;
        bottom: 24px;
        max-width: 380px;
    }
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success { background: #22c55e; }
.toast.error { background: #ef4444; }
.toast.warning { background: #f59e0b; }

/* ============================================
   SKELETON LOADING
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 12px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 480px) {
    .listing-actions { grid-template-columns: 1fr; }
    .cta-card { padding: 24px; }
    .feature-card { padding: 24px; }
    .stats-bar { padding: 24px; }
    .auth-card { padding: 24px; }
}

@media (max-width: 360px) {
    .hero h1 { font-size: 1.5rem; }
    .section-title { font-size: 1.25rem; }
}

/* ============================================
   SAFE AREA FOR NOTCHED DEVICES
   ============================================ */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    .footer {
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
    .mobile-menu-content {
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
}