@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #89426e;
    --secondary-color: #f8fafc;
    --accent-color: #89426e;
    --text-primary: #1e293b;
    --text-secondary: #666;
    --white: #ffffff;
    --dark-bg: #0b111e;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(99, 102, 241, 0.1);
    --footer-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, #7a2e4d, #b06a85, #e6c2cf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
}

/* --- Layout --- */


.section-padding {
    padding: 40px 0;
}

/* --- Navigation --- */

.top-bar {
    background: var(--gradient);
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}


.navbar-brand img {
    max-width: 64px;
}

.mobilelogo img {
    max-width: 100px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    margin-right: 1.5rem;
    transition: var(--transition);
}

.top-bar a:hover {
    color: #000;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin-left: 2rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-premium {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: white;
}

/* --- Hero Section --- */

.hero-section {
    position: relative;

    background: url('../images/bg_hero.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/*.hero-section::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);*/
/*    z-index: 1;*/
/*}*/

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

.hero-content {
    margin: 80px 0 50px;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-description {
    font-size: 16px;
    color: #fff;

}


.hero-imge-right {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 400px;
    z-index: 2;
}

.hero-imge-right img {
    width: 100%;
}



/* Common Section title */
.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: bold;
}

.section-title h5 {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0px;
}

.section-title h2 span {
    color: var(--accent-color);
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.decoration-line {
    width: 300px;
    height: 4px;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(99, 102, 241, 0) 100%);
    margin: 20px auto;
    border-radius: 10px;
    position: relative;
}

.decoration-line::after,
.decoration-line::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -2px;
}

.decoration-line::before {
    left: 40%;
}

.decoration-line::after {
    right: 40%;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 30px;
    }
}

/* Who We Are Section Background */
.who-we-are-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Left Big Card */
.mission-highlight-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Bento Grid Cards */
.support-item-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    height: 100%;
}

.support-item-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(137, 66, 110, 0.1);
    /* Subtle primary color shadow */
}

