/* Page-specific styles for contact.php */
.hero {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 10rem 2rem;
    background-image: linear-gradient(rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.6)), url('../images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #333;
    position: relative;
    overflow: hidden;
}

/* Moving Disco Light Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 127, 0.4), rgba(0, 255, 255, 0.4), rgba(121, 40, 202, 0.4), rgba(255, 255, 0, 0.4));
    background-size: 400% 400%;
    animation: discoLighting 10s ease infinite;
    mix-blend-mode: color;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    color: #fff;
    animation: neonPulse 2s infinite alternate;
}

.content {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h1 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    margin-top: 0;
}

.contact-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ddd;
}

.contact-info-block {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-info-block:hover {
    transform: translateY(-3px);
    border-color: #00ffff;
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.1);
}

.contact-info-block h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #00ffff;
    letter-spacing: 1px;
}

.contact-info-block a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-info-block a:hover {
    color: #ff007f;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
    background-color: #111;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.contact-form-wrapper h2 {
    margin-top: 0;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #00ffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #050505;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    color-scheme: dark;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff007f;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
    outline: none;
}

.success-message, .error-message {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.success-message { background-color: rgba(0, 255, 0, 0.1); border: 1px solid #00ff00; color: #00ff00; }
.error-message { background-color: rgba(255, 0, 0, 0.1); border: 1px solid #ff0000; color: #ff0000; }

@media (max-width: 768px) {
    .contact-container {
        display: flex;
        flex-direction: column-reverse; /* This will stack the form on top of the details */
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}