/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

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

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(139, 69, 19, 0.8)), url('assets/images/bg-lawyer.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-hero .highlight {
    color: #ffd700;
}

.contact-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form Section */
.main-contact-form {
    padding: 80px 0;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    width: 100%;
}

.btn-submit {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #e6c200;
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 15px;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
}

/* Office Locations Section */
.office-locations {
    padding: 80px 0;
    background: #f1f1f1;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-icon {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 15px;
}

.location-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.location-card p {
    color: #666;
    margin-bottom: 15px;
}

.location-phone {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}
