/* ============================================
   DOKU Partners - Custom Styles
   Bootstrap 5 + Custom CSS
   ============================================ */

:root {
    --primary-color: #dc2626;        /* Red */
    --secondary-color: #b91c1c;      /* Dark red */
    --accent-color: #ef4444;         /* Light red */
    --text-color: #1f2937;           /* Dark graphite */
    --bg-light: #f8fafc;             /* Light gray-white */
    --bg-dark: #2d3748;              /* Dark graphite */
    --border-color: #e5e7eb;         /* Light gray */
    --success: #10b981;              /* Keep some green for accents */
    --danger-color: #dc2626;
    --dark-bg: #1a202c;              /* Very dark graphite */
    --light-bg: #f8f9fa;
    --border-radius: 8px;
}

/* ============================================
   Global Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

/* ============================================
   Gradients
   ============================================ */

.bg-gradient {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #34495e 100%) !important;
}

.bg-gradient-red {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* ============================================
   Navbar Styles
   ============================================ */

.navbar {
    background: linear-gradient(90deg, #ffffff 0%, #f3f4f6 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    padding: 0 !important;
}

.navbar-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* ============================================
   Sticky CTA Button
   ============================================ */

@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4),
                    0 0 0 0 rgba(245, 158, 11, 0.6);
    }
    50% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.6),
                    0 0 0 10px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4),
                    0 0 0 0 rgba(245, 158, 11, 0);
    }
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.sticky-cta {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    color: #1f2937;
    padding: 14px 18px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
    white-space: nowrap;
    font-size: 14px;
    animation: pulse-glow 2.5s ease-in-out infinite, float-bounce 3s ease-in-out infinite;
    border: none;
    backdrop-filter: blur(4px);
}

.sticky-cta:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.7);
    color: #1f2937;
    text-decoration: none;
    animation: pulse-glow 1s ease-in-out infinite;
}

.sticky-cta:active {
    transform: translateY(-2px) scale(0.98);
}

.sticky-cta i {
    animation: icon-pulse 1.5s ease-in-out infinite;
}

.sticky-cta:hover i {
    animation: none;
}

.sticky-cta .cta-text {
    display: inline;
    letter-spacing: 0.5px;
}

