/* Modern Contact Page Styles - Clean Two Column Design */

.contact-page {
    padding: 40px 0 60px;
    background: #ffffff;
}

.contact-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
}

.contact-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.contact-hero h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-hero p {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
}

/* Two Column Layout */
.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Left Column - Contact Info */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-card:hover {
    box-shadow: 0 4px 20px rgba(var(--primary-color-rgb), 0.15);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.contact-icon-wrapper i {
    font-size: 24px;
    color: #ffffff;
}

.contact-icon-wrapper img {
    width: 28px;
    height: 28px;
}

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

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-card a {
    font-size: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    word-break: break-word;
}

.contact-card a:hover {
    color: rgba(var(--primary-color-rgb), 0.8);
}

.contact-card .contact-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
    margin-top: 5px;
    line-height: 1.6;
}

/* Right Column - Map */
.contact-map-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* Contact Image - Smaller Size */
.contact-image-wrapper {
    margin: 0 auto 30px;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* WhatsApp Link Styling */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #25D366;
    color: #ffffff !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 8px;
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: #ffffff !important;
}

.whatsapp-link img {
    width: 20px;
    height: 20px;
}

/* Address Card Special Styling */
.address-card .contact-card-content {
    text-align: right;
}

.address-card .contact-value {
    text-align: justify;
    line-height: 1.8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-page {
        padding: 30px 0 50px;
    }
    
    .contact-hero h1 {
        font-size: 30px;
    }
    
    .contact-hero p {
        font-size: 15px;
    }
    
    .map-wrapper iframe {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        margin-bottom: 30px;
        padding: 20px 0;
    }
    
    .contact-hero h1 {
        font-size: 26px;
    }
    
    .contact-card {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .contact-icon-wrapper i {
        font-size: 20px;
    }
    
    .contact-card h3 {
        font-size: 16px;
    }
    
    .contact-card p,
    .contact-card a {
        font-size: 13px;
    }
    
    .contact-card .contact-value {
        font-size: 13px;
    }
    
    .map-wrapper iframe {
        min-height: 300px;
    }
}

/* Simple fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-card {
    animation: fadeIn 0.5s ease forwards;
}
