/* Contact Page Specific Styles */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(18, 61, 0, 0.8) 0%, #000 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(46, 204, 113, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #080808;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

/* Contact Info Styles */
.contact-info {
    background: rgba(15, 15, 15, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-group {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 12px;
    color: #2ecc71;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-detail {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-detail:hover {
    color: #2ecc71;
}

/* Contact Social Links */
.contact-social {
    margin-top: 10px;
}

.contact-social h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-social .social-links {
    display: flex;
    gap: 15px;
}

.contact-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-social .social-link:hover {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form-container {
    background: rgba(15, 15, 15, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(46, 204, 113, 0.5);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.5s ease;
}

.map-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.map-content {
    background: rgba(10, 10, 10, 0.9);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 30px;
    max-width: 350px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.map-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
}

.btn-outline:hover {
    border-color: #2ecc71;
    color: #2ecc71;
    transform: translateY(-2px);
}

/* Placeholder for map image */
.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    /* Replace with actual map image */
    background-image: url('../images/map-placeholder.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(1) brightness(0.8);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .info-group {
        gap: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .map-section {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .map-section {
        height: 300px;
    }
    
    .map-content {
        padding: 20px;
        max-width: 280px;
    }
}