/* =====================================================
   PANA.PH MODERN REDESIGN
   Glassmorphism + Bento + Gradients + Animations
   ===================================================== */

/* ----- Modern Color System ----- */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #eef2ff;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #f43f5e;
    --secondary-dark: #e11d48;
    --accent: #14b8a6;
    --accent-purple: #a855f7;
    --accent-coral: #fb7185;
    --accent-amber: #f59e0b;

    --bg-base: #fafafa;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-strong: rgba(255, 255, 255, 0.85);
    --bg-overlay: rgba(15, 23, 42, 0.5);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;

    --border-subtle: rgba(15, 23, 42, 0.06);
    --border-default: rgba(15, 23, 42, 0.1);

    --gradient-hero: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #14b8a6 0%, #6366f1 100%);
    --gradient-warm: linear-gradient(135deg, #fb7185 0%, #f59e0b 100%);
    --gradient-cool: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, #6366f1 0%, transparent 50%),
                     radial-gradient(at 100% 0%, #a855f7 0%, transparent 50%),
                     radial-gradient(at 50% 100%, #ec4899 0%, transparent 50%);

    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-card-hover: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 48px rgba(99, 102, 241, 0.18);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.1);

    --radius-soft: 12px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --radius-xl: 32px;

    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="dark"] {
    --bg-base: #09090b;
    --bg-card: #18181b;
    --bg-glass: rgba(24, 24, 27, 0.7);
    --bg-glass-strong: rgba(24, 24, 27, 0.85);
    --bg-overlay: rgba(0, 0, 0, 0.6);
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-default: rgba(255, 255, 255, 0.1);
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 16px 48px rgba(99, 102, 241, 0.3);
}

/* ----- Body & Base ----- */
body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(at 20% 0%, rgba(99, 102, 241, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(236, 72, 153, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
}

[data-theme="dark"] body {
    background-image:
        radial-gradient(at 20% 0%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(236, 72, 153, 0.1) 0px, transparent 50%);
}

/* ----- Modern Header ----- */
.header {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: none;
}

.logo {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo svg {
    color: var(--primary);
}

.nav-link {
    color: var(--text-secondary);
    transition: all 0.2s var(--ease-smooth);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-hero);
    transition: all 0.3s var(--ease-smooth);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary);
    background: transparent;
}

.nav-link:hover::before {
    width: 60%;
}

/* ----- Modern Buttons ----- */
.btn-primary {
    background: var(--gradient-hero);
    border: none;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s var(--ease-smooth);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.btn-book {
    background: var(--gradient-warm) !important;
    box-shadow: 0 8px 24px rgba(251, 113, 133, 0.35) !important;
    position: relative;
    overflow: hidden;
}

.btn-book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-smooth);
}

.btn-book:hover::before {
    transform: translateX(100%);
}

/* ----- Hero Section - Bento Style ----- */
.hero {
    background: var(--gradient-mesh);
    background-color: #6366f1;
    color: white;
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.2) 100%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s var(--ease-smooth) both;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s 0.1s var(--ease-smooth) both;
}

.search-box {
    max-width: 720px;
    margin: 0 auto;
    animation: fadeInUp 0.8s 0.2s var(--ease-smooth) both;
}

.search-input {
    border: none !important;
    background: var(--bg-glass-strong) !important;
    backdrop-filter: blur(20px);
    border-radius: 50px !important;
    padding: 22px 28px 22px 64px !important;
    font-size: 1.05rem !important;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25) !important;
    color: var(--text-primary) !important;
}

.search-input:focus {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

.search-icon {
    left: 24px !important;
    color: var(--primary) !important;
}

.hero-stats {
    margin-top: 60px;
    animation: fadeInUp 0.8s 0.3s var(--ease-smooth) both;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 28px;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s var(--ease-smooth);
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-stat-value {
    font-weight: 800;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- Modern Cards ----- */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-large);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    background: var(--gradient-hero);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: -1;
    filter: blur(20px);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-light);
}

.card:hover::after {
    opacity: 0.15;
}

.card-image {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover .card-image::after {
    opacity: 1;
}

.card-image img {
    transition: transform 0.6s var(--ease-smooth);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    font-weight: 700;
    padding: 6px 12px;
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.card-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.card:hover .card-title {
    color: var(--primary);
}

/* ----- Destination Cards - Bento Style ----- */
.destination-card {
    border-radius: var(--radius-large);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 5;
    transition: all 0.4s var(--ease-smooth);
}

.destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s;
    mix-blend-mode: overlay;
}

.destination-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.destination-card:hover::before {
    opacity: 0.3;
}

.destination-card-content {
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.85) 100%);
    padding: 24px;
    z-index: 3;
}

.destination-card-title {
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-tertiary);
    font-size: 1rem;
    margin-top: 8px;
}

.section-link {
    color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--primary-light);
    transition: all 0.2s var(--ease-smooth);
}

[data-theme="dark"] .section-link {
    background: rgba(99, 102, 241, 0.15);
}

.section-link:hover {
    background: var(--primary);
    color: white;
    gap: var(--space-3);
}

/* ----- Rating Badges - Modern ----- */
.rating-badge {
    border-radius: 10px;
    font-weight: 800;
    padding: 6px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rating-exceptional { background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%); }
.rating-excellent { background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); }
.rating-good { background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%); }
.rating-average { background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%); }

/* ----- Filters / Sidebar ----- */
.filters {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-glass);
}

.chip {
    background: var(--bg-base);
    border: 1px solid var(--border-default);
    border-radius: 50px;
    color: var(--text-secondary);
    transition: all 0.2s var(--ease-smooth);
    font-weight: 500;
}

