/* CONTACT PAGE SPECIFIC STYLES */
/* Removing duplicate base styles since they're in main.css */

/* CONTACT HERO SECTION */
.contact-hero {
    padding: 2.5rem 0;
    background: #f8f8f8;
    border-bottom: 2px solid #000000;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.badge {
    background: #ffffff;
    border: 2px solid #000000;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    box-shadow: 3px 3px 0px #000000;
}

/* CONTACT SECTION */
.contact-section {
    padding: 3rem 0;
    background: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* CONTACT FORM */
.contact-form-wrapper {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 2rem;
    box-shadow: 6px 6px 0px #000000;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #000000;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5D3FD3;
    box-shadow: 2px 2px 0px #5D3FD3;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.submit-btn {
    background: #5D3FD3;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000000;
}

.submit-btn:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    transform: none;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(2px);
}

/* CONTACT INFO */
.contact-info-wrapper {
    display: grid;
    gap: 2rem;
}

.contact-info {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 2rem;
    box-shadow: 6px 6px 0px #000000;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-info p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border: 2px solid #000000;
}

.contact-icon {
    font-size: 1.5rem;
    background: #5D3FD3;
    color: #ffffff;
    border: 2px solid #000000;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.2rem;
}

.contact-text span {
    font-size: 0.8rem;
    color: #666666;
    font-weight: 500;
}

/* SOCIAL MEDIA */
.social-media {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 2rem;
    box-shadow: 6px 6px 0px #000000;
}

.social-media h4 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
}

.social-links {
    display: grid;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border: 2px solid #000000;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #5D3FD3;
    color: #ffffff;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000000;
}

.social-icon {
    font-size: 1.5rem;
}

/* QUICK CONTACT */
.quick-contact {
    padding: 3rem 0;
    background: #5D3FD3;
    border-bottom: 3px solid #000000;
}

.quick-contact h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.quick-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.quick-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid #000000;
    text-decoration: none;
    color: #000000;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.2s ease;
}

.quick-option:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000000;
}

.quick-icon {
    font-size: 2rem;
    background: #5D3FD3;
    color: #ffffff;
    border: 2px solid #000000;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-text {
    display: flex;
    flex-direction: column;
}

.quick-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.2rem;
}

.quick-text span {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

/* CONTACT PAGE RESPONSIVE STYLES */

/* TABLET RESPONSIVE (768px and up) */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-layout {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .contact-info-wrapper {
        position: sticky;
        top: 100px;
    }
    
    .quick-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP RESPONSIVE (1024px and up) */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-layout {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
    
    .quick-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
}

/* FORM VALIDATION STYLES */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #e74c3c;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #27ae60;
}

/* LOADING STATES */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* FOCUS STYLES */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 2px solid #5D3FD3;
    outline-offset: 2px;
}