/* Contact Hero Section */
#contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.9)),
                url('../services/IMSC-TOWER-2.jpeg') center/cover fixed;
    padding: 8rem 5% 4rem;
    overflow: hidden;
}

#contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 184, 0, 0.1), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    animation: slideDown 1s ease-out;
}

.hero-content .highlight {
    color: #FFB800;
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: slideUp 1s ease-out 0.3s backwards;
}

/* Contact Section */
#contact-section {
    background-color: #121212;
    padding: 6rem 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    color: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #FFB800;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #FFB800;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    color: #cccccc;
}

.social-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #FFB800;
    color: #121212;
    transform: translateY(-3px);
}

.whatsapp-icon {
    background-color: #25D366;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.whatsapp-icon:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    font-size: 2.5rem;
    color: #FFB800;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFB800;
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #FFB800, #FFC933);
    color: #121212;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Map Section */
#map-section {
    background-color: #121212;
    padding-bottom: 6rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

/* Enhanced Footer */
.enhanced-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 4rem 0 0;
    position: relative;
}

.enhanced-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.company-info .footer-logo {
    width: 120px;
    margin-bottom: 1.5rem;
}

.company-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-section h3 {
    color: #FFB800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: #FFB800;
}

.contact-grid {
    display: grid;
    gap: 1rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-item:hover {
    color: #FFB800;
}

.footer-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB800;
    transition: all 0.3s ease;
}

.footer-item:hover i {
    background: #FFB800;
    color: #0a0a0a;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links ul li {
    margin-bottom: 1rem;
}

.quick-links ul li:last-child {
    margin-bottom: 0;
}

.quick-links ul li a {
    color: #cccccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 1rem;
}

.quick-links ul li a i {
    color: #FFB800;
    font-size: 12px;
}

.quick-links ul li a:hover {
    color: #FFB800;
    padding-left: 5px;
}

.quick-links ul li a::before {
    display: none;
}

.location-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #FFB800;
}

/* Responsive Design Updates */
@media (max-width: 1200px) {
    .enhanced-footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .enhanced-footer .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        text-align: center;
    }
}

/* Form validation styles */
.form-group input.is-invalid,
.form-group textarea.is-invalid {
    border-color: #dc3545;
    background-color: #fff;
}

.form-group input.is-invalid:focus,
.form-group textarea.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Alert messages */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Loading spinner */
.fa-spinner {
    margin-right: 0.5rem;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
