:root {
    --primary-color: #1a2b48;
    --accent-color: #c59a6d;
    --text-color: #343a40;
    --light-text-color: #f8f9fa;
    --background-color: #f8f9fa;
    --white-color: #ffffff;
    --border-color: #dee2e6;
    --footer-bg-color: #14213d;
}

/* === BASIC LAYOUT STYLES === */
a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

/* === GLOBAL STYLES === */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* === MODERN NAVBAR === */
.modern-navbar {
    padding: 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.modern-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(197, 154, 109, 0.05) 0%, 
        rgba(26, 43, 72, 0.03) 50%, 
        rgba(197, 154, 109, 0.05) 100%);
    pointer-events: none;
}

.modern-navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(197, 154, 109, 0.2);
}

.modern-navbar .navbar-container {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.modern-navbar .navbar-toggler {
    margin-left: auto;
    margin-right: 0;
}

/* Logo Styles */
.modern-navbar .navbar-brand {
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.modern-navbar .navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.modern-navbar .navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(197, 154, 109, 0.3));
}

.modern-navbar.navbar-scrolled .navbar-brand img {
    height: 55px;
}

/* Navigation Links */
.modern-navbar .navbar-nav {
    position: relative;
    margin-left: auto;
    margin-right: 0;
}

.modern-navbar .nav-item {
    margin: 0 0.3rem;
    position: relative;
}

.modern-navbar .nav-link {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding: 0.8rem 1.2rem !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    background: transparent;
    overflow: hidden;
}

.modern-navbar .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(197, 154, 109, 0.1) 0%, 
        rgba(197, 154, 109, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #d4a574);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-navbar .nav-link:hover,
.modern-navbar .nav-link.active {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.modern-navbar .nav-link:hover::before,
.modern-navbar .nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.modern-navbar .nav-link:hover::after,
.modern-navbar .nav-link.active::after {
    width: 80%;
}

.modern-navbar .nav-link.active {
    color: var(--accent-color);
    font-weight: 700;
}

/* Bootstrap Hamburger Menu - Simple styling */
.modern-navbar .navbar-toggler {
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;
}

.modern-navbar .navbar-toggler::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 154, 109, 0.1), transparent);
    transition: left 0.3s ease;
}

.modern-navbar .navbar-toggler:hover::before {
    left: 100%;
}

.modern-navbar .navbar-toggler:hover {
    background-color: rgba(197, 154, 109, 0.1);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.modern-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(197, 154, 109, 0.25);
    outline: none;
}

