/* Static Layout Styles */
.btn-glow {
    display: inline-block;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(135deg, #35a29f, #35a29f);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -25%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) rotate(45deg);
    }
    100% {
        transform: translateX(300%) rotate(45deg);
    }
}

/* Navigation Styles - Black text, Turquoise active */
.main-menu nav ul li a {
    color: #0B1728 !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.main-menu nav ul li a:hover {
    color: #35a29f !important;
}

.main-menu nav ul li a.active {
    color: #35a29f !important;
    position: relative;
}

/* Mobile Menu - Side Info Panel Styles */
.side-info .mobile-menu {
    margin: 20px 0;
}

.side-info .mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-info .mobile-menu nav ul li {
    margin-bottom: 5px;
}

.side-info .mobile-menu nav ul li a {
    display: block;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.side-info .mobile-menu nav ul li a:hover,
.side-info .mobile-menu nav ul li a.active {
    background: rgba(53, 162, 159, 0.3);
    color: #35a29f !important;
}

.dropdown-toggle::after {
    content: none;
}

.xmodal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(11 23 40 / 68%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.xmodal {
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 25px 70px rgba(11, 23, 40, 0.5);
    animation: slideIn 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(11, 23, 40, 0.1);
}

.xmodal-header {
    background: linear-gradient(135deg, #0B1728 0%, #1a3a5c 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.xmodal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.xmodal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.xmodal-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.xmodal-header p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.xmodal-body {
    padding: 35px 30px;
    background: #ffffff;
}

.info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 100%);
    border-left: 5px solid #0B1728;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(11, 23, 40, 0.08);
}

.info-box h3 {
    color: #0B1728;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.address-item {
    margin-bottom: 14px;
    color: #334155;
    line-height: 1.6;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-item strong {
    color: #0B1728;
    display: inline-block;
    min-width: 90px;
    font-weight: 600;
}

.close-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0B1728 0%, #1a3a5c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(11, 23, 40, 0.3);
    letter-spacing: 0.5px;
}

.close-btn:hover {
    box-shadow: 0 8px 25px rgba(11, 23, 40, 0.4);
    background: linear-gradient(135deg, #0d1d30 0%, #1f4268 100%);
}

.close-btn:active {
}

@media (max-width: 600px) {
    .xmodal {
        margin: 15px;
        border-radius: 16px;
    }

    .xmodal-header {
        padding: 30px 20px;
    }

    .xmodal-header h2 {
        font-size: 22px;
    }

    .xmodal-header p {
        font-size: 14px;
    }

    .xmodal-body {
        padding: 25px 20px;
    }

    .info-box {
        padding: 20px;
    }

    .info-box h3 {
        font-size: 18px;
    }

    .address-item {
        flex-direction: column;
        gap: 4px;
    }

    .address-item strong {
        min-width: auto;
    }
}
