/* assets/lib/custom/contactus/main.css */

/* Page Container */
.contact-page-container {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Title */
.contact-page-title {
    color: #ffffff;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Description Text */
.contact-page-description {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    background: transparent;
}

/* Glass Card Container */
.contact-info-card {
    max-width: 850px;
    width: 90%;
    margin: 0 auto;
    padding: 40px 35px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: all 0.4s ease;
}

/* Contact Card Base */
.contact-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 25px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}

.contact-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(77, 166, 255, 0.2);
}

/* Contact Card Text */
.contact-card-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #ffffff;
    text-align: center;
}

.contact-card-text strong {
    font-size: 19px;
}

.contact-card-text a {
    color: #4da6ff;
    text-decoration: none;
}

/* Contact Card - Last one with no bottom margin */
.contact-card-last {
    margin-bottom: 25px;
}

/* QR Code Section */
.contact-qr-section {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-qr-section:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(77, 166, 255, 0.15);
}

.contact-qr-image {
    width: 130px;
    height: 130px;
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.95);
    display: block;
    margin: 0 auto;
}

.contact-qr-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}