.contact-form-section {
    padding: 4rem 0;
    background: var(--background-secondary);
}

.container {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--card-background);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}



.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--input-background);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    text-align: center;
    padding: 2rem;
    color: var(--text-primary);
}

.success-message h3 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

/* Dark mode adjustments */
html[data-theme="dark"] .contact-form-section {
    background: rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .form-input,
html[data-theme="dark"] .form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
        max-width: 90%;
    }

    .contact-form-container {
        padding: 1.5rem;
    }



    .section-title {
        font-size: 2rem;
    }

    .submit-btn {
        padding: 0.8rem 2rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.8rem;
    }
}/* Contact Us Page Specific Styles */
.contact-us-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-info-section {
    padding: 6rem 0;
    background: var(--bg-secondary, #f8fafc);
}

html[data-theme="dark"] .contact-info-section {
    background: var(--bg-secondary, #1e293b);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color, #e5e7eb);
    transition: all 0.3s ease;
}

html[data-theme="dark"] .contact-method {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

html[data-theme="dark"] .contact-method:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: #60a5fa;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.contact-method h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    margin-bottom: 0.5rem;
}

html[data-theme="dark"] .contact-method h3 {
    color: var(--text-primary, #f3f4f6);
}

.contact-method p {
    color: var(--text-secondary, #6b7280);
    margin-bottom: 1rem;
    line-height: 1.5;
}

html[data-theme="dark"] .contact-method p {
    color: var(--text-secondary, #d1d5db);
}

.contact-method a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.contact-method a:hover {
    color: #2563eb;
    text-decoration: underline;
}

html[data-theme="dark"] .contact-method a {
    color: #60a5fa;
}

html[data-theme="dark"] .contact-method a:hover {
    color: #3b82f6;
}

.response-time {
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
}

html[data-theme="dark"] .response-time {
    color: #10b981;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.125rem;
    }

    .contact-us-hero {
        padding: 4rem 0 3rem;
    }

    .contact-info-section {
        padding: 4rem 0;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-method {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .method-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
}