/* desktop/assets/css/desktop.css — Dedicated Desktop PC Design System */

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --secondary: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --light: #f8fafc;
    --border: #e2e8f0;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --card-hover-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.15);
    --font-heading: 'Prompt', sans-serif;
    --font-body: 'Sarabun', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #334155;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
}

/* ==================== DESKTOP NAVBAR ==================== */
.desktop-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.desktop-nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.desktop-nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.desktop-nav-brand img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
}

.desktop-brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.desktop-brand-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.desktop-search-wrapper {
    position: relative;
    flex: 1;
    max-width: 480px;
}

.desktop-search-inner {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1.5px solid transparent;
    border-radius: 999px;
    padding: 4px 6px 4px 16px;
    transition: all 0.25s ease;
}

.desktop-search-inner:focus-within {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.desktop-search-icon {
    font-size: 1rem;
    color: #94a3b8;
    margin-right: 8px;
}

.desktop-search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.92rem;
    width: 100%;
    font-family: var(--font-body);
    color: #1e293b;
}

.desktop-search-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: background 0.2s;
}

.desktop-search-btn:hover {
    background: var(--primary-hover);
}

.desktop-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1050;
}

.desktop-search-results.show {
    display: block;
}

.desktop-search-item {
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.2s;
}

.desktop-search-item:hover {
    background: #f8fafc;
}

.desktop-search-item .item-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.desktop-search-item .item-meta {
    font-size: 0.8rem;
    color: #64748b;
}

.desktop-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #475569;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.2s ease;
}

.nav-link-item:hover {
    color: var(--primary);
    background: #f1f5f9;
}

.nav-link-item.active {
    color: var(--primary);
    background: #eff6ff;
}

.btn-admin-desktop {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.25s ease;
    margin-left: 8px;
}

.btn-admin-desktop:hover {
    background: #1e293b;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.desktop-theme-toggle {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
    margin-left: 4px;
}

.desktop-theme-toggle:hover {
    background: #e2e8f0;
}

/* ==================== MAP SECTION (DESKTOP) ==================== */
.desktop-map-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.desktop-map-toolbar {
    padding: 16px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.desktop-map-canvas {
    position: relative;
    background: #0b1329;
    overflow: hidden;
    cursor: grab;
}

.desktop-map-canvas:active {
    cursor: grabbing;
}

.desktop-map-wrapper {
    position: relative;
    width: 100%;
}

.desktop-map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    pointer-events: none;
}

.pins-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 15;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0.1s;
    user-select: none;
}

.map-pin:hover {
    z-index: 100;
}

/* ── PIN MARKER ICON & ANIMATIONS ── */
.pin-marker-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pinFloatBounce 2.4s ease-in-out infinite;
    transform-origin: bottom center;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Stagger animation timing across pins for natural organic movement */
.map-pin:nth-child(2n) .pin-marker-body {
    animation-duration: 2.6s;
    animation-delay: -0.6s;
}
.map-pin:nth-child(3n) .pin-marker-body {
    animation-duration: 2.8s;
    animation-delay: -1.3s;
}
.map-pin:nth-child(4n) .pin-marker-body {
    animation-duration: 2.2s;
    animation-delay: -0.4s;
}
.map-pin:nth-child(5n) .pin-marker-body {
    animation-duration: 2.5s;
    animation-delay: -1.8s;
}

.map-pin:hover .pin-marker-body {
    animation-play-state: paused;
    transform: translateY(-10px) scale(1.22) !important;
}

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

.pin-head {
    width: 48px;
    height: 48px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    border: 2.5px solid #ffffff;
    transition: all 0.25s ease;
}

.pin-head-icon {
    transform: rotate(45deg);
    font-size: 1.45rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulse Ripple & Shadow Under Pin Point */
.pin-pulse {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 8px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    z-index: -1;
    animation: pinShadowScale 2.4s ease-in-out infinite;
}

.map-pin:nth-child(2n) .pin-pulse { animation-duration: 2.6s; animation-delay: -0.6s; }
.map-pin:nth-child(3n) .pin-pulse { animation-duration: 2.8s; animation-delay: -1.3s; }
.map-pin:nth-child(4n) .pin-pulse { animation-duration: 2.2s; animation-delay: -0.4s; }
.map-pin:nth-child(5n) .pin-pulse { animation-duration: 2.5s; animation-delay: -1.8s; }

@keyframes pinShadowScale {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(0.62);
        opacity: 0.25;
    }
}

.pin-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 12px;
    border-radius: 50%;
    border: 2.5px solid rgba(59, 130, 246, 0.75);
    animation: pinRipple 2s infinite ease-out;
}

@keyframes pinRipple {
    0% { width: 12px; height: 6px; opacity: 1; }
    100% { width: 48px; height: 22px; opacity: 0; }
}

/* Color Variants & Luminous Glow Pulsing */
.pin-marker-district .pin-head {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    animation: pinGlowBlue 2.4s infinite;
}
.map-pin:nth-child(2n) .pin-marker-district .pin-head { animation-duration: 2.6s; animation-delay: -0.6s; }
.map-pin:nth-child(3n) .pin-marker-district .pin-head { animation-duration: 2.8s; animation-delay: -1.3s; }
.pin-marker-district .pin-pulse::after {
    border-color: rgba(37, 99, 235, 0.85);
}

@keyframes pinGlowBlue {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 99, 235, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(37, 99, 235, 0), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
}

.pin-marker-subdistrict .pin-head {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    animation: pinGlowGreen 2.4s infinite;
}
.map-pin:nth-child(2n) .pin-marker-subdistrict .pin-head { animation-duration: 2.6s; animation-delay: -0.6s; }
.map-pin:nth-child(3n) .pin-marker-subdistrict .pin-head { animation-duration: 2.8s; animation-delay: -1.3s; }
.pin-marker-subdistrict .pin-pulse::after {
    border-color: rgba(16, 185, 129, 0.85);
}