/* Mobile responsiveness for sticky CTA */
@media (max-width: 576px) {
    .sticky-cta {
        right: 12px;
        bottom: 20px;
        padding: 12px 14px;
        font-size: 12px;
        animation: pulse-glow 2.5s ease-in-out infinite;
    }
    
    .sticky-cta .cta-text {
        display: none;
    }
    
    .sticky-cta i {
        margin: 0 !important;
        animation: icon-pulse 1.5s ease-in-out infinite;
    }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #1f2937, #111827);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1040;
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    animation: slideUp 0.3s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text h5 {
    color: white;
    margin-bottom: 8px;
}

.cookie-banner-text p {
    color: #d1d5db;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner-actions .btn {
    white-space: nowrap;
    font-size: 12px;
    padding: 8px 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h5 {
    margin: 0;
    color: #1f2937;
}

.cookie-modal-header .btn-close {
    padding: 0;
    width: auto;
    height: auto;
    opacity: 0.5;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-setting {
    margin-bottom: 20px;
}

.cookie-setting .form-check {
    margin: 0;
}

.cookie-setting .form-check-label {
    cursor: pointer;
    margin-left: 10px;
    font-weight: 500;
}

.cookie-setting .form-check-label strong {
    display: block;
    margin-bottom: 5px;
    color: #1f2937;
}

.cookie-setting .text-muted {
    font-size: 13px;
    line-height: 1.4;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    font-weight: 600;
}

/* Mobile responsiveness for cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .cookie-banner-actions .btn {
        flex: 1;
        min-width: 80px;
    }

    .cookie-modal-content {
        max-width: 90%;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .btn {
        width: 100%;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* ============================================
   Navbar
   ============================================ */

.navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-section {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
}

.min-vh-50 {
    min-height: 50vh;
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-light {
    font-weight: 600;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Cards
   ============================================ */

.card {
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    background-color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-detail-card {
    border-left: 4px solid var(--primary-color);
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card {
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    background-color: #fff;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(82, 183, 136, 0.15);
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0 !important;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
}

/* ============================================
   Calculator Stepper Styles
   ============================================ */

.calculator-stepper {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.step-indicators::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-indicator.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step-indicator.completed .step-number {
    background: var(--success);
    color: white;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

.step-indicator.active .step-label {
    color: var(--primary-color);
    font-weight: 500;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.step-error {
    display: none;
}

/* ============================================
   Mobile Sticky CTA
   ============================================ */

@media (max-width: 768px) {
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid var(--border-color);
    }

    .mobile-sticky-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .mobile-sticky-cta .btn:last-child {
        margin-bottom: 0;
    }
}

/* ============================================
   Process Steps
   ============================================ */

.process-step {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    margin-bottom: 2rem;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* ============================================
   FAQ Accordion
   ============================================ */

.faq-accordion {
    margin-top: 2rem;
}

.faq-accordion details {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: white;
}

.faq-accordion summary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-color);
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

.faq-accordion summary:hover {
    background: #e5e7eb;
}

.faq-accordion summary::marker {
    color: var(--primary-color);
}

.faq-accordion details[open] summary {
    background: var(--primary-color);
    color: white;
}

.faq-accordion details[open] summary::marker {
    color: white;
}

.faq-accordion p {
    padding: 0 1.5rem 1rem;
    margin: 0;
    color: #6b7280;
}

/* ============================================
   Feature Icons
   ============================================ */

.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
}

/* ============================================
   Contact Information
   ============================================ */

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(82, 183, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: rgba(82, 183, 136, 0.2);
    transform: scale(1.1);
}

/* ============================================
   Contact Form
   ============================================ */

.contact-form-wrapper {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(82, 183, 136, 0.15);
}

.form-check-input {
    border-color: #ddd;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ============================================
   Accordion
   ============================================ */

.accordion-button {
    background-color: #f8f9fa;
    border-color: #e0e0e0;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(82, 183, 136, 0.1);
    color: var(--primary-color);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(82, 183, 136, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e5128'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ============================================
   Process Timeline
   ============================================ */

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-color) 100%);
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: -25px;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 1;
}

.step-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ============================================
   Industry Cards
   ============================================ */

.industry-card {
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    background-color: #fff;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(82, 183, 136, 0.2);
}

.industry-card i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.industry-card:hover i {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0 !important;
}

.cta-section h3 {
    color: #fff;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   Footer
   ============================================ */

footer {
    background-color: #1a1a1a;
    margin-top: 5rem;
}

footer h6 {
    color: #fff;
    font-weight: 700;
}

footer .text-muted {
    color: #d0d4d8 !important;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--accent-color) !important;
}

.text-muted a {
    color: inherit;
}

/* ============================================
   Utilities
   ============================================ */

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Text Utilities */
.text-success {
    color: var(--accent-color) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 3rem 0 !important;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .cta-section .btn {
        margin-top: 1rem;
    }

    .process-timeline {
        padding-left: 0;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .step-number {
        position: relative;
        left: 0;
        width: 40px;
        height: 40px;
        margin-right: 1rem;
        font-size: 1.25rem;
    }

    .process-step {
        display: flex;
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 1rem;
    }

    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .navbar,
    footer,
    .cta-section {
        display: none;
    }

    body {
        background-color: #fff;
    }
}

/* ============================================
   SPA (Single Page Application) Styles
   ============================================ */

/* Page content transitions */
#page-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Active navigation link styling */
.nav-link.active {
    position: relative;
    color: var(--accent-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Smooth hover effects for links */
.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Component animations */
.animate-in {
    animation: slideUpFade 0.6s ease-out forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading spinner */
.spinner-border {
    border-width: 4px;
}

/* SPA-specific button styling */
a[data-route] {
    cursor: pointer;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Prevent layout shift on page changes */
main {
    min-height: calc(100vh - 200px);
}

/* Footer spacing */
#footer-container {
    margin-top: auto;
}
