* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 30px 0;
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.form-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.required {
    color: #ef4444;
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

input::placeholder, textarea::placeholder {
    color: #9ca3af;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    margin-top: 12px;
    margin-left: auto;
    box-shadow: 0 12px 24px rgba(14,165,233,.18);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #6d28d9, #0891b2);
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(14,165,233,.22);
}

.submit-btn i {
    margin-right: 10px;
}

.contact-info-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(2,6,23,.06);
    height: fit-content;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #0f172a;
}

.info-item {
    margin-bottom: 22px;
    padding: 14px 14px;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    background: #fff;
}

.info-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.info-detail {
    font-size: 1.1rem;
    color: #4b5563;
}

.info-detail i {
    margin-right: 12px;
    color: #3b82f6;
    width: 20px;
}

.office-hours {
    margin-top: 26px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.hours-table tr {
    border-bottom: 1px solid #eef2f7;
}

.hours-table td {
    padding: 12px 0;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: #374151;
}

.hours-time {
    text-align: right;
    color: #4b5563;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 60px 0 80px;
}

.faq-accordion {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.faq-item + .faq-item {
    border-top: 1px solid #eef2f7;
}

.faq-question {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border: none;
    padding: 18px 20px;
    font-size: 0.98rem;
    color: #0f172a;
    cursor: pointer;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    transition: transform 0.2s ease;
    color: #64748b;
    font-size: 0.85rem;
}

.faq-item.open .faq-icon,
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 0 20px;
    color: #475569;
    line-height: 1.6;
    background: #fff;
    transition: max-height 0.25s ease;
    max-height: 0;
    overflow: hidden;
}

.faq-answer p {
    margin: 0 0 16px 0;
    font-size: 0.95rem;
}

/* Divider line at the bottom to match screenshot */
.faq-accordion::after {
    content: "";
    display: block;
    height: 1px;
    background: #eef2f7;
}

/* Contact action buttons */
.contact-actions { display:flex; gap:10px; margin-top: 16px; }
.btn-outline, .btn-solid {
    display:inline-flex; align-items:center; gap:8px; padding:10px 14px; border-radius:10px; text-decoration:none; font-weight:600; font-size:.95rem;
}
.btn-outline { border:1px solid #e2e8f0; color:#0f172a; background:#fff; }
.btn-outline:hover { background:#f8fafc; }
.btn-solid { background:#0ea5e9; color:#fff; box-shadow:0 10px 20px rgba(14,165,233,.18); }
.btn-solid:hover { background:#0284c7; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-actions { flex-direction: row; }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .form-section, .contact-info-section {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-question {
        padding: 16px 16px;
    }
    .faq-answer {
        padding: 0 16px 0 16px;
    }
    .submit-btn { width: 100%; margin-left: 0; }
    .contact-actions { flex-direction: column; }
}

/* Scroll reveal animations (gentle, design-safe) */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; transform: none; opacity: 1; }
}