/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%);
    position: relative;
    overflow: hidden;
}

#contact-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.contact-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.contact-hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, #f093fb, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: #ddd;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Main Contact Section */
.contact-main-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.info-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102,126,234,0.3);
    border-color: rgba(102,126,234,0.5);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.info-card p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.info-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group option{
   background: #303031;
}

.form-group label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.2);
    background: rgba(255,255,255,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.char-counter {
    text-align: right;
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-text {
    color: #ddd;
    font-size: 0.95rem;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* Form Message */
.form-message {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
    margin-top: 1rem;
}

.form-message.success {
    background: rgba(46,204,113,0.2);
    border: 1px solid rgba(46,204,113,0.5);
    color: #2ecc71;
    display: block;
}

.form-message.error {
    background: rgba(231,76,60,0.2);
    border: 1px solid rgba(231,76,60,0.5);
    color: #e74c3c;
    display: block;
}

/* Contact Purpose Section */
.contact-purpose-section {
    padding: 6rem 5%;
    background: rgba(0,0,0,0.1);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.purpose-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.2);
    border-color: rgba(102,126,234,0.4);
}

.purpose-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.purpose-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.purpose-card > p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.purpose-list {
    list-style: none;
    padding: 0;
}

.purpose-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ddd;
    font-size: 0.9rem;
}

.purpose-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* FAQ Section */
.contact-faq-section {
    padding: 6rem 5%;
    background: rgba(0,0,0,0.05);
}

.faq-intro {
    text-align: center;
    color: #ddd;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 1.5rem auto 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.2);
    border-color: rgba(102,126,234,0.3);
}

.faq-item h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #ddd;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Alternative Contact Section */
.alternative-contact-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, rgba(102,126,234,0.2) 0%, rgba(118,75,162,0.2) 100%);
}

.alternative-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.alternative-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.alternative-content > p {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.email-button:hover {
    background: rgba(255,255,255,0.15);
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
}

.email-icon {
    font-size: 2rem;
}

.email-text {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
}

.email-note {
    color: #ddd;
    font-size: 1.05rem;
    margin: 2rem 0 1rem;
}

.email-tips {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.email-tips li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #ddd;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.email-tips li:last-child {
    border-bottom: none;
}

.email-tips li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-hero-content h2 {
        font-size: 2.5rem;
    }

    .contact-hero-content p {
        font-size: 1.1rem;
    }

    .contact-info-grid,
    .purpose-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .email-button {
        flex-direction: column;
        padding: 1.5rem;
    }

    .email-text {
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
