/* ==========================================================================
   Pure Nature Contact Section Widget
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

.pn-contact {
    background-color: #3B4D41;
    color: #FFFFFF;
    padding: 160px 48px;
}

.pn-contact .section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.pn-contact .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.pn-contact .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D4A373;
    margin-bottom: 16px;
    font-weight: 600;
}

.pn-contact .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.pn-contact .section-header > p {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Contact Grid */
.pn-contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Contact Info */
.pn-contact .contact-info > h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.pn-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.pn-contact .contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pn-contact .contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: #D4A373;
    fill: none;
    stroke-width: 1.5;
}

.pn-contact .contact-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #D4A373;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 500;
}

.pn-contact .contact-details p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-weight: 300;
}

/* Map Container */
.pn-contact .map-container {
    height: 450px;
    background: linear-gradient(135deg, #324338 0%, #25332A 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.pn-contact .map-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, #FFFFFF 1px, transparent 1px);
    background-size: 20px 20px;
}

.pn-contact .map-content {
    text-align: center;
    z-index: 1;
}

.pn-contact .map-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.pn-contact .map-icon-large svg {
    width: 100%;
    height: 100%;
    stroke: #D4A373;
    fill: none;
    stroke-width: 1;
}

.pn-contact .map-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.pn-contact .map-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.pn-contact .map-address-box {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    background-color: #FFFFFF;
    padding: 20px 24px;
    z-index: 1;
    text-align: center;
}

.pn-contact .map-address-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #2C3530;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.pn-contact .map-address-box p strong {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .pn-contact .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .pn-contact {
        padding: 80px 24px;
    }

    .pn-contact .section-header h2 {
        font-size: 28px;
    }

    .pn-contact .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
