/**
 * Contact Hero Section - Theme Compatible Colors
 * Algeria theme colors integration
 */

/* Contact hero section with Algeria theme gradient */
.contact-hero {
    background: linear-gradient(135deg, #007751 0%, #D52B1E 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Add subtle pattern overlay */
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Ensure content is above pattern */
.contact-hero .container {
    position: relative;
    z-index: 1;
}

/* Contact quick info boxes with better theme integration */
.contact-hero .contact-quick-info {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.contact-hero .contact-quick-info:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Icon circles with theme accent */
.contact-hero .contact-quick-info > div:first-child {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    transition: all 0.3s ease;
}

.contact-hero .contact-quick-info:hover > div:first-child {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

/* Button styling to match theme */
.contact-hero .btn-modern-contact {
    background: #fff !important;
    color: #007751 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease !important;
}

.contact-hero .btn-modern-contact:hover {
    background: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #D52B1E !important;
}

/* Typography adjustments */
.contact-hero h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Links in contact info */
.contact-hero .contact-quick-info a {
    color: #fff !important;
    text-decoration: none !important;
    transition: opacity 0.3s ease;
}

.contact-hero .contact-quick-info a:hover {
    opacity: 0.8;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-hero h2 {
        font-size: 28px !important;
    }
    
    .contact-hero p {
        font-size: 16px !important;
    }
    
    .contact-hero .contact-quick-info {
        padding: 20px 15px !important;
    }
}