/* Map Hero Section */
.map-hero-section {
    width: 100%;
    height: 400px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.map-hero-container {
    width: 100%;
    max-width: var(--container-max-width);
    height: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.map-hero-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(20%);
}

/* Map Interaction Overlay */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    pointer-events: all;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.map-overlay.map-active {
    pointer-events: none;
    opacity: 0;
}

.map-click-hint {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-click-hint:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.map-click-hint p {
    margin: 0;
    font-size: 14px;
    color: #000;
    font-weight: 300;
    text-align: center;
}

/* Contact Photo Section - Left side */
.contact-photo-section {
    grid-column: 1;
    width: 100%;
}

.contact-photo-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    padding: 30px;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: inset 0 1px 2px #ffffff30, /* top highlight */
                0 1px 2px #00000030, /* dark shadow */
                0 2px 4px #00000015; /* soft shadow */
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Content Layout */
.contact-content {
    background: #f5eeea;
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: stretch;
}

/* Contact Info Section - Right 1/2 */
.contact-info-section {
    grid-column: 2;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: inset 0 1px 2px #ffffff30, /* top highlight */
                0 1px 2px #00000030, /* dark shadow */
                0 2px 4px #00000015; /* soft shadow */
    height: 500px;
    width: 100%;
}

.contact-info-content {
    padding: 40px;
    text-align: center;
}

.company-info {
    margin: 20px 0;
}

.company-info p {
    margin: 5px 0;
    color: #000;
    font-size: var(--font-size-base);
}

.address-info {
    margin: 20px 0;
}

.address-info p {
    margin: 5px 0;
    color: #000;
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
}

.contact-details {
    margin-top: 30px;
}

.contact-details .contact-person {
    margin-bottom: 25px;
    padding: 0;
    text-align: left;
    background: transparent;
}

.company-registration {
    margin-top: 30px;
    padding: 0;
    text-align: center;
    background: transparent;
}

.company-registration p {
    margin: 8px 0;
    color: #000;
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
}

.company-registration strong {
    color: var(--primary-color);
    font-weight: 300;
}

.main-heading-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 40px;
}

.heading-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.heading-right {
    flex-shrink: 0;
    text-align: center;
}

.address-info-header p {
    margin: 0;
    line-height: var(--line-height-relaxed);
    color: #000;
    font-weight: 300;
    font-size: var(--font-size-base);
    text-align: center;
}

.company-registration-header {
    margin-top: 15px;
}

/* Contact Social Media Icons */
.contact-social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333333;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contact-social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-social-icon[href*="facebook"]:hover {
    background: #1877f2;
}

.contact-social-icon[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.company-registration-header p {
    margin: 0 0 5px 0;
    line-height: var(--line-height-relaxed);
    color: #000;
    font-weight: 400;
    font-size: var(--font-size-base);
}

.email-under-address {
    margin-top: 10px;
}

.email-under-address a {
    color: #000;
    text-decoration: none;
}

.email-under-address a:hover {
    color: var(--primary-color);
}

.main-accent-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    margin-bottom: 15px;
}

.location-main-heading {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin: 0;
    color: #000000;
    letter-spacing: 0.5px;
}

/* Removed unused company details styles */

/* Contact Persons Horizontal Grid */
.contact-persons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 0;
}

.contact-person {
    padding: 20px;
    background: transparent;
    text-align: center;
    transition: all 300ms;
}



.contact-person p {
    margin: 0 0 5px 0;
    color: #000;
    font-size: var(--font-size-base);
}

.contact-person p:last-child {
    margin-bottom: 0;
}

.contact-person strong {
    color: var(--primary-color);
    font-weight: 300;
}

.contact-person a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-person a:hover {
    color: var(--primary-color);
}

.contact-email {
    background: #f6efeb;
    padding: 15px;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    text-align: center;
    margin-top: 20px;
}

.contact-email p {
    margin: 0;
    font-size: var(--font-size-lg);
}

.contact-email strong {
    color: #000;
    font-weight: 300;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: rgba(51, 51, 51, 0.8);
}

/* Medium screen adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-persons-grid {
        gap: 15px;
    }
    
    .contact-person {
        padding: 18px;
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-section {
        grid-column: unset;
        height: auto;
    }
    
    .contact-photo-section {
        grid-column: unset;
    }
    
    .contact-photo-container {
        height: 300px;
    }
    
    .map-hero-section {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 40px 0;
    }
    
    .contact-info-content {
        padding: 30px 20px;
    }
    
    .main-heading-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    
    .location-main-heading {
        font-size: var(--font-size-2xl);
    }
    
    .contact-photo-container {
        height: 250px;
    }
    
    .map-hero-section {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 30px 0;
    }
    
    .contact-info-content {
        padding: 25px 15px;
    }
    
    .location-main-heading {
        font-size: var(--font-size-xl);
    }
    
    .address-info {
        padding: 15px 0;
    }
    
    .contact-person {
        padding: 10px;
    }
    
    .contact-email {
        padding: 10px;
    }
    
    .map-hero-section {
        height: 200px;
    }
    
    .contact-photo-container {
        height: 200px;
    }
}