#closeBtn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: red;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1010;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#closeBtn:hover {
    background-color: black;
    transform: scale(1.1);
}

.pay-btn {
    position: relative;
    padding: 12px 24px;
    font-size: 16px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.icon-container {
    position: relative;
    width: 24px;
    height: 24px;
}

.icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    color: #22c55e;
    opacity: 0;
    visibility: hidden;
}

.default-icon {
    opacity: 1;
    visibility: visible;
}

.pay-btn:hover .icon {
    animation: none;
}

.pay-btn:hover .wallet-icon {
    opacity: 0;
    visibility: hidden;
}

.pay-btn:hover .card-icon {
    animation: iconRotate 2.5s infinite;
    animation-delay: 0s;
}

.pay-btn:hover .payment-icon {
    animation: iconRotate 2.5s infinite;
    animation-delay: 0.5s;
}

.pay-btn:hover .dollar-icon {
    animation: iconRotate 2.5s infinite;
    animation-delay: 1s;
}

.pay-btn:hover .check-icon {
    animation: iconRotate 2.5s infinite;
    animation-delay: 1.5s;
}

.pay-btn:active .icon {
    animation: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pay-btn:active .check-icon {
    animation: checkmarkAppear 0.6s ease forwards;
    visibility: visible;
}

.btn-text {
    font-weight: 600;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

@keyframes iconRotate {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.5);
    }

    5% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    15% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    20% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.5);
    }

    100% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.5);
    }
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.text-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

/* Main brand */
.logo-main {
    font-size: 28px;
    font-weight: 800;
    color: #1D1852;
    letter-spacing: 1px;
    position: relative;
}

s

/* Tagline */
.logo-sub {
    font-size: 14px;
    font-weight: 600;
    color: #3F6F63;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.creator {
    font-size: 14px;
    opacity: 0.8;
}

.creator a {
    color: #F7941D;
    font-weight: 500;
}

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --accent-color: #00d4ff;
}

.glass-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    /* Blurs the background website */
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.glass-modal {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: #ffffff;
    position: relative;
    animation: fadeIn 0.4s ease-out;
}

.modal-body {
    display: flex;
    gap: 30px;
    align-items: center;
}

.modal-visual i {
    font-size: 80px;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}

.modal-text h2 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff !important;
}

.description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 25px;
    color: #fff !important;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 4px;
    color: #fff !important;
}

.value {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff !important;
}

.close-glass {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .modal-body {
        flex-direction: column;
        text-align: center;
    }
}

/* Custom variables for glass effect if not already defined */
:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --accent-color: #f39c12;
    /* Gold for vouchers */
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.input-group {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
    padding: 5px 0;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--accent-color), #e67e22);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.login-size {
    max-width: 500px;
    /* Login looks better slightly narrower than Support */
}

.login-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.forgot-pass {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.forgot-pass:hover {
    color: var(--accent-color);
}

.login-btn {
    width: auto;
    padding: 10px 40px;
}

@media (max-width: 600px) {

    /* 1. Ensure the modal itself doesn't exceed screen height */
    .glass-modal {
        width: 95%;
        max-height: 92vh;
        /* Use 92% of the viewport height */
        padding: 20px;
        /* Reduce padding to save space */
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        /* Enable internal scrolling if content is too tall */
    }

    /* 2. Shrink or Hide the icon on small screens to save space */
    .modal-visual {
        display: none;
        /* Hiding the icon is best for small screens to prioritize the form */
    }

    /* 3. Tighten the form spacing */
    .modal-text h2 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        text-align: center;
    }

    .description {
        font-size: 0.8rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .form-grid {
        gap: 10px;
        /* Reduce gap between input groups */
        margin-bottom: 15px;
    }

    .input-group {
        padding: 8px 12px;
        /* Slimmer inputs */
    }

    .label {
        font-size: 0.65rem;
    }

    /* 4. Ensure the button is prominent and fits */
    .submit-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Logo Height Adjustments */
.header-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.mobile-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

/* Logo Container with Text */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-container:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    gap: 2px;
}

.logo-main-text {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
}

.logo-sub-text {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
    font-family: 'Inter', sans-serif;
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .header-logo img {
        height: 50px;
    }

    .mobile-logo img {
        height: 45px;
    }

    .logo-container {
        gap: 10px;
    }

    .logo-main-text {
        font-size: 20px;
    }

    .logo-sub-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 45px;
    }

    .mobile-logo img {
        height: 40px;
    }

    .logo-container {
        gap: 8px;
    }

    .logo-main-text {
        font-size: 18px;
    }

    .logo-sub-text {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* Footer Logo Specific Styling */
.footer-logo-container {
    margin-top: 20px;
}

.footer-logo-container img {
    height: 55px;
    width: auto;
}

.footer-logo-container .logo-main-text {
    color: #ffffff;
    font-size: 26px;
}

.footer-logo-container .logo-sub-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-logo-container:hover {
    opacity: 1;
    transform: none;
}

@media (max-width: 768px) {
    .footer-logo-container img {
        height: 48px;
    }

    .footer-logo-container .logo-main-text {
        font-size: 22px;
    }

    .footer-logo-container .logo-sub-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-logo-container img {
        height: 42px;
    }

    .footer-logo-container .logo-main-text {
        font-size: 20px;
    }

    .footer-logo-container .logo-sub-text {
        font-size: 11px;
    }
}