.contact-form-section {
    background-color: #050505;
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 0 #333;
}

.contact-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 60px;
    color: #aaaaaa;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.contact-form-wrapper {
    flex: 1.4;
    min-width: 300px;
}

.contact-info-wrapper {
    flex: 1;
    min-width: 280px;
    font-size: 0.9em;
    margin-left: 0;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    width: 100%;
    background-color: #f7f9fa;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #000000;
    padding: 16px 20px;
    font-size: 1rem;
    border-radius: 999px !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.contact-form textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    padding: 20px;
    font-size: 1rem;
    border-radius: 30px !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    min-height: 150px;
    resize: vertical;
}

.contact-form input::placeholder {
    color: #888888;
}

.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff !important;
}

.submit-btn {
    background-color: #ffffff;
    color: #0b0d10;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 42px;
    letter-spacing: 0px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    color: #000000;
    background-color: #e6e6e6;
    transform: translateY(-1px);
}

/* Info Section */
.info-item {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: #000000;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text p {
    margin: 0;
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

.network-channels {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.network-channels h3 {
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid #444444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.map-container {
    margin-top: 40px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */

/* Default hidden states */
.contact-form-section.reveal-on-scroll .form-group,
.contact-form-section.reveal-on-scroll .submit-btn,
.contact-form-section.reveal-on-scroll .info-item,
.contact-form-section.reveal-on-scroll .network-channels,
.contact-form-section.reveal-on-scroll .map-container {
    opacity: 0;
    position: relative;
    top: 30px;
}

/* Staggered form fields (Left side) */
.contact-form-section.reveal-on-scroll.is-visible .form-group:nth-child(1) {
    animation: contact-slide-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.contact-form-section.reveal-on-scroll.is-visible .form-group:nth-child(2) {
    animation: contact-slide-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.contact-form-section.reveal-on-scroll.is-visible .form-group:nth-child(3) {
    animation: contact-slide-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.contact-form-section.reveal-on-scroll.is-visible .submit-btn {
    animation: contact-slide-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

/* Staggered info items (Right side) */
.contact-form-section.reveal-on-scroll.is-visible .info-item:nth-of-type(1) {
    animation: contact-slide-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.contact-form-section.reveal-on-scroll.is-visible .info-item:nth-of-type(2) {
    animation: contact-slide-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.contact-form-section.reveal-on-scroll.is-visible .info-item:nth-of-type(3) {
    animation: contact-slide-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

.contact-form-section.reveal-on-scroll.is-visible .network-channels {
    animation: contact-slide-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.contact-form-section.reveal-on-scroll.is-visible .map-container {
    animation: contact-slide-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
}

@keyframes contact-slide-up {
    0% {
        opacity: 0;
        top: 30px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
}

/* Form Status Messages */
.form-status {
    padding: 16px 24px;
    border-radius: 30px;
    margin-top: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

.form-status.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-status.success {
    background-color: rgba(46, 213, 115, 0.15);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.form-status.error {
    background-color: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

/* Submit Button Loading state */
.submit-btn.loading {
    background-color: #cccccc !important;
    color: #555555 !important;
    cursor: not-allowed;
    transform: none !important;
}