/* Contact Page Styles */

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.contact-banner img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

/* Contact Layout */
.contact-layout {
    display: flex;
    gap: 0;
    margin-top: 0;
}

/* Sidebar */
.contact-sidebar {
    flex: 0 0 250px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-right: none;
}

.sidebar-title {
    background-color: #c41e3a;
    color: #fff;
    padding: 16px 15px;
    font-size: 18px;
    font-weight: bold;
}

.sidebar-content {
    padding: 15px;
}

.qr-section {
    margin-bottom: 20px;
}

.qr-text {
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qr-text::before {
    content: "💬";
    font-size: 18px;
}

.info-section {
    margin-bottom: 20px;
}

.info-section h4 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon::before {
    font-size: 18px;
}

.icon-clock::before {
    content: "🕐";
}

.icon-contact::before {
    content: "📞";
}

.info-section p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin-left: 20px;
}

/* Contact Content */
.contact-content {
    flex: 1;
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 25px;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

/* Contact Row */
.contact-row {
    display: flex;
    gap: 30px;
}

.contact-row .contact-card {
    flex: 1;
}

.contact-row .meeting-image {
    flex: 1;
}

.contact-card {
    background-color: transparent;
}

.contact-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-name {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 15px;
    margin-bottom: 8px;
}

.icon-phone::before {
    content: "📞";
    color: #ffd700;
}

.icon-email::before {
    content: "✉";
    color: #ffd700;
}

/* Meeting Image */
.meeting-image {
    width: 100%;
}

.meeting-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #333;
}

/* Contact Form Section */
.contact-form-section {
    border-top: 1px solid #333;
    padding-top: 25px;
}

.contact-form-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-form {
    /* max-width: 600px; */
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group-full {
    flex: 1;
}

.form-group label {
    color: #aaa;
    font-size: 16px;
    min-width: 60px;
    text-align: right;
}

.form-group input,
.form-group textarea {
    flex: 1;
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    padding: 8px 10px;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e3a;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.required {
    color: #c41e3a;
    font-size: 18px;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
    padding-left: 70px;
}

.submit-btn {
    background-color: #c41e3a;
    color: #fff;
    border: none;
    padding: 10px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #a01830;
}

/* QR Modal Styles */
.qr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.qr-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    max-width: 300px;
}

.qr-close {
    position: absolute;
    right: 10px;
    top: 5px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.qr-close:hover {
    color: #c41e3a;
}

.qr-image-container {
    margin: 20px 0;
}

.qr-image-container img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.qr-caption {
    color: #333;
    font-size: 18px;
    margin-top: 10px;
}

/* QR Text clickable */
.qr-text {
    cursor: pointer;
    transition: color 0.3s;
}

.qr-text:hover {
    color: #c41e3a;
}
