/* Contact Us Page Styles */

.contact-hero {
    background: linear-gradient(135deg, #1a0017 0%, #66003b 50%, #9b0465 100%);
    padding: 140px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.contact-hero h1 span {
    color: #ff0080;
}

.contact-hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-section {
    padding: 80px 0;
    background: #000;
}

.contact-section-alt {
    background: #0a0a0a;
}

.contact-section-title {
    text-align: center;
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 0, 128, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form {
    color: white;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.form-label i {
    color: #ff0080;
    width: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff0080;
    color: white;
    box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.2);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-alert {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #90ee90;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
}

/* Submit Button */
.contact-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ff0080 0%, #ff5e98 50%, #ff0080 100%);
    background-size: 200% 100%;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.4),
                0 0 0 0 rgba(255, 0, 128, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 220px;
}

.contact-submit-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-submit-btn .btn-content i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-submit-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.contact-submit-btn:hover {
    background-position: 100% 0;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.5),
                0 0 0 4px rgba(255, 0, 128, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

.contact-submit-btn:hover .btn-shine {
    left: 100%;
}

.contact-submit-btn:hover .btn-content i {
    transform: translateX(3px) rotate(-15deg);
}

.contact-submit-btn:active {
    transform: translateY(-2px) scale(1);
}

/* Contact Info Cards */
.contact-info-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 0;
    border: 2px solid rgba(255, 0, 128, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 128, 0.5);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
}

.contact-info-header {
    background: linear-gradient(135deg, #ff0080, #ff5e98);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-header i {
    font-size: 1.8rem;
    color: white;
}

.contact-info-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.contact-info-body {
    padding: 30px;
    flex: 1;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0080, #ff5e98);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-info-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-content p {
    color: #ccc;
    line-height: 1.7;
    margin: 0;
}

.contact-info-content a {
    color: #ff0080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #ff5e98;
    text-decoration: underline;
}

/* Social Media */
.social-intro {
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-media-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.social-media-item:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: rgba(255, 0, 128, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.2);
    color: white;
    text-decoration: none;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0080, #ff5e98);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.social-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: white;
}

.social-content p {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0;
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 0, 128, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section-title {
        font-size: 2rem;
    }

    .contact-section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .contact-form-card {
        padding: 25px;
    }

    .contact-info-header {
        padding: 20px;
    }

    .contact-info-body {
        padding: 20px;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-media-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 350px;
    }
}

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

    .contact-section-title {
        font-size: 1.8rem;
    }

    .contact-submit-btn {
        width: 100%;
        padding: 16px 35px;
    }
}


