:root {
    --primary: #0284c7;
    /* Light blue/teal accent */
    --primary-hover: #0369a1;
    --primary-light: #e0f2fe;
    --background: #f8fafc;
    --surface: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;

    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Reset & Base Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    background-image:
        radial-gradient(at 0% 0%, hsla(210, 100%, 92%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(180, 100%, 94%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(210, 100%, 94%, 1) 0px, transparent 50%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.2;
}

.hidden {
    display: none !important;
}

.mt-8 {
    margin-top: 2rem;
}

/* Typography Utilities */
.text-sm {
    font-size: 0.875rem;
}

/* Components */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.glass-dark {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--danger-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.glass-dark svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(2, 132, 199, 0.5);
}

.btn-secondary {
    background-color: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--background);
}

.btn-emergency {
    background-color: var(--danger);
    color: white;
    font-weight: 600;
}

.btn-emergency:hover {
    background-color: #dc2626;
    transform: scale(1.02);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo span span {
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    cursor: pointer;
    color: var(--text);
}

/* Main Layout */
.main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: calc(100vh - 70px);
}

/* Alert Banner */
.alert-banner {
    background-color: var(--danger-light);
    border: 1px solid #fca5a5;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    animation: slideDown 0.3s ease-out forwards;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.alert-icon {
    color: var(--danger);
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
}

.alert-text {
    flex: 1;
}

.alert-text strong {
    color: var(--danger);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.alert-text p {
    color: #991b1b;
    margin: 0;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* Input Card */
.input-card {
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: left;
}

.input-wrapper {
    margin-bottom: 1rem;
}

.input-wrapper textarea {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.2s;
    background: rgba(255, 255, 255, 0.8);
}

.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.quick-symptoms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quick-symptoms span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.tag {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

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

.input-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.disclaimer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.disclaimer svg {
    color: var(--warning);
}

/* Loader */
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    gap: 1.5rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-light);
    border-left-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Results section */
.results-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.back-btn {
    align-self: flex-start;
}

.results-header h2 {
    font-size: 2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* Condition Card */
.condition-card {
    grid-column: 1 / -1;
    background: linear-gradient(to bottom right, #ffffff, #f0f9ff);
    border: 1px solid #bae6fd;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.badge-confidence {
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-confidence.high {
    background: var(--success-light);
    color: #047857;
}

.condition-title {
    font-size: 1.875rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.condition-desc {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
}

.symptom-match-list {
    list-style: none;
    margin-top: 0.5rem;
}

.symptom-match-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* Treatment Card */
.guidance-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.guidance-item {
    display: flex;
    gap: 1rem;
}

.icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrap.rx {
    background: #e0e7ff;
    color: #4f46e5;
}

.icon-wrap.med {
    background: #d1fae5;
    color: #059669;
}

.icon-wrap.warning {
    background: #fee2e2;
    color: #dc2626;
}

.guidance-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.guidance-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Map Card */
.map-card .tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.25rem 0.75rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
}

.tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 160px;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.places-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.place-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--background);
}

.place-info h4 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.place-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.place-action {
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.place-action:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
    animation-delay: var(--delay);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Guest Overlay Styles */
.guest-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    text-align: center;
    padding: 2rem;
}

.guest-overlay svg {
    color: var(--warning);
    margin-bottom: 0.75rem;
}

.guest-overlay h4 {
    font-size: 1.25rem;
    color: var(--text);
}

.guest-mode .restricted-content {
    filter: blur(4px);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.guest-mode .restricted-content * {
    pointer-events: none;
}

/* Auth Section */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-glass-panel {
    max-width: 400px;
    width: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    animation: slideUp 0.5s ease-out;
}

.auth-header h2 {
    margin: 1rem 0 0.5rem;
    font-size: 1.75rem;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
    background: rgba(255, 255, 255, 0.8);
}

.auth-form input:focus {
    border-color: var(--primary);
}

.auth-switch {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.auth-switch span {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}

.auth-switch span:hover {
    text-decoration: underline;
}

/* AI Chatbot Assistant */
.ai-assistant {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chatbot-toggle-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-hover);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: botPopup 0.3s ease-out;
    border: 1px solid var(--border);
}

.chatbot-window.hidden {
    display: none !important;
}

@keyframes botPopup {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.chat-header {
    background: var(--primary);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.chat-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-select {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-sm);
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
    outline: none;
    cursor: pointer;
}

.lang-select option {
    color: var(--text);
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--background);
}

.message {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.bot {
    background: white;
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 0;
    box-shadow: var(--shadow-sm);
}

.message.user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
    box-shadow: 0 2px 4px rgba(2, 132, 199, 0.3);
}

.chat-input-area {
    padding: 0.75rem;
    background: white;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid var(--border);
    padding: 0.6rem 0.8rem;
    border-radius: 2rem;
    outline: none;
    font-size: 0.9rem;
    background: var(--background);
}

.chat-input-area input:focus {
    border-color: var(--primary);
    background: white;
}

.voice-btn,
.send-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.2s;
}

.voice-btn:hover,
.send-btn:hover {
    background: var(--primary-light);
}

.voice-btn.recording {
    color: var(--danger);
    background: var(--danger-light);
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

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

    .alert-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn-emergency {
        width: 100%;
    }

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

    .chatbot-window {
        width: calc(100% - 2rem);
        right: 1rem;
        bottom: 5rem;
    }
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Reminders UI */
.reminder-item {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reminder-item strong {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.reminder-item .time {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.reminder-item .btn-remove {
    margin-top: 0.5rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* ==========================================
   Footer Styles
   ========================================== */
.app-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0c1a2e 100%);
    color: #cbd5e1;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 2.5rem;
}

/* Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 0.75rem;
}

.footer-logo span span {
    color: #f1f5f9;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-badge {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Links */
.footer-links h4 {
    color: #f1f5f9;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.footer-links ul li a:hover {
    color: #38bdf8;
    padding-left: 4px;
}

/* Creator Card */
.footer-creator h4 {
    color: #f1f5f9;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.creator-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
}

.creator-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.creator-info {
    display: flex;
    flex-direction: column;
}

.creator-info strong {
    color: #f1f5f9;
    font-size: 0.95rem;
}

.creator-info span {
    color: #64748b;
    font-size: 0.78rem;
}

.creator-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.creator-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.creator-tech span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.73rem;
    font-family: monospace;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom-inner p {
    font-size: 0.82rem;
    color: #475569;
}

.footer-bottom-inner strong {
    color: #94a3b8;
}

.heart {
    color: #ef4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: #334155 !important;
}

/* ==========================================
   Footer — Responsive
   ========================================== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2rem 1.25rem 1.5rem;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.25rem;
    }

    .footer-badges {
        justify-content: flex-start;
    }
}