/* MantraBySoul - Bootstrap Enhanced Styles */

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --bs-primary: #667eea;
    --bs-primary-rgb: 102, 126, 234;
    --primary-dark: #4f46e5;
    --primary-light: #a5b4fc;
    
    /* Secondary Colors */
    --bs-secondary: #ec4899;
    --secondary-dark: #db2777;
    --accent-color: #06b6d4;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    
    /* Shadows */
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Animation */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-bounce: bounce 2s ease-in-out infinite;
}

/* Override Bootstrap defaults */
body {
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.font-display {
    font-family: var(--font-display);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--bs-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    color: white;
}

/* Header */
.navbar {
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-soft);
    padding: 0.5rem 0;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.9);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(102, 126, 234, 0.1);
    color: var(--bs-primary) !important;
}

.language-switcher .btn {
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.language-switcher .btn.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

/* Buttons */
.btn {
    border-radius: 2rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-width: 2px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-gradient {
    background: var(--primary-gradient);
    border: 2px solid transparent;
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-floating {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.btn-floating:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    background: var(--hero-gradient);
    color: white;
    overflow: hidden;
}

/* Hero Background with Image */
.hero-bg {
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><radialGradient id="g1" cx="0.3" cy="0.3"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.8"/><stop offset="100%" stop-color="%23764ba2" stop-opacity="0.3"/></radialGradient><radialGradient id="g2" cx="0.7" cy="0.7"><stop offset="0%" stop-color="%23f093fb" stop-opacity="0.6"/><stop offset="100%" stop-color="%23f5576c" stop-opacity="0.2"/></radialGradient></defs><rect width="100%" height="100%" fill="%23667eea"/><circle cx="600" cy="300" r="400" fill="url(%23g1)"/><circle cx="1320" cy="780" r="500" fill="url(%23g2)"/><circle cx="300" cy="800" r="200" fill="url(%23g1)" opacity="0.3"/><circle cx="1600" cy="200" r="300" fill="url(%23g2)" opacity="0.4"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
    opacity: 0.8;
    z-index: 2;
}

/* Floating Lotus Elements */
.floating-lotus {
    z-index: 3;
    pointer-events: none;
}

.lotus {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation: lotusFloat 12s ease-in-out infinite;
}

.lotus-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.lotus-2 {
    top: 30%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.lotus-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.lotus-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 9s;
    animation-duration: 16s;
}

.lotus-5 {
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 12s;
    animation-duration: 22s;
}

/* Enhanced Meditation Circle */
.meditation-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulseGlow 6s ease-in-out infinite;
    box-shadow: 
        0 0 50px rgba(255, 255, 255, 0.2),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.meditation-circle::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotateRing 25s linear infinite;
    border-style: dashed;
}

.meditation-circle::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: rotateRing 35s linear infinite reverse;
    border-style: dotted;
}

.inner-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.om-symbol-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.om-symbol {
    font-size: 5rem;
    animation: omGlow 4s ease-in-out infinite alternate;
    position: relative;
    z-index: 5;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 255, 0.4);
}

.sound-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.wave {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: waveExpand 3s ease-out infinite;
}

.wave-1 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-2 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.wave-3 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.circle-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: textGlow 3s ease-in-out infinite alternate;
}

/* Audio Toggle Button */
#audioToggle {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#audioToggle:hover {
    opacity: 1 !important;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

#audioToggle.playing {
    background: rgba(255, 255, 255, 0.1);
    color: #fbbf24;
}

#audioToggle.playing #audioIcon::before {
    animation: soundPulse 1s ease-in-out infinite;
}

/* Enhanced Animations */
@keyframes omPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 255, 255, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(255, 255, 255, 0.8),
            0 0 90px rgba(255, 255, 255, 0.6);
    }
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressFill {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes lotusFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.6;
    }
    66% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.4;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 255, 255, 0.2),
            inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(255, 255, 255, 0.4),
            0 0 90px rgba(255, 255, 255, 0.2),
            inset 0 0 50px rgba(255, 255, 255, 0.2);
    }
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes omGlow {
    from {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 255, 255, 0.6);
    }
    to {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(255, 255, 255, 0.8),
            0 0 90px rgba(255, 255, 255, 0.6);
    }
}