/* Icon Styling */
.icon-box {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.support-item-card h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.support-item-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Decorative Accent */
.accent-blob {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    filter: blur(50px);
    opacity: 0.15;
    z-index: 0;
}

/* Who We Are Section Ended */

/* Mission, Vision, And Values Section Started */
.vision-mission-section {
    background: var(--secondary-color);

}

.vision-card {
    background: var(--gradient);
    border-radius: 30px;
    padding: 50px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(137, 66, 110, 0.2);
}

.vision-card .vision-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.vision-card h2 {
    color: var(--white) !important;
    font-weight: 800;
    margin-bottom: 20px;
}

.vision-card h2 span {
    color: rgba(255, 255, 255, 0.7);
}

.vision-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

/* Mission Side Styling */


.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.mission-tile {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: white;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.mission-tile:hover {
    background: var(--white);
    border-color: var(--glass-border);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tile-icon {
    min-width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 20px;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tile-text h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.tile-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .mission-container {
        padding-left: 0;
        margin-top: 30px;
    }

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

/* Mission, Vision, And Values Section Ended */

/* --- About Section --- */

.about-content-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.secretary-section {
    background: var(--secondary-color);
}

.glass-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.glass-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.secretary-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.secretary-name h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.secretary-name p {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- Objectives --- */

.objective-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
}

.objective-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

/* Timer Section */
.timer-section {
    background: var(--gradient);
}

.timer-title {
    color: var(--white);
    font-weight: 700;
}

.timer-subtitle {
    color: var(--white);
}

.timer-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.timer-card {
    background: var(--white);
    border-radius: 14px;
    padding: 20px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.timer-card span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.timer-card small {
    color: var(--text-secondary);
    font-size: 14px;
}

.timer-card:hover {
    transform: translateY(-5px);
}

.timer-complete {
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
}

/* Timer Section Ended */


/* Registration Section */
.registration-section {
    background-color: var(--white);
}

/* --- Office Bearers --- */

.bearers-section {
    position: relative;
    background: var(--secondary-color);
    overflow: hidden;
}



/* COMMON */
.bearers-section::before,
.bearers-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background-image: url("../images/svg.png");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

/* 🔝 TOP LEFT */
.bearers-section::before {
    top: 0;
    left: 0;
}

/* 🔻 BOTTOM RIGHT (mirror) */
.bearers-section::after {
    bottom: 0;
    right: 0;
    transform: scaleX(-1);
    transform-origin: center;
}

/* CONTENT ABOVE SVG */
.bearers-section .container {
    position: relative;
    z-index: 1;
}



.bearer-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bearer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.bearer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
}

.bearer-card:hover::before {
    height: 100%;
}

.bearer-card img {
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    width: 110px;
    height: 110px;
}


.bearer-role {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bearer-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
    display: block;
}

.bearer-location {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}



.section-divider {
    height: 1px;
    background: radial-gradient(circle, #e2e8f0 0%, rgba(226, 232, 240, 0) 100%);
    margin: 50px 0;
}

/* --- Contact --- */

.form-control {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 12px;
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.registration-form-wrapper {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.upload-area {
    transition: var(--transition);
}

.upload-area:hover {
    border-color: var(--primary-color) !important;
    background: #f1f5f9 !important;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer {
    background: var(--dark-bg) !important;
    border-top: 1px solid var(--footer-border);
}

.footer-brand {
    margin-bottom: 10px;
    display: block;
}

.footer-brand img {
    max-width: 70px;
}

.footer-description {
    max-width: 400px;
    color: #94a3b8 !important;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a {
    background: #89426e;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-icon {
    color: var(--primary-color);
}

.list-unstyled span {
    color: #fff;
}

.footer-bottom-border {
    border-color: rgb(254 254 254);
}

.footer p,
.footer a {
    color: #ffffff !important;
}

.footer h5 {
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg,
            #7a2e4d,
            #b06a85,
            #e6c2cf);
    border-radius: 4px;
}

/* --- Responsive --- */

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        z-index: 9999;
        padding: 40px 30px;
        transition: var(--transition);
        display: block !important;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-link {
        margin: 5px 0 !important;
        margin-left: 0 !important;
        font-size: 1.1rem;
        width: 100%;
    }

    .btn-close-menu {
        position: absolute;
        top: 25px;
        right: 25px;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f1f5f9;
        transition: var(--transition);
    }

    .btn-close-menu:hover {
        background: #e2e8f0;
        transform: rotate(90deg);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9998;
        display: none;
    }

    .menu-overlay.active {
        pointer-events: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
}

/* Hide Un Hide */
/* sowing in mobile anf desktop */
@media (max-width: 991px) {
    .hide-on-mob-view {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hide-on-desktop {
        display: none !important;
    }
}

/* --- Popup --- */
.wadp-popup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.92) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1200 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.wadp-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.wadp-popup-content {
    background: #ffffff;
    max-width: 700px;
    width: 100%;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    /* Allow max 90% height */
    overflow-y: auto;
    /* Enable vertical scroll if content is long */
    scrollbar-width: thin;
    /* Clean scrollbar for Firefox */
}


.wadp-popup.active .wadp-popup-content {
    transform: scale(1);
}

.wadp-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
    color: #333;
}

.wadp-popup-close i {
    font-size: 18px;
}

.wadp-popup-close:hover {
    background: #89426e;
    color: #fff;
    transform: rotate(90deg);
}

.wadp-popup-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 200px;
    /* Ensure it has some height even if image fails */
    object-fit: contain;
}

.wadp-popup-register-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(137, 66, 110, 0.3);
    transition: var(--transition);
    z-index: 10;
    font-size: 0.95rem;
    border: none;
}

.wadp-popup-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(137, 66, 110, 0.4);
    color: white !important;
}

@media (max-width: 768px) {
    .wadp-popup-content {
        max-width: 95%;
        width: 95%;
    }

    .wadp-popup-register-btn {
        bottom: 15px;
        left: 15px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* --- Payment Popup --- */
.payment-modal-content {
    max-width: 750px !important;
}

.qr-wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.qr-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.qr-image {
    mix-blend-mode: multiply;
}

.upi-details .input-group .form-control {
    background: #fff;
    cursor: default;
}

.bank-details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.bank-details h6 {
    color: var(--primary-color);
    font-weight: 700;
}

.bank-details .input-group-sm .form-control {
    font-size: 0.85rem;
    font-weight: 600;
    background: #fff;
    border-color: #d1d5db;
}

.bank-details .input-group-sm .btn {
    padding: 0 10px;
}

@media (max-width: 768px) {
    .payment-modal-content {
        max-width: 95% !important;
    }
}



/* Suggestion Page */
/* Hero Success Section */
.hero-section-suggestion {
    background: var(--gradient);
    padding: 80px 0 120px;
    text-align: center;
    color: var(--white);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.success-badge {
    background: rgb(115 212 46 / 36%);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    color: #6cd96c;
}

/* Info Overlay Cards */
.info-container {
    margin-top: -60px;
    margin-bottom: 50px;
}

.info-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box-suggestion {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Suggestion Cards */
.section-heading {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.suggestion-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    height: 100%;
}

.suggestion-card:hover {
    box-shadow: 0 20px 40px rgba(137, 66, 110, 0.1);
    transform: translateY(-10px);
    border: 1px solid var(--accent-color);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}

.suggestion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.suggestion-card:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 15px;
}

.card-content h6 {
    font-weight: 700;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.map-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.map-link:hover {
    text-decoration: underline;
}