
:root {
    --brand-color: #A1488E;
    --brand-dark: #7a356b;
    --brand-glow: rgba(161, 72, 142, 0.4);
    --rating-color: #fbbf24;
    --bg-body: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --text-main: #1e293b;
    --text-secondary: #64748b;
    --border-color: rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body { padding-bottom: 80px !important; }
}

/* ── PROGRESS BAR ──────────────────────────────── */
.route-progress {
    position: fixed; top: 0; left: 0; width: 100%; height: 3px;
    background: rgba(0,0,0,0.05); z-index: 9999;
}
.route-progress-fill {
    height: 100%; width: 0%; background: linear-gradient(90deg, var(--brand-color), #c084fc);
    transition: width 0.3s ease; border-radius: 0 2px 2px 0;
}

/* ── FONDO DINÁMICO ────────────────────────────── */
.ambient-light {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(161, 72, 142, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(161, 72, 142, 0.05) 0%, transparent 40%);
    z-index: -2;
}

/* ── NAVBAR FLOTANTE ───────────────────────────── */
.navbar-floating {
    position: fixed; top: 20px; left: 20px; right: 20px;
    display: flex; justify-content: space-between; z-index: 100;
    pointer-events: none;
}
.nav-btn {
    pointer-events: auto;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-main); display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.nav-btn:hover {
    background: var(--brand-color); color: white; transform: scale(1.1);
    box-shadow: 0 0 20px var(--brand-glow); border-color: var(--brand-color);
}

/* ── HERO PARALLAX ─────────────────────────────── */
.hero-wrapper {
    position: relative; height: 45vh; min-height: 340px; overflow: hidden;
    display: flex; align-items: flex-end;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}
.hero-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 120%;
    object-fit: cover; z-index: -1; will-change: transform;
}
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg-body) 0%, rgba(248,250,252,0.85) 50%, transparent 100%);
}
.hero-content {
    width: 100%; max-width: 900px; margin: 0 auto;
    padding: 20px 24px 50px; text-align: center;
    position: relative; z-index: 2;
    transform: translateY(30px); opacity: 0; animation: fadeUp 1s ease forwards;
}

