/* --- Gradient Glow Background --- */

.contact-us {
    background: linear-gradient(135deg, #2d0299, #f00064);
    /* Warm orange/gold gradient */
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    margin: 50px;
    border-radius: 40px;
}


/* Animated Neon Glow Overlay */

.contact-us::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    animation: rotateGlow 12s linear infinite;
    z-index: 0;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Flex Container */

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* Glass Cards with Neon Glow */

.card-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    flex: 1 1 450px;
    color: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.card-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.1);
}


/* Gradient Headings (Warm Neon Look) */

.contact-info h2,
.contact-form h3 {
    font-size: 30px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #dce0e3, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Contact Details */

.contact-details .detail {
    margin-bottom: 18px;
}

.contact-details h4 {
    font-weight: 600;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.85);
}


/* Social Icons */

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 18px;
}

.social-icons a img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 0 10px #ff6a00);
}


/* Form Inputs */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    border: none;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}


/* Submit Button */

.contact-form button {
    background: linear-gradient(90deg, #ff3c6c, #ff6a00);
    border: none;
    padding: 18px 35px;
    border-radius: 15px;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}


/* Success / Error Messages */

.message {
    margin-top: 18px;
    padding: 15px 18px;
    border-radius: 12px;
    font-weight: 500;
}

.message.success {
    background: rgba(0, 255, 150, 0.2);
    color: #00ff96;
}

.message.error {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4d4d;
}


/* Responsive */

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
}


/* Map Section Styling */

.map-section {
    padding: 60px 20px;
    text-align: center;
    /* Warm gradient background */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #ff3c6c, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Glassmorphic Map Container */

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}


/* Optional: Neon Glow Around Map */

.map-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    animation: rotateGlow 15s linear infinite;
    z-index: 0;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}