/* Contact page specific styles */

/* Intro text */
.intro-text {
    text-align: center;
    font-size: 1.1em;
    color: #666666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact grid layout - 1:1:1 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Contact section styling */
.contact-section {
    background-color: #f5f5f5;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    transition: all 0.3s ease;
}

.contact-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cccccc;
}

.contact-section h2 {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section h2 i {
    font-size: 0.9em;
}

.contact-section > p {
    font-size: 1em;
    color: #666666;
    margin-bottom: 25px;
}

/* Contact/PR Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;  
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-item i {
    font-size: 1.5em;
    color: #000000;
    margin-top: 3px;
    min-width: 30px;
    text-align: center;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    font-size: 1em;
    color: #000000;
    margin-bottom: 5px;
    font-family: 'Rajdhani', sans-serif;
}

.info-item p {
    margin: 0;
    font-size: 0.9em;
    color: #666666;
    line-height: 1.5;
}

.info-item a {
    color: #2563eb;
    text-decoration: none;
    word-break: break-word;
    font-size: 0.9em;
    display: inline-block;
    overflow-wrap: anywhere;
}

.info-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.info-item .cta-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    word-break: normal;
}

.info-item .cta-link:hover {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    padding: 6px 14px;
    text-decoration: none;
}

/* Location section */
.location-section .map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    min-height: 300px;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Social media section */
.social-section .social-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    flex: 1;
}

.social-media .card {
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.social-media .card:hover {
    background-color: #000000;
    border-color: #000000;
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.social-media .card a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05em;
}

.social-media .card:hover a {
    color: #ffffff;
}

.social-media .card i {
    font-size: 24px;
    min-width: 30px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-section {
        min-height: auto;
    }
    
    .location-section .map-container {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 25px 20px;
    }
    
    .contact-section h2 {
        font-size: 1.3em;
    }
    
    .location-section .map-container {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .intro-text {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .contact-section {
        padding: 20px 15px;
    }
    
    .contact-section h2 {
        font-size: 1.2em;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .location-section .map-container {
        min-height: 250px;
    }
    
    .social-media .card {
        padding: 15px;
    }
}