/* ── TEXTOS ────────────────────────────────────── */
.super-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 600; line-height: 0.95;
    letter-spacing: -1.5px; margin-bottom: 14px;
    background: linear-gradient(to bottom, #0f172a 40%, #475569 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.hero-badges {
    display: flex; gap: 10px; justify-content: center; margin-bottom: 20px;
}
.pill {
    padding: 6px 16px; border-radius: 100px;
    background: #ffffff; backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-secondary); box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.pill.brand { border-color: var(--brand-color); color: var(--brand-color); background: rgba(161, 72, 142, 0.05); }

/* ── ESTADÍSTICAS ──────────────────────────────── */
.stats-bar {
    max-width: 600px; margin: -30px auto 40px;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 20px;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    position: relative; z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.stat-item { text-align: center; border-right: 1px solid rgba(0,0,0,0.05); }
.stat-item:last-child { border: none; }
.stat-val { display: block; font-size: 1.5rem; font-weight: 700; color: var(--text-main); }
.stat-lbl { font-size: 0.7rem; text-transform: uppercase; color: var(--text-secondary); letter-spacing: 1px; }

/* ── LAYOUT 2 COLUMNAS (DESKTOP) ───────────────── */
.route-layout {
    max-width: 1300px; margin: 0 auto; padding: 0 20px 100px;
    display: flex; gap: 40px; align-items: flex-start;
}

.journey-section {
    flex: 1; min-width: 0; position: relative; padding: 0 20px;
}
.center-line {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(161, 72, 142, 0.2) 10%, rgba(161, 72, 142, 0.2) 90%, transparent);
    transform: translateX(-50%);
}

/* ── MAPA STICKY ───────────────────────────────── */
.map-sticky-wrapper {
    width: 420px; min-width: 420px;
    position: sticky; top: 90px;
    max-height: calc(100vh - 110px);
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    background: #fff;
}
.map-container {
    height: calc(100vh - 160px); max-height: 600px; min-height: 350px; width: 100%;
}
.map-legend {
    display: flex; gap: 16px; padding: 12px 16px;
    font-size: 0.75rem; font-weight: 600; color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
}
.map-legend i { margin-right: 4px; }

/* ── TRAVEL SEGMENT ───────────────────────────── */
.travel-segment {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 6px 0; position: relative; z-index: 2;
}
.travel-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(161, 72, 142, 0.08); color: var(--brand-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}
.travel-time {
    font-size: 0.8rem; font-weight: 700; color: var(--brand-color);
}
.travel-distance {
    font-size: 0.72rem; color: var(--text-secondary); font-weight: 500;
}

/* ── TIMELINE STOPS ────────────────────────────── */
.stop-row {
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 40px; position: relative;
}
.stop-marker {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 36px; height: 36px; background: #ffffff;
    border: 3px solid var(--brand-color); border-radius: 50%;
    z-index: 5; box-shadow: 0 0 0 4px rgba(255,255,255,0.8);
    transition: all 0.5s ease;
    display: flex; align-items: center; justify-content: center;
}
.stop-number {
    font-size: 0.75rem; font-weight: 800; color: var(--brand-color);
}
.stop-row:hover .stop-marker {
    background: var(--brand-color);
    box-shadow: 0 0 20px var(--brand-glow);
    transform: translate(-50%, -50%) scale(1.2);
}
.stop-row:hover .stop-number { color: #fff; }

.stop-row.active .stop-marker {
    background: var(--brand-color);
    box-shadow: 0 0 25px var(--brand-glow);
    transform: translate(-50%, -50%) scale(1.3);
}
.stop-row.active .stop-number { color: #fff; }

/* ── CARDS ─────────────────────────────────────── */
.stop-card {
    width: 45%; background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative; cursor: pointer;
    text-decoration: none; color: inherit; overflow: hidden;
}
.stop-row.stop-left { justify-content: flex-start; }
.stop-row.stop-left .stop-card { margin-right: auto; text-align: right; }
.stop-row.stop-right { justify-content: flex-end; }
.stop-row.stop-right .stop-card { margin-left: auto; text-align: left; }

.stop-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-color);
    box-shadow: 0 15px 40px rgba(161, 72, 142, 0.15);
}

.card-category {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--brand-color); margin-bottom: 8px; display: block; font-weight: 700;
}
.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; line-height: 1.1; margin-bottom: 8px; color: var(--text-main);
}
.card-location {
    font-size: 0.9rem; color: var(--text-secondary);
    display: flex; align-items: center; gap: 6px;
}
.stop-row.stop-left .card-location { justify-content: flex-end; }
.card-img-preview {
    width: 100%; height: 120px; border-radius: 12px;
    object-fit: cover; margin-top: 10px; opacity: 0.9; transition: 0.5s;
}
.stop-card:hover .card-img-preview { opacity: 1; transform: scale(1.02); }

.card-explore-btn {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px; padding: 6px 14px; border-radius: 50px;
    background: rgba(161, 72, 142, 0.08); color: var(--brand-color);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
    transition: 0.3s;
}
.stop-card:hover .card-explore-btn {
    background: var(--brand-color); color: #fff;
}

/* ── ROUTE SUMMARY (FIN DEL RECORRIDO) ────────── */
.route-summary {
    text-align: center; padding: 30px 20px; margin-top: 10px;
    position: relative; z-index: 2;
}
.summary-flag {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-dark));
    color: #fff; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; font-size: 1.2rem;
    box-shadow: 0 4px 20px var(--brand-glow);
}
.summary-label {
    text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem;
    font-weight: 700; color: var(--text-secondary); margin-bottom: 20px;
}
.summary-stats {
    display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
    background: #fff; border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 18px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    max-width: 500px; margin: 0 auto;
}
.summary-stat {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.85rem; color: var(--text-main);
}
.summary-stat i { color: var(--brand-color); font-size: 0.8rem; }
.summary-stat-val { font-weight: 800; }
.summary-stat-lbl { color: var(--text-secondary); font-weight: 500; }

