/* FORZIMA Contact Page Styles */

/* ===== CONTACT HERO ===== */
.contact-hero {
    background: var(--light-gray);
    padding: 6rem 0 3rem 0;
    margin-top: 70px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTACT LAYOUT ===== */
.contact-form-section {
    padding: 4rem 0;
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--element-padding);
}

/* ===== FORM CONTAINER ===== */
.form-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--light-gray);
}

.form-container h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.form-container > p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

/* ===== FORM SECTIONS ===== */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gold-gradient);
    margin-right: 0.8rem;
    border-radius: 2px;
}

/* ===== FORM ELEMENTS ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
}

.form-group small {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* ===== CHECKBOX STYLING ===== */
.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    cursor: pointer;
    font-weight: 400 !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    margin-right: 0.75rem;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.checkbox-label:hover .checkmark {
    border-color: var(--primary-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gold-gradient);
    border-color: var(--primary-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

/* ===== FILE UPLOAD ===== */
.form-group input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed var(--medium-gray);
    border-radius: 0.5rem;
    background: var(--light-gray);
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-gold);
    background: rgba(201, 169, 97, 0.05);
}

.file-preview {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--primary-silver);
}

.file-count {
    color: var(--navy);
}

.file-item {
    color: var(--charcoal);
}

/* ===== ERROR STATES ===== */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.form-group.error .checkmark {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    padding: 0.5rem;
    background-color: rgba(239, 68, 68, 0.05);
    border-radius: 0.3rem;
    border-left: 3px solid #ef4444;
}

/* ===== SUBMIT SECTION ===== */
.form-submit {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
}

/* ===== SUCCESS/ERROR MESSAGES ===== */
.form-message {
    background: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--light-gray);
    margin: 2rem 0;
    position: relative;
    z-index: 10;
}

.form-message.success {
    border-left: 5px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), white);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.form-message.error {
    border-left: 5px solid #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), white);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.15);
}

.form-message h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.form-message.success h3 {
    color: #10b981;
}

.form-message.error h3 {
    color: #ef4444;
}

.form-message p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== CONTACT INFO SIDEBAR ===== */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--light-gray);
}

.info-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
}

.contact-details strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.contact-details a:hover {
    text-decoration: underline;
}

/* ===== PROCESS STEPS ===== */
.process-step {
    display: inline-flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.process-step div strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.process-step div p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ===== PRICING INFO ===== */
.pricing-info {
    background: var(--light-gray);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--primary-silver);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    color: var(--charcoal);
}

.price-item span:last-child {
    font-weight: 600;
    color: var(--navy);
}

/* ===== FAQ SECTION ===== */
.contact-faq {
    background: var(--light-gray);
    padding: 3rem 0;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--navy);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.8rem;
    box-shadow: var(--shadow-light);
}

.faq-item h4 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--charcoal);
    font-size: 0.95rem;
    margin: 0;
}

.faq-cta {
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-container,
    .info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 4rem 0 2rem 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .form-container,
    .info-card {
        padding: 1rem;
    }
    
    .form-section {
        padding-bottom: 1rem;
    }
}