/* ============================================
   FINDMYTUTOR DHAKA - PROFESSIONAL STYLESHEET
   Colors: Navy #1A2A6C | Gold #F5A623
   ============================================ */

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

body {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    background: #F8F9FC;
    color: #1E293B;
    overflow-x: hidden;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #E2E8F0;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #F5A623;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D48A1C;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1A2A6C, #243594);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(26, 42, 108, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 42, 108, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #F5A623;
    color: #F5A623;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #F5A623;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #F5A623;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #D48A1C;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.7rem 5%;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #1A2A6C, #F5A623);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A2A6C;
}

.logo-text span {
    color: #F5A623;
}

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

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #F5A623;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1A2A6C;
}

/* Mobile Navigation */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .nav-links.active-mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    gap: 4rem;
    background: linear-gradient(135deg, #F8F9FC 0%, #FFFFFF 100%);
}

.hero-content {
    flex: 1;
}

.hero-badge {
    background: rgba(245, 166, 35, 0.12);
    color: #F5A623;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1A2A6C;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: #F5A623;
}

.hero-content p {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1A2A6C;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748B;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.85rem;
}

.floating-card-1 {
    top: 10%;
    right: 0;
    animation: float 3s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 15%;
    left: 0;
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #F5A623;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A2A6C;
}

.section-title span {
    color: #F5A623;
}

section {
    padding: 5rem 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #E2E8F0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    border-color: #F5A623;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #F5A623;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    color: #1A2A6C;
}

.feature-card p {
    color: #64748B;
    font-size: 0.9rem;
}

/* Registration Section */
.register-section {
    background: linear-gradient(135deg, #1A2A6C, #243594);
    border-radius: 30px;
    margin: 0 5%;
    padding: 4rem;
}

.register-section .section-title {
    color: white;
}

.register-section .section-subtitle {
    color: #F5A623;
}

.register-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.register-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.register-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.register-icon {
    font-size: 3rem;
    color: #F5A623;
    margin-bottom: 1rem;
}

.register-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.register-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Areas Grid */
.areas-section {
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.8rem;
}

.area-tag {
    background: #F1F5F9;
    padding: 10px 16px;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem;
    color: #1A2A6C;
    transition: all 0.3s;
    cursor: pointer;
}

.area-tag:hover {
    background: #F5A623;
    color: white;
    transform: translateY(-2px);
}

/* Reviews */
.reviews-section {
    background: #F1F5F9;
}

.swiper {
    padding: 2rem 0.5rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}

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

.review-stars {
    color: #F5A623;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #475569;
}

.review-author {
    font-weight: 700;
    color: #1A2A6C;
}

.review-location {
    font-size: 0.8rem;
    color: #F5A623;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, #F5A623, #D48A1C);
    border-radius: 30px;
    margin: 2rem 5%;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background: white;
    color: #F5A623;
    box-shadow: none;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: #1A2A6C;
    color: #CBD5E1;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #F5A623;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #F5A623;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #F5A623;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.modal-header h2 {
    color: #1A2A6C;
}

.close-modal {
    font-size: 1.5rem;
    cursor: pointer;
    color: #94A3B8;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #F5A623;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F5A623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

/* Tuition Page Specific */
.page-header {
    padding: 8rem 5% 3rem;
    text-align: center;
    background: linear-gradient(135deg, #F8F9FC, #FFFFFF);
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1A2A6C;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #64748B;
}

.filter-bar {
    padding: 1rem 5%;
    background: white;
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 70px;
    z-index: 99;
}

.filter-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: #F1F5F9;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #F5A623;
    color: white;
}

.tuition-grid {
    padding: 3rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.tuition-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.tuition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    border-color: #F5A623;
}

.card-header {
    padding: 1rem 1.5rem;
    background: #F8F9FC;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tuition-subject {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F5A623;
}

.time-badge {
    font-size: 0.75rem;
    background: #E2E8F0;
    padding: 4px 12px;
    border-radius: 50px;
    color: #64748B;
}

.time-badge.urgent {
    background: rgba(245, 166, 35, 0.15);
    color: #F5A623;
}

.card-body {
    padding: 1.5rem;
}

.tuition-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.info-row i {
    width: 20px;
    color: #F5A623;
}

.card-footer {
    padding: 1rem 1.5rem 1.5rem;
}

.interested-btn {
    width: 100%;
    background: linear-gradient(135deg, #1A2A6C, #243594);
    border: none;
    padding: 12px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.interested-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 42, 108, 0.3);
}

/* Plan Selection */
.plan-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.plan-btn {
    flex: 1;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-basic {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #1A2A6C;
}

.plan-pro {
    background: linear-gradient(135deg, #1A2A6C, #243594);
    border: none;
    color: white;
}

.plan-btn:hover {
    transform: translateY(-2px);
}

.condition-box {
    background: #FEF9E6;
    padding: 1rem;
    border-radius: 16px;
    margin: 1rem 0;
    border-left: 3px solid #F5A623;
}

.payment-info {
    background: #F1F5F9;
    padding: 1rem;
    border-radius: 16px;
    text-align: center;
    margin: 1rem 0;
}

.bkash-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F5A623;
    margin: 10px 0;
}

/* Blog Page */
.blog-grid {
    padding: 2rem 5% 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    background: linear-gradient(135deg, #1A2A6C, #F5A623);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img i {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    color: #F5A623;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    color: #1A2A6C;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.blog-card p {
    color: #64748B;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.read-more {
    color: #F5A623;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* About Page */
.about-content {
    padding: 2rem 5% 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.about-section h2 {
    color: #1A2A6C;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section h2 i {
    color: #F5A623;
}

.about-section p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mv-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: #F5A623;
}

.mv-card i {
    font-size: 3rem;
    color: #F5A623;
    margin-bottom: 1rem;
}

.mv-card h3 {
    color: #1A2A6C;
    margin-bottom: 0.75rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.stat-box {
    background: linear-gradient(135deg, #1A2A6C, #243594);
    padding: 2rem;
    border-radius: 24px;
    color: white;
}

.stat-box .number {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-box .label {
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 2rem 5% 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
}

.contact-info h2 {
    color: #1A2A6C;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info h2 i {
    color: #F5A623;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: #FEF9E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5A623;
    font-size: 1.2rem;
}

.info-item h4 {
    margin-bottom: 5px;
    color: #1A2A6C;
}

.info-item p {
    color: #64748B;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
}

.contact-form h2 {
    color: #1A2A6C;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #F5A623;
}

.contact-form button {
    background: linear-gradient(135deg, #1A2A6C, #243594);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.map-section {
    padding: 0 5% 4rem;
}

.map-placeholder {
    background: #E2E8F0;
    height: 300px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .register-section {
        padding: 2rem;
        margin: 0 3%;
    }
    .cta-section {
        padding: 2rem;
        margin: 1rem 3%;
    }
    .tuition-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .btn-primary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .floating-card {
        display: none;
    }
    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}