/* ── MODAL ──────────────────────────────────────── */
.place-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px); z-index: 10000;
    display: none; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; transition: opacity 0.3s ease;
}
.place-modal-overlay.open { display: flex; opacity: 1; }

.place-modal {
    background: #fff; border-radius: 24px; max-width: 560px; width: 100%;
    max-height: 90vh; overflow-y: auto; position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    animation: modalSlideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute; top: 16px; right: 16px; z-index: 10;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
    border: none; color: #fff; font-size: 1.1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.modal-close:hover { background: rgba(0,0,0,0.7); transform: scale(1.1); }

.modal-hero {
    height: 220px; background-size: cover; background-position: center;
    position: relative; border-radius: 24px 24px 0 0;
    background-color: #1e293b;
}
.modal-hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    border-radius: 24px 24px 0 0;
}
.modal-badge {
    position: absolute; bottom: 16px; left: 20px;
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px;
    color: #fff; font-weight: 700; z-index: 2;
    padding: 4px 12px; border-radius: 50px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
}
.modal-stop-number {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--brand-color); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(161, 72, 142, 0.4);
}

.modal-body { padding: 24px; }
.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; line-height: 1.1;
    margin-bottom: 8px; color: var(--text-main);
}
.modal-meta {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px;
    font-size: 0.82rem; color: var(--text-secondary);
}
.modal-meta-item {
    display: inline-flex; align-items: center; gap: 5px;
}
.modal-meta-item.open-now { color: #16a34a; font-weight: 600; }
.modal-meta-item.closed { color: #ef4444; font-weight: 600; }

.modal-desc {
    font-size: 0.95rem; color: var(--text-secondary);
    line-height: 1.7; margin-bottom: 20px;
}

.modal-info-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px;
}
.modal-info-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px; background: #f8fafc; border-radius: 12px;
    font-size: 0.82rem; color: var(--text-main);
}
.modal-info-item i { color: var(--brand-color); width: 16px; text-align: center; }
.modal-info-item a { color: var(--brand-color); text-decoration: none; font-weight: 600; }
.modal-info-item a:hover { text-decoration: underline; }

.modal-map {
    height: 200px; border-radius: 16px; overflow: hidden;
    margin-bottom: 20px; display: none;
    border: 1px solid var(--glass-border);
}