.chip:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.chip.active {
    background: var(--gradient-hero);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* ----- Hotel Detail Page ----- */
.hotel-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    transition: all 0.3s var(--ease-smooth);
}

.info-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.info-card-title svg {
    color: var(--primary);
    padding: 8px;
    background: var(--primary-light);
    border-radius: 10px;
    width: 32px;
    height: 32px;
}

[data-theme="dark"] .info-card-title svg {
    background: rgba(99, 102, 241, 0.15);
}

.amenity {
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-medium);
    transition: all 0.3s var(--ease-smooth);
}

.amenity:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.amenity-icon {
    background: white;
    box-shadow: var(--shadow-card);
    color: var(--primary);
}

.booking-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card-hover);
    position: sticky;
    top: 90px;
}

.booking-rating-score {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem !important;
    font-weight: 900;
}

/* ----- Blog ----- */
.blog-hero {
    background: var(--gradient-mesh);
    background-color: #6366f1;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 100px 0;
}

.blog-hero-title {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 900;
    letter-spacing: -2px;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.post-category {
    background: var(--gradient-hero) !important;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.featured-card {
    border-radius: var(--radius-large) !important;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.featured-badge {
    background: var(--gradient-warm) !important;
    box-shadow: 0 4px 12px rgba(251, 113, 133, 0.4);
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.newsletter-widget {
    background: var(--gradient-hero) !important;
    border: none !important;
    box-shadow: 0 20px 60px var(--primary-glow);
}

/* ----- Footer ----- */
.footer {
    background: var(--bg-card);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 32px;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

[data-theme="dark"] .footer {
    background: #050505;
}

.footer-brand {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-title {
    color: var(--text-primary);
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    color: var(--text-tertiary);
}

/* ----- Ad Zones ----- */
.ad-zone {
    margin: 32px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
}

.ad-zone .ad-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-zone .ad-content > * {
    max-width: 100%;
}

.ad-placeholder {
    background: repeating-linear-gradient(
        45deg,
        rgba(99, 102, 241, 0.04),
        rgba(99, 102, 241, 0.04) 10px,
        rgba(99, 102, 241, 0.08) 10px,
        rgba(99, 102, 241, 0.08) 20px
    );
    border: 1px dashed rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-medium);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-inline {
    margin: 48px auto;
}

.ad-sidebar {
    margin: 24px 0;
    position: sticky;
    top: 90px;
}

.ad-sticky-mobile {
    display: none;
}

@media (max-width: 768px) {
    .ad-sticky-mobile {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: var(--bg-card);
        border-top: 1px solid var(--border-subtle);
        padding: 8px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }
}

/* ----- Pagination ----- */
.pagination a, .pagination span {
    border-radius: 12px;
    border: 1px solid var(--border-default);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.2s var(--ease-smooth);
}

.pagination a:hover, .pagination a.active {
    background: var(--gradient-hero);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px var(--primary-glow);
    transform: translateY(-2px);
}

/* ----- Animations ----- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
    50% { box-shadow: 0 0 0 12px transparent; }
}

.section .card,
.section .post-card,
.section .destination-card {
    animation: fadeInUp 0.6s var(--ease-smooth) both;
}

.section .card:nth-child(2),
.section .post-card:nth-child(2),
.section .destination-card:nth-child(2) { animation-delay: 0.05s; }
.section .card:nth-child(3),
.section .post-card:nth-child(3),
.section .destination-card:nth-child(3) { animation-delay: 0.1s; }
.section .card:nth-child(4),
.section .post-card:nth-child(4),
.section .destination-card:nth-child(4) { animation-delay: 0.15s; }

/* ----- Toast / Notifications ----- */
.toast {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-card-hover);
}

.toast.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.toast.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

/* ----- Autocomplete ----- */
.autocomplete-dropdown {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card-hover);
    margin-top: 12px;
}

.autocomplete-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

[data-theme="dark"] .autocomplete-item:hover {
    background: rgba(99, 102, 241, 0.15);
}

/* ----- User Menu ----- */
.user-menu-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.user-avatar-small {
    background: var(--gradient-hero) !important;
}

.user-dropdown {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card-hover);
}

/* ----- Favorites Count Badge ----- */
.favorites-count-badge {
    background: var(--gradient-warm) !important;
    box-shadow: 0 2px 8px rgba(251, 113, 133, 0.4);
}

/* ----- Mobile Menu ----- */
.mobile-nav {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-subtle);
}

.mobile-nav-link {
    color: var(--text-primary);
    border-radius: var(--radius-medium);
    transition: all 0.2s var(--ease-smooth);
}

.mobile-nav-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

[data-theme="dark"] .mobile-nav-link:hover {
    background: rgba(99, 102, 241, 0.15);
}

/* ----- Attractions ----- */
.attraction-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease-smooth);
}

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.attraction-category {
    background: var(--gradient-hero);
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* ----- Skeleton ----- */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-base) 0%,
        var(--border-subtle) 50%,
        var(--bg-base) 100%
    );
    background-size: 200% 100%;
}

/* ----- Theme Toggle Button ----- */
.theme-toggle {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle) !important;
    backdrop-filter: blur(10px);
    border-radius: 50px !important;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    transition: all 0.3s var(--ease-bounce);
}

.theme-toggle:hover {
    background: var(--primary-light);
    border-color: var(--primary) !important;
    color: var(--primary);
    transform: rotate(15deg);
}

/* ----- Mobile Optimizations ----- */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
        border-radius: 0 0 var(--radius-large) var(--radius-large);
    }

    .section {
        padding: 50px 0;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero-stat {
        padding: 12px 18px;
    }

    .blog-hero {
        padding: 60px 0;
        border-radius: 0 0 var(--radius-large) var(--radius-large);
    }
}

/* ----- Reduced Motion ----- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