@keyframes pinGlowGreen {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(16, 185, 129, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(16, 185, 129, 0), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
}

.pin-marker-learning .pin-head {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: pinGlowAmber 2.4s infinite;
}
.map-pin:nth-child(2n) .pin-marker-learning .pin-head { animation-duration: 2.6s; animation-delay: -0.6s; }
.map-pin:nth-child(3n) .pin-marker-learning .pin-head { animation-duration: 2.8s; animation-delay: -1.3s; }
.pin-marker-learning .pin-pulse::after {
    border-color: rgba(245, 158, 11, 0.85);
}

@keyframes pinGlowAmber {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(245, 158, 11, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(245, 158, 11, 0), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
}

.pin-marker-library .pin-head {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    animation: pinGlowCyan 2.4s infinite;
}
.map-pin:nth-child(2n) .pin-marker-library .pin-head { animation-duration: 2.6s; animation-delay: -0.6s; }
.map-pin:nth-child(3n) .pin-marker-library .pin-head { animation-duration: 2.8s; animation-delay: -1.3s; }
.pin-marker-library .pin-pulse::after {
    border-color: rgba(6, 182, 212, 0.85);
}

@keyframes pinGlowCyan {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(6, 182, 212, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(6, 182, 212, 0), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
}

.pin-marker-sage .pin-head {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    animation: pinGlowPurple 2.4s infinite;
}
.map-pin:nth-child(2n) .pin-marker-sage .pin-head { animation-duration: 2.6s; animation-delay: -0.6s; }
.map-pin:nth-child(3n) .pin-marker-sage .pin-head { animation-duration: 2.8s; animation-delay: -1.3s; }
.pin-marker-sage .pin-pulse::after {
    border-color: rgba(139, 92, 246, 0.85);
}

@keyframes pinGlowPurple {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(139, 92, 246, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(139, 92, 246, 0), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
}

/* ── HOVER POPUP CARD ── */
.pin-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.92);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 12px 14px;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    max-width: 280px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.22s;
    z-index: 200;
}

/* Triangle Pointer (Default bottom pointing down to pin) */
.pin-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px 7px 0 7px;
    border-style: solid;
    border-color: rgba(15, 23, 42, 0.95) transparent transparent transparent;
}

/* Position Below Pin (when pin is near top edge) */
.pin-popup.popup-bottom {
    bottom: auto;
    top: calc(100% + 12px);
    transform: translateX(-50%) translateY(-8px) scale(0.92);
}
.pin-popup.popup-bottom::after {
    top: auto;
    bottom: 100%;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent rgba(15, 23, 42, 0.95) transparent;
}

/* Position Left (when pin is near left edge) */
.pin-popup.popup-left {
    left: 0;
    transform: translateX(-10%) translateY(8px) scale(0.92);
}
.pin-popup.popup-left::after {
    left: 20%;
}
.pin-popup.popup-bottom.popup-left {
    transform: translateX(-10%) translateY(-8px) scale(0.92);
}

/* Position Right (when pin is near right edge) */
.pin-popup.popup-right {
    left: auto;
    right: 0;
    transform: translateX(10%) translateY(8px) scale(0.92);
}
.pin-popup.popup-right::after {
    left: auto;
    right: 20%;
}
.pin-popup.popup-bottom.popup-right {
    transform: translateX(10%) translateY(-8px) scale(0.92);
}

/* Show Popup on Pin Hover */
.map-pin:hover .pin-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}
.map-pin:hover .pin-popup.popup-left {
    transform: translateX(-10%) translateY(0) scale(1);
}
.map-pin:hover .pin-popup.popup-right {
    transform: translateX(10%) translateY(0) scale(1);
}

.pin-popup-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.pin-popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
}

.pin-popup-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pin-popup-thumb {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
    background: #1e293b;
}

.pin-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 6px 12px;
    border-radius: 8px;
    background: #3b82f6;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.pin-popup-btn:hover {
    background: #2563eb;
    color: #ffffff;
}

.pin-bubble.pin-library {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: 2px solid #ffffff;
}

.pin-bubble.pin-sage {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: 2px solid #ffffff;
}

/* ==================== DESKTOP FOOTER ==================== */
.desktop-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 24px;
    border-top: 1px solid #1e293b;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-main-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1e293b;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-address {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-links-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-stats-box {
    margin-top: 16px;
    padding: 12px 18px;
    background: #1e293b;
    border-radius: 12px;
    display: inline-block;
    color: #ffffff;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.85rem;
}

.desktop-back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.desktop-back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.desktop-back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
}

/* Dark Theme (Desktop) */
body.dark-theme {
    background-color: #0b1120;
    color: #e2e8f0;
}

body.dark-theme .desktop-navbar {
    background: rgba(15, 23, 42, 0.95);
    border-color: #1e293b;
}

body.dark-theme .desktop-brand-title {
    color: #ffffff;
}

body.dark-theme .desktop-search-inner {
    background: #1e293b;
}

body.dark-theme .desktop-search-input {
    color: #ffffff;
}

body.dark-theme .nav-link-item {
    color: #cbd5e1;
}

body.dark-theme .desktop-map-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-theme .desktop-map-toolbar {
    background: #0f172a;
    border-color: #334155;
}

/* ==================== HERO SECTION & RISING LIGHT EFFECT ==================== */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 68px);
    min-height: 650px;
    overflow: hidden;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../../assets/images/hero_bg_final.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

/* Particles Canvas */
.hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* ==================== CUSTOM DYNAMIC SECTIONS ==================== */
.custom-content {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.custom-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