.modal-actions {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.modal-action-btn {
    flex: 1; min-width: 140px; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 20px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
    text-decoration: none; transition: 0.3s; cursor: pointer; border: none;
}
.modal-action-btn.primary {
    background: var(--brand-color); color: #fff;
}
.modal-action-btn.primary:hover { background: var(--brand-dark); }
.modal-action-btn.secondary {
    background: #f1f5f9; color: var(--text-main); border: 1px solid var(--glass-border);
}
.modal-action-btn.secondary:hover { background: #e2e8f0; }

.modal-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; border-top: 1px solid var(--glass-border);
    background: #fafbfc; border-radius: 0 0 24px 24px;
}
.modal-nav-btn {
    background: none; border: none; color: var(--brand-color);
    font-weight: 700; font-size: 0.85rem; cursor: pointer;
    padding: 6px 12px; border-radius: 8px; transition: 0.2s;
    display: flex; align-items: center; gap: 6px;
}
.modal-nav-btn:hover { background: rgba(161, 72, 142, 0.08); }
.modal-nav-btn:disabled { color: #cbd5e1; cursor: default; }
.modal-nav-btn:disabled:hover { background: none; }
.modal-nav-counter { font-size: 0.8rem; color: var(--text-secondary); font-weight: 600; }

/* ── TOAST ──────────────────────────────────────── */
.copy-toast {
    position: fixed; top: -60px; left: 50%; transform: translateX(-50%);
    background: #1e293b; color: #fff; padding: 12px 24px;
    border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    z-index: 99999; display: flex; align-items: center; gap: 8px;
    transition: top 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.copy-toast.show { top: 24px; }
.copy-toast i { color: #4ade80; }

/* ── ACTION BAR ────────────────────────────────── */
.action-bar {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 8px 8px 8px 24px;
    border-radius: 100px;
    display: flex; align-items: center; gap: 20px;
    z-index: 50; box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    width: 90%; max-width: 400px; justify-content: space-between;
}
.price-tag { font-size: 0.9rem; color: var(--text-main); }
.btn-reserve {
    background: var(--brand-color); color: #ffffff;
    font-weight: 700; padding: 12px 24px; border-radius: 50px;
    text-decoration: none; transition: 0.3s; border: 1px solid var(--brand-color);
}
.btn-reserve:hover { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }

/* ── FLASH MESSAGE ─────────────────────────────── */
.flash-message {
    position: fixed; top: 90px; left: 50%; transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    border: 1px solid var(--brand-color); color: var(--text-main);
    padding: 12px 24px; border-radius: 50px; z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 12px;
    font-weight: 600; font-size: 0.95rem;
    animation: slideDownFade 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    min-width: 300px; justify-content: center;
}
.flash-message i { color: var(--brand-color); font-size: 1.2rem; }

@keyframes slideDownFade {
    from { opacity: 0; transform: translate(-50%, -20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE MOBILE ─────────────────────────── */
@media (max-width: 1024px) {
    .route-layout { flex-direction: column; }
    .map-sticky-wrapper {
        width: 100%; min-width: 100%;
        position: relative; top: 0;
        margin-bottom: 40px; order: -1;
    }
    .map-container { height: 300px; }
}

@media (max-width: 768px) {
    .hero-wrapper { height: 40vh; min-height: 280px; }
    .hero-content { padding: 16px 20px 40px; }
    .hero-content > p { font-size: 0.9rem !important; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .super-title { font-size: 2.8rem; margin-bottom: 12px; }
    .stats-bar { margin: -30px auto 30px; padding: 14px; border-radius: 16px; }
    .stat-val { font-size: 1.3rem; }
    .stat-lbl { font-size: 0.65rem; }

    .route-layout { padding: 0 12px 100px; gap: 20px; }
    .map-sticky-wrapper { border-radius: 16px; margin-bottom: 20px; }
    .map-container { height: 220px; min-height: 220px; }
    .map-legend { padding: 8px 12px; font-size: 0.7rem; }

    .journey-section { padding: 0 10px; }
    .travel-segment { justify-content: flex-start; margin-left: 20px; padding-left: 20px; gap: 6px; }
    .travel-icon { width: 24px; height: 24px; font-size: 0.6rem; }
    .travel-time { font-size: 0.75rem; }
    .travel-distance { font-size: 0.68rem; }
    .center-line { left: 20px; }
    .stop-row { flex-direction: column; align-items: flex-start; margin-left: 20px; padding-left: 30px; margin-bottom: 28px; }
    .stop-marker { left: 0; top: 20px; transform: translate(-50%, 0); width: 30px; height: 30px; }
    .stop-number { font-size: 0.65rem; }
    .stop-row.active .stop-marker { transform: translate(-50%, 0) scale(1.2); }
    .stop-row:hover .stop-marker { transform: translate(-50%, 0) scale(1.1); }
    .stop-card { width: 100%; text-align: left !important; margin: 0 !important; padding: 14px; border-radius: 16px; }
    .stop-row.stop-left .card-location { justify-content: flex-start; }
    .card-title { font-size: 1.15rem; }
    .card-category { font-size: 0.65rem; margin-bottom: 4px; }
    .card-location { font-size: 0.8rem; }
    .card-img-preview { height: 100px; border-radius: 10px; margin-top: 8px; }
    .card-explore-btn { margin-top: 8px; padding: 5px 12px; font-size: 0.72rem; }

    .route-summary { padding: 20px 15px; }
    .summary-stats { gap: 16px; padding: 14px 16px; }
    .summary-stat { font-size: 0.8rem; }

    .action-bar { bottom: 76px; padding: 6px 6px 6px 16px; gap: 12px; border-radius: 50px; }
    .price-tag { font-size: 0.8rem; }
    .btn-reserve { padding: 10px 18px; font-size: 0.85rem; }

    .place-modal-overlay { align-items: flex-end; padding: 0; }
    .place-modal { max-width: 100%; max-height: 90vh; border-radius: 20px 20px 0 0; margin-top: auto; }
    .modal-hero { height: 160px; border-radius: 20px 20px 0 0; }
    .modal-body { padding: 18px; }
    .modal-title { font-size: 1.3rem; }
    .modal-info-grid { grid-template-columns: 1fr; }
    .modal-nav { border-radius: 0; }
}

/* ── SITE FOOTER ───────────────────────────────── */
.site-footer { background:#000; color:rgba(255,255,255,0.8); padding:52px 24px 44px; margin-top:40px; }
.site-footer-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1.4fr; gap:48px; align-items:start; }
.footer-block { display:flex; flex-direction:column; }
.footer-logo { font-family:'Playfair Display',serif; font-size:1.6rem; font-weight:400; color:#fff; letter-spacing:-0.01em; margin-bottom:10px; }
.footer-tagline { font-size:0.82rem; color:rgba(255,255,255,0.5); line-height:1.65; margin-bottom:16px; }
.footer-home-link { display:inline-block; font-size:0.78rem; font-weight:600; letter-spacing:0.6px; color:#c084fc; text-decoration:none; border-bottom:1px solid rgba(192,132,252,0.35); padding-bottom:2px; transition:color 0.2s,border-color 0.2s; width:fit-content; }
.footer-home-link:hover { color:#fff; border-color:rgba(255,255,255,0.5); }
.footer-block-title { font-size:0.68rem; font-weight:700; text-transform:uppercase; letter-spacing:1.8px; color:rgba(255,255,255,0.35); margin-bottom:16px; }
.footer-social-row { display:flex; gap:10px; }
.footer-social-btn { width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.65); font-size:1rem; text-decoration:none; transition:background 0.25s,border-color 0.25s,color 0.25s,transform 0.2s; }
.footer-social-btn:hover { background:#7B2D8B; border-color:#7B2D8B; color:#fff; transform:translateY(-2px); }
.footer-support-btn { display:flex; align-items:center; gap:14px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:14px; padding:16px 18px; color:rgba(255,255,255,0.75); text-decoration:none; font-size:0.83rem; line-height:1.5; transition:background 0.25s,border-color 0.25s,color 0.25s; }
.footer-support-btn:hover { background:rgba(123,45,139,0.22); border-color:rgba(123,45,139,0.5); color:#fff; }
.footer-support-btn>i { font-size:1.15rem; color:#c084fc; flex-shrink:0; transition:color 0.25s; }
.footer-support-btn:hover>i { color:#fff; }
.footer-support-btn strong { color:#fff; font-weight:700; }
.footer-copyright { max-width:1100px; margin:36px auto 0; padding-top:22px; border-top:1px solid rgba(255,255,255,0.07); font-size:0.72rem; color:rgba(255,255,255,0.25); text-align:center; letter-spacing:0.4px; }
@media(max-width:768px){
    .site-footer { display:none; }
    .site-footer-inner { grid-template-columns:1fr; gap:36px; text-align:center; }
    .footer-social-row { justify-content:center; }
    .footer-home-link { margin:0 auto; }
}
