/* Mobile-First Responsive CSS for Bangla Language Support with Golden Theme */

/* Golden Color Theme Variables */
:root {
    --golden-primary: #D4AF37;
    --golden-secondary: #FFD700;
    --golden-dark: #B8860B;
    --golden-light: #F4E4BC;
    --golden-gradient: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8860B 100%);
    --golden-gradient-reverse: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #D4AF37 100%);
    --golden-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    --golden-hover: #C9A96E;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Bengali', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    direction: ltr;
    text-align: left;
}

/* Bangla Language Support */
.bn {
    direction: ltr;
    text-align: left;
}

.bn h1, .bn h2, .bn h3, .bn h4, .bn h5, .bn h6 {
    font-family: 'Noto Sans Bengali', 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.bn p, .bn span, .bn div, .bn a, .bn li, .bn td, .bn th {
    font-family: 'Noto Sans Bengali', 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Mobile-First Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-inner {
    text-align: center;
}

.loader-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.loader-circle img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.loader-line-mask {
    width: 200px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    animation: loading 2s infinite;
}

.loader-text {
    margin-top: 20px;
}

.loader-text p {
    color: #667eea;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Mobile-First Scroll to Top Button */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

#btn-back-to-top:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

#btn-back-to-top.show {
    display: flex;
}

/* Mobile-First Cookie Banner */
.cookie-main-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cookie-content svg {
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.cookie-content p {
    color: white;
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #5a6fd8;
}

.cookie-btn-area {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn, .cookie-btn-cross {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn {
    background: #28a745;
    color: white;
}

.cookie-btn:hover {
    background: #218838;
}

.cookie-btn-cross {
    background: #6c757d;
    color: white;
}

.cookie-btn-cross:hover {
    background: #5a6268;
}

@media (min-width: 768px) {
    .cookie-main-wrapper {
        left: 50px;
        right: 50px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .cookie-content {
        flex-direction: row;
    }
    
    .cookie-btn-area {
        justify-content: flex-end;
    }
}

/* Mobile-First Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans Bengali', 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    font-family: 'Noto Sans Bengali', 'Poppins', sans-serif;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Mobile-First Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Mobile-First Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-md-6 { width: 100%; padding: 0 15px; }
.col-lg-4 { width: 100%; padding: 0 15px; }
.col-lg-6 { width: 100%; padding: 0 15px; }

/* Mobile-First Responsive Breakpoints */
@media (min-width: 576px) {
    .container { padding: 0 20px; }
    .col-sm-6 { width: 50%; padding: 0 15px; }
}

@media (min-width: 768px) {
    .container { padding: 0 30px; }
    .col-md-6 { width: 50%; }
    .col-md-4 { width: 33.333%; padding: 0 15px; }
    .col-md-3 { width: 25%; padding: 0 15px; }
}

@media (min-width: 992px) {
    .container { padding: 0 40px; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-3 { width: 25%; padding: 0 15px; }
}

@media (min-width: 1200px) {
    .container { padding: 0 50px; }
    .col-xl-4 { width: 33.333%; padding: 0 15px; }
    .col-xl-6 { width: 50%; padding: 0 15px; }
}

/* Mobile-First Spacing */
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }
.pt-80 { padding-top: 80px; }
.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }
.pb-80 { padding-bottom: 80px; }
.ptb-40 { padding: 40px 0; }
.ptb-60 { padding: 60px 0; }
.ptb-80 { padding: 80px 0; }

@media (min-width: 768px) {
    .pt-20 { padding-top: 30px; }
    .pt-40 { padding-top: 60px; }
    .pt-60 { padding-top: 80px; }
    .pt-80 { padding-top: 100px; }
    .pb-20 { padding-bottom: 30px; }
    .pb-40 { padding-bottom: 60px; }
    .pb-60 { padding-bottom: 80px; }
    .pb-80 { padding-bottom: 100px; }
    .ptb-40 { padding: 60px 0; }
    .ptb-60 { padding: 80px 0; }
    .ptb-80 { padding: 100px 0; }
}

/* Mobile-First Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

@media (min-width: 768px) {
    .text-md-left { text-align: left; }
    .text-md-center { text-align: center; }
    .text-md-right { text-align: right; }
}

/* Mobile-First Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-block { display: inline-block; }

@media (min-width: 768px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
    .d-md-flex { display: flex; }
}

@media (min-width: 992px) {
    .d-lg-none { display: none; }
    .d-lg-block { display: block; }
    .d-lg-flex { display: flex; }
}

/* Mobile-First Margin Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Mobile-First Padding Utilities */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Mobile-First Responsive Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Mobile-First Responsive Tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile-First Responsive Forms */
.form--control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s ease;
    font-family: 'Noto Sans Bengali', 'Poppins', sans-serif;
}

.form--control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

@media (min-width: 768px) {
    .form--control {
        padding: 14px 18px;
        font-size: 16px;
    }
}

/* Mobile-First Responsive Cards */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
    .card {
        margin-bottom: 30px;
    }
}

/* Mobile-First Responsive Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-toggler {
    border: none;
    background: none;
    padding: 8px;
    font-size: 20px;
    color: #333;
}

.navbar-collapse {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 10px;
    padding: 20px;
}

.navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-nav li {
    margin-bottom: 0.5rem;
}

.navbar-nav a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    background-color: #667eea;
    color: white;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
    }
    
    .navbar-nav {
        display: flex;
        align-items: center;
    }
    
    .navbar-nav li {
        margin-bottom: 0;
        margin-right: 1rem;
    }
    
    .navbar-nav a {
        padding: 0.5rem 1rem;
    }
}

/* Mobile-First Responsive Sections */
section {
    padding: 40px 0;
}

@media (min-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    section {
        padding: 80px 0;
    }
}

/* Mobile-First Header Styles */
.header-section {
    background: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
}

/* Ensure no gap between header and hero section */
.banner {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: #000 !important;
}

.header {
    padding: 0;
}

.header-bottom-area {
    padding: 15px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand,
.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img,
.logo-img {
    max-height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.site-logo:hover img {
    transform: scale(1.05);
}

.navbar-nav {
    gap: 0;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Noto Sans Bengali', 'Poppins', sans-serif;
    font-size: 14px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--golden-primary) !important;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 5px;
}

.navbar-toggler {
    border: 2px solid var(--golden-primary);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.navbar-toggler span {
    color: var(--golden-primary);
    font-size: 18px;
}

.header-action {
    margin-left: 15px;
}

.header-action .btn--base {
    background: var(--golden-gradient);
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: none;
}

.header-action .btn--base:hover {
    background: var(--golden-gradient-reverse);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Mobile Header Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #000;
        margin-top: 15px;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 5px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px;
        border-radius: 5px;
        text-align: center;
    }
    
    .header-action {
        margin-left: 0;
        margin-top: 15px;
        text-align: center;
    }
    
    .header-action .btn--base {
        width: 100%;
        max-width: 200px;
    }
}

@media (min-width: 992px) {
    .navbar-nav .nav-link {
        padding: 12px 18px;
        font-size: 15px;
    }
    
    .header-action .btn--base {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Mobile-First Responsive Buttons with Golden Theme */
.btn--base {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    background: var(--golden-gradient);
    color: white;
    font-family: 'Noto Sans Bengali', 'Poppins', sans-serif;
    box-shadow: var(--golden-shadow);
}

.btn--base:hover {
    background: var(--golden-gradient-reverse);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (min-width: 768px) {
    .btn--base {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* Mobile-First Banner Styles */
.banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner .title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .banner {
        padding: 80px 0;
    }
    
    .banner .title {
        font-size: 2.5rem;
    }
    
    .banner p {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .banner {
        padding: 100px 0;
    }
    
    .banner .title {
        font-size: 3rem;
    }
    
    .banner p {
        font-size: 1.3rem;
    }
}

/* Mobile-First Pricing Cards */
.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pricing-card .top-text h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .amount {
    margin-bottom: 2rem;
}

.pricing-card .amount p {
    font-size: 1.2rem;
    color: #666;
}

.pricing-card .details p {
    margin-bottom: 0.8rem;
    color: #555;
}

.pricing-card .details i {
    color: #28a745;
    margin-right: 0.5rem;
}

.choose-plan-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.choose-plan-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
}

/* Mobile-First Text Content */
.text-content {
    margin-bottom: 3rem;
}

.text-content .sub-title {
    color: #667eea;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.text-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .text-content h3 {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .text-content h3 {
        font-size: 3rem;
    }
}

/* Mobile-First Swiper Styles */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: #667eea;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #667eea;
}

/* Mobile-First Footer Styles */
.footer-section {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-widget h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 0.5rem;
}

.footer-widget ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: white;
}

.copyright-area {
    background: #34495e;
    padding: 20px 0;
    margin-top: 40px;
}

.copyright-text {
    text-align: center;
    color: #bdc3c7;
}

/* Mobile-First Responsive Utilities */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Mobile-First Responsive Spacing */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.me-3 { margin-right: 1rem; }
.ms-3 { margin-left: 1rem; }
.ms-4 { margin-left: 1.5rem; }
.ms-auto { margin-left: auto; }

/* Mobile-First Responsive Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.pe-5 { padding-right: 3rem; }
.pt-5 { padding-top: 3rem; }

/* Mobile-First Responsive Width */
.w-100 { width: 100%; }

/* Mobile-First Responsive Font Sizes */
.fs-4 { font-size: 1.5rem; }
.fw-bold { font-weight: 700; }

/* Mobile-First Responsive Text Utilities */
.text-capitalize { text-transform: capitalize; }

/* Mobile-First Responsive Shadow */
.shadow-lg {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Mobile-First Responsive Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Mobile-First Responsive Border Radius */
.rounded {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Mobile-First Responsive Background */
.bg-white {
    background-color: white;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Mobile-First Responsive Color */
.text-white {
    color: white;
}

.text-dark {
    color: #333;
}

.text-muted {
    color: #6c757d;
}

/* Mobile-First Responsive Position */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

/* Mobile-First Responsive Z-Index */
.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

/* Mobile-First Responsive Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Mobile-First Responsive Hover Effects */
.hover-lift:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Mobile-First Responsive Focus States */
.focus-outline:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Mobile-First Responsive Print Styles */
@media print {
    .no-print {
        display: none;
    }
    
    .print-only {
        display: block;
    }
}

/* Mobile-First Responsive High Contrast Mode */
@media (prefers-contrast: high) {
    .btn--base {
        border: 2px solid #000;
    }
    
    .card {
        border: 1px solid #000;
    }
}

/* Mobile-First Responsive Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile-First Responsive Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }
    
    .card {
        background-color: #2d2d2d;
        color: #e0e0e0;
    }
    
    .navbar-collapse {
        background-color: #2d2d2d;
    }
}