@keyframes waveExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 255, 255, 0.3);
    }
}

@keyframes soundPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.floating-particles {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    animation: float-particles 20s linear infinite;
}

@keyframes float-particles {
    0% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(-10px) translateX(-5px); }
    100% { transform: translateY(0) translateX(0); }
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-number {
    font-family: var(--font-display);
}

/* Meditation Circle */
.meditation-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-glow 4s ease-in-out infinite;
}

.meditation-circle::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
}

.inner-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.om-symbol {
    font-size: 4rem;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

/* Service Cards */
.service-card {
    transition: var(--transition-smooth);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong) !important;
}

.service-card.featured {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-strong) !important;
}

.service-icon i {
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* Features Visual */
.features-visual {
    height: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    animation: float-card 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* Testimonials */
.bg-gradient-primary {
    background: var(--primary-gradient);
}

.testimonial-card {
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong) !important;
}

.bg-glass-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animations */
.animate-fadeInUp {
    animation: fadeInUp 1s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Counter Animation */
.counter {
    transition: all 0.3s ease;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.social-links a {
    transition: var(--transition-smooth);
}

.social-links a:hover {
    transform: translateY(-2px);
    color: var(--bs-primary) !important;
}

/* Scroll Animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-stats .col-4 {
        margin-bottom: 1rem;
    }
    
    .meditation-circle {
        width: 250px;
        height: 250px;
    }
    
    .inner-circle {
        width: 150px;
        height: 150px;
    }
    
    .om-symbol {
        font-size: 3rem;
    }
    
    .floating-cards {
        height: 300px;
    }
    
    .floating-card {
        position: static !important;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
}

/* Tablet Optimizations */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .language-switcher {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .features-visual {
        margin-top: 3rem;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1400px) {
    .container-xxl {
        max-width: 1320px;
    }
    
    .hero-section .display-3 {
        font-size: 4.5rem;
    }
    
    .meditation-circle {
        width: 400px;
        height: 400px;
    }
    
    .inner-circle {
        width: 280px;
        height: 280px;
    }
    
    .om-symbol {
        font-size: 5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    #backToTop,
    .floating-particles,
    .hero-bg {
        display: none !important;
    }
    
    .hero-section {
        background: none !important;
        color: black !important;
        min-height: auto !important;
        padding: 2rem 0 !important;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-particles,
    .meditation-circle,
    .floating-card {
        animation: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-gradient: linear-gradient(135deg, #000080 0%, #000040 100%);
        --hero-gradient: linear-gradient(135deg, #000080 0%, #000040 100%);
    }
    
    .btn-outline-primary {
        border-width: 3px;
    }
    
    .card {
        border-width: 2px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bs-body-bg: #1a1a1a;
        --bs-body-color: #ffffff;
    }
    
    .navbar {
        background: rgba(26, 26, 26, 0.9) !important;
    }
    
    .bg-light {
        background: #2d2d2d !important;
    }
    
    .card {
        background: #2d2d2d;
        color: white;
    }
}

/* Form Styles */
.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* Custom Checkbox */
.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Utility Classes */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-soft {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.shadow-soft {
    box-shadow: var(--shadow-soft) !important;
}

.shadow-medium {
    box-shadow: var(--shadow-medium) !important;
}

.shadow-strong {
    box-shadow: var(--shadow-strong) !important;
}

/* Loading States */
.btn .spinner-border {
    width: 1rem;
    height: 1rem;
}

/* Toast Notifications */
.toast {
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

/* Modal Enhancements */
.modal-content {
    border-radius: 1rem;
    backdrop-filter: blur(20px);
}

.modal-backdrop {
    backdrop-filter: blur(5px);
}

/* Accessibility Improvements */
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}