.modern-navbar .navbar-toggler[aria-expanded="true"] {
    background-color: rgba(197, 154, 109, 0.15);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.modern-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(197, 154, 109, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
    width: 1.5em;
    height: 1.5em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cline x1='6' y1='6' x2='18' y2='18' stroke='rgba(197, 154, 109, 1)' stroke-width='2' stroke-linecap='round'/%3e%3cline x1='18' y1='6' x2='6' y2='18' stroke='rgba(197, 154, 109, 1)' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e");
    transform: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

/* Mobile Menu - Bootstrap default with custom styling */
.modern-navbar .navbar-collapse {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .modern-navbar .navbar-toggler {
        display: flex;
    }
    
    .modern-navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-top: 1px solid rgba(197, 154, 109, 0.15);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        padding: 1rem 0;
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 0 15px 15px;
        opacity: 0;
        transform: translateY(-10px);
        width: 100%;
    }
    
    .modern-navbar .navbar-collapse.show {
        max-height: 280px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .modern-navbar .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0 1.5rem;
        gap: 0.3rem;
    }

    .modern-navbar .nav-item {
        margin: 0;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .modern-navbar .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .modern-navbar .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .modern-navbar .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .modern-navbar .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .modern-navbar .nav-item:nth-child(4) { transition-delay: 0.25s; }

    .modern-navbar .nav-link {
        padding: 0.7rem 1.2rem !important;
        font-size: 1rem;
        text-align: center;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--primary-color);
        font-weight: 500;
        position: relative;
        overflow: hidden;
        background: transparent;
        border: 2px solid transparent;
    }

    .modern-navbar .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(197, 154, 109, 0.1), rgba(197, 154, 109, 0.05));
        transition: left 0.3s ease;
        border-radius: 10px;
    }
    
    .modern-navbar .nav-link:hover {
        background: linear-gradient(135deg, rgba(197, 154, 109, 0.1), rgba(197, 154, 109, 0.05));
        color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(197, 154, 109, 0.15);
        border-color: rgba(197, 154, 109, 0.2);
    }

    .modern-navbar .nav-link:hover::before {
        left: 0;
    }
    
    .modern-navbar .nav-link.active {
        background: linear-gradient(135deg, var(--accent-color), #d4a574);
        color: var(--white-color);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(197, 154, 109, 0.3);
        border-color: var(--accent-color);
        font-weight: 600;
    }

    .modern-navbar .nav-link.active::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .modern-navbar {
        overflow: visible;
    }
    
    .modern-navbar .navbar-brand {
        margin-left: 15px;
    }
    
    .modern-navbar .navbar-brand img {
        height: 50px;
    }

    .modern-navbar.navbar-scrolled .navbar-brand img {
        height: 45px;
    }

    .modern-navbar .navbar-container {
        padding: 0.8rem 0;
    }

    .modern-navbar .navbar-toggler {
        padding: 0.4rem;
        font-size: 1.1rem;
        border-width: 2px;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .modern-navbar .navbar-toggler[aria-expanded="true"] {
        background-color: rgba(197, 154, 109, 0.15);
    }
}

@media (max-width: 576px) {
    .modern-navbar {
        overflow: visible;
    }
    
    .modern-navbar .navbar-brand {
        margin-left: 10px;
    }
    
    .modern-navbar .navbar-brand img {
        height: 40px;
    }

    .modern-navbar.navbar-scrolled .navbar-brand img {
        height: 35px;
    }

    .modern-navbar .navbar-container {
        padding: 0.6rem 0;
    }
    
    .modern-navbar .navbar-toggler {
        padding: 0.3rem;
        font-size: 1rem;
        border-width: 2px;
        margin-right: 10px;
    }
    
    .modern-navbar .navbar-toggler[aria-expanded="true"] {
        background-color: rgba(197, 154, 109, 0.15);
    }
    
    .modern-navbar .navbar-collapse {
        padding: 0.5rem 0;
    }
    
    .modern-navbar .nav-link {
        padding: 0.7rem 1rem !important;
        font-size: 0.95rem;
    }

    /* Footer mobile improvements */
    .site-footer {
        padding: 3rem 0 0;
    }

    .footer-logo-img {
        height: 50px;
    }

    .site-footer .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .site-footer .footer-slogan {
        font-size: 1rem;
    }

    .site-footer .footer-about {
        font-size: 0.9rem;
    }

    .site-footer .footer-contact li {
        margin-bottom: 0.6rem;
    }

    .contact-item {
        gap: 0.6rem;
    }

    .contact-item i {
        font-size: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 1.1rem;
    }

    .footer-bottom-links {
        gap: 1rem;
        justify-content: center;
        margin-top: 1rem;
    }

    .site-footer .footer-bottom {
        padding: 1.5rem 0;
        text-align: center;
    }

    .copyright-text {
        font-size: 0.85rem;
        text-align: center;
    }

    .footer-bottom-link {
        font-size: 0.8rem;
    }
}

/* === MODERN FOOTER === */
.site-footer {
    background: linear-gradient(135deg, var(--footer-bg-color) 0%, #1a2b48 50%, var(--footer-bg-color) 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(197, 154, 109, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Footer Brand Section */
.footer-brand-section {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(197, 154, 109, 0.5));
    transform: scale(1.05);
}

/* Footer Headings */
.site-footer .footer-heading {
    color: var(--white-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.site-footer .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #d4a574);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.site-footer .footer-heading:hover::after {
    width: 80px;
}

/* Footer Slogan */
.site-footer .footer-slogan {
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Footer About */
.site-footer .footer-about {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer Links */
.site-footer .footer-links li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-radius: 4px;
}

.site-footer .footer-links a i {
    font-size: 0.8rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.site-footer .footer-links a:hover {
    color: var(--white-color);
    transform: translateX(5px);
    background: rgba(197, 154, 109, 0.1);
    padding-left: 0.5rem;
}

.site-footer .footer-links a:hover i {
    color: var(--white-color);
    transform: scale(1.2);
}

/* Contact Items */
.site-footer .footer-contact li {
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
    text-align: center;
}

.contact-info {
    flex: 1;
}

.contact-info span,
.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--white-color);
}

/* Social Media */
.footer-social-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.site-footer .footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::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.5s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-color), #d4a574);
    color: var(--white-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(197, 154, 109, 0.3);
    border-color: var(--accent-color);
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Footer Bottom */
.site-footer .footer-bottom {
    padding: 2.5rem 0;
    margin-top: 4rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.site-footer .footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.5;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.copyright-text::before {
    content: '©';
    color: var(--accent-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

.copyright-text:hover {
    color: var(--white-color);
    transform: translateY(-1px);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--white-color);
}

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

/* === MODERN POPUP STYLES === */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 800px;
    width: auto;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(0, 0, 0, 0.15);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.popup-overlay.show .popup-content {
    transform: scale(1) translateY(0);
}

.popup-header {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.popup-close {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.popup-close i {
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.popup-body {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.popup-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
        max-width: 90vw;
        max-height: 85vh;
        border-radius: 15px;
    }
    
    .popup-image {
        max-height: 75vh;
        max-width: 85vw;
        border-radius: 15px;
    }
    
    .popup-header {
        top: 15px;
        right: 15px;
    }
    
    .popup-close {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        max-width: 95vw;
        border-radius: 10px;
        margin: 5px;
    }
    
    .popup-image {
        max-height: 70vh;
        max-width: 90vw;
        border-radius: 10px;
    }
    
    .popup-header {
        top: 10px;
        right: 10px;
    }
    
    .popup-close {
        width: 35px;
        height: 35px;
    }
    
    .popup-close i {
        font-size: 16px;
    }
}

/* Animation on load */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(100px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-overlay.show .popup-content {
    animation: popupFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}



