/* contact-us.css */

.contact-section-wrapper {
    background-color: var(--contact-bg-page);
    color: var(--contact-text-dark);
    position: relative;
    font-family: 'Anek Bangla', sans-serif;
    padding-bottom: 50px;
    overflow: hidden;
}

/* Subtle dot background pattern */
.contact-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 400px;
    background-image: radial-gradient(#CBD5E1 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 0;
}

.contact-section-wrapper::after {
    content: '';
    position: absolute;
    top: 200px;
    right: 0;
    width: 200px;
    height: 300px;
    background-image: radial-gradient(#CBD5E1 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 0;
}

.contact-section-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* --- Header Section --- */
.contact-section-wrapper .header-section {
    text-align: center;
    padding: 50px 0 40px 0;
    position: relative;
}

.contact-section-wrapper .header-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--contact-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Title Line Decor */
.contact-section-wrapper .header-title::before,
.contact-section-wrapper .header-title::after {
    content: "";
    height: 1px;
    width: 60px;
    background-color: var(--contact-nav-green);
    opacity: 0.5;
}

.contact-section-wrapper .header-subtitle {
    color: var(--contact-text-muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Paper Plane Graphic */
.contact-section-wrapper .paper-plane-decor {
    position: absolute;
    top: 20px;
    right: 15%;
    width: 150px;
    opacity: 0.6;
    pointer-events: none;
}

.contact-section-wrapper .paper-plane-decor svg {
    width: 100%;
    height: auto;
}

/* --- Main Content Grid --- */
.contact-section-wrapper .contact-main {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Left Column: Contact Cards */
.contact-section-wrapper .contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section-wrapper .info-card {
    background-color: var(--contact-white);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-section-wrapper .info-icon {
    width: 45px;
    height: 45px;
    background-color: var(--contact-btn-green);
    color: var(--contact-white);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-section-wrapper .info-text {
    border-left: 2px solid var(--contact-border-color);
    padding-left: 20px;
}

.contact-section-wrapper .info-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--contact-text-dark);
    margin-bottom: 2px;
    margin-top: 0;
}

.contact-section-wrapper .info-text p {
    font-size: 14px;
    color: var(--contact-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Right Column: Map */
.contact-section-wrapper .map-card {
    background-color: var(--contact-white);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    min-height: 350px;
    position: relative;
}

.contact-section-wrapper .map-frame {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #E2E8F0;
}

.contact-section-wrapper .map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- CTA Banner --- */
.contact-section-wrapper .cta-banner {
    background-color: var(--contact-cta-bg);
    border: 1px solid #D1E5D5;
    border-radius: 16px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-section-wrapper .cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-section-wrapper .cta-icon {
    width: 60px;
    height: 60px;
    background-color: var(--contact-white);
    color: var(--contact-btn-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-section-wrapper .cta-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--contact-text-dark);
    margin-bottom: 2px;
    margin-top: 0;
}

.contact-section-wrapper .cta-text p {
    font-size: 15px;
    color: var(--contact-text-muted);
    margin: 0;
}

.contact-section-wrapper .btn-holder {
    display: flex;
    gap: 20px;
}

.contact-section-wrapper .btn-chat {
    background-color: var(--contact-btn-green);
    color: var(--contact-white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.contact-section-wrapper .btn-chat:hover {
    filter: brightness(0.9);
    color: var(--contact-white);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section-wrapper .contact-main {
        grid-template-columns: 1fr;
    }

    .contact-section-wrapper .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .contact-section-wrapper .cta-left {
        flex-direction: column;
    }

    .contact-section-wrapper .paper-plane-decor {
        display: none;
    }
}

/* --- Social Media QR Code Section --- */
.contact-section-wrapper .qr-code-section {
    font-family: 'Noto Sans Bengali', sans-serif;
    background-color: #f4f7f6; /* Soft, modern background */
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 16px;
}

.contact-section-wrapper .qr-container {
    max-width: 1000px;
    width: 100%;
}

/* --- Notice/Alert Box --- */
.contact-section-wrapper .qr-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff3cd; /* Warning yellow */
    border-left: 5px solid #ffc107;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.contact-section-wrapper .qr-notice i {
    color: #856404;
    font-size: 1.5rem;
}

.contact-section-wrapper .qr-section-title {
    color: #856404;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}

/* --- Responsive Cards Grid --- */
.contact-section-wrapper .qr-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* --- Individual Card Styling --- */
.contact-section-wrapper .qr-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section-wrapper .qr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* --- Image Wrap --- */
.contact-section-wrapper .qr-image-wrap {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    border: 1px dashed #ced4da;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.contact-section-wrapper .qr-image-wrap img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* --- Label --- */
.contact-section-wrapper .qr-label {
    font-size: 1.25rem;
    color: #2b2b2b;
    margin: 0 0 1.2rem 0;
    font-weight: 600;
}

/* --- Buttons --- */
.contact-section-wrapper .qr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff !important;
    transition: opacity 0.2s ease;
}

.contact-section-wrapper .qr-btn:hover {
    opacity: 0.85;
    color: #ffffff !important;
}

/* Brand Colors */
.contact-section-wrapper .btn-whatsapp { background-color: #25D366; }
.contact-section-wrapper .btn-imo { background-color: #0066FF; }
.contact-section-wrapper .btn-telegram { background-color: #0088cc; }
.contact-section-wrapper .btn-default { background-color: var(--contact-btn-green); }
