/* Contact Page Styles */
.hero-section-con {
    transition: background 0.3s ease;
    background-attachment: fixed; /* Parallax effect */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    max-height: 80%;
}

.hero-section-con h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-section .form-control {
    border: 1px solid #00A3AD;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section h2 {
    margin-bottom: 60px;
}

.contact-section .form-control:focus {
    border-color: #FF6F61;
    box-shadow: 0 0 8px rgba(255, 111, 97, 0.3);
}

.contact-section .btn-primary {
    background-color: #000000;
    border-color: #000000;
}

.contact-section .btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.map-container {
    overflow: hidden;
}

.map-container:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.find-us {
    font-weight: 600; /* Slightly bolder */
}

/* Social Icons Styling */
.social-icons h4 {
    margin-bottom: 1rem;
}

.social-icons .social-icon {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: small;
}

.social-icons .social-icon:hover {
    transform: scale(1.2);
    opacity: 0.9;
}

.social-icons .x-icon i {
    color: #000000; /* X brand color */
}

.social-icons .facebook-icon i {
    color: #1877F2; /* Facebook brand color */
}

.social-icons .instagram-icon i {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mb-3 strong {
    color: black;
}

.contact-link {
    color: #333333; /* Dark color for email and phone links */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section-con {
        min-height: 25vh;
    }
    .hero-section-con h1 {
        font-size: 2rem;
    }
    .hero-section-con .lead {
        font-size: 0.9rem;
    }
    .contact-section .display-5 {
        font-size: 1.8rem;
    }
    .contact-section .form-control,
    .contact-section .btn-primary {
        font-size: 0.85rem;
    }
    .contact-section .map-container {
        height: 200px;
    }
    .contact-section .contact-info {
        text-align: center;
    }
    .contact-section .list-unstyled li {
        font-size: 0.85rem;
    }
    .social-icons {
        text-align: center;
    }
    .social-icons a i {
        font-size: 1.5rem;
    }
    .col-lg-6 h2 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-section .p-4 {
        padding: 1.5rem !important;
    }
    .contact-section .btn-primary {
        width: 100%;
    }
    .hero-section-con {
        min-height: 20vh;
    }
}