/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #16a34a 0%, #2563eb 100%);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/contact-us-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    text-align: center;
    padding-top: 32px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #f3f4f6;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #e5e7eb;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.form-card {
    max-width: 896px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    position: relative;
    min-height: 90px;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.form-group label i {
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    display: block;
    height: 20px;
    flex-shrink: 0;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.select-wrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
}

.form-group textarea {
    resize: none;
}

.char-count {
    text-align: right;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 4px;
}

.submit-message {
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 8px;
    display: none;
}

.submit-message.show {
    display: block;
}

.submit-message.success {
    background: #d1fae5;
    color: #065f46;
}

.submit-message.error {
    background: #fee2e2;
    color: #991b1b;
}

.submit-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2563eb;
}

.submit-btn:disabled {
    background: #93c5fd;
    cursor: not-allowed;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.info-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 12px;
    padding: 32px;
    color: white;
    text-align: center;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.info-card p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    font-size: 1.5rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 0.875rem;
    color: #bfdbfe;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .form-card {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .form-card {
        padding: 24px 16px;
    }

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

    .info-card {
        padding: 24px 16px;
    }
}

