/**
 * Contact Page Styles
 * Will and Estate Lawyers Australia
 * 
 * File: /assets/css/contact.css
 * Used on: Contact Us, Get a Quote pages
 */

/* ============================================
   SERVICE SELECTION CARDS
   ============================================ */

.services-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.services-header p {
    font-size: 1.125rem;
    color: var(--gray-dark);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--gray-light);
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: var(--pink);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon.navy {
    background-color: rgba(26, 43, 73, 0.1);
}

.service-icon.green {
    background-color: rgba(16, 185, 129, 0.1);
}

.service-icon.orange {
    background-color: rgba(249, 115, 22, 0.1);
}

.service-icon.purple {
    background-color: rgba(147, 51, 234, 0.1);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-icon.navy svg { stroke: var(--navy); }
.service-icon.green svg { stroke: #10b981; }
.service-icon.orange svg { stroke: #f97316; }
.service-icon.purple svg { stroke: #9333ea; }

.service-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card .service-description {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-price.navy { color: var(--navy); }
.service-price.green { color: #10b981; }
.service-price.orange { color: #f97316; }
.service-price.purple { color: #9333ea; }

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.service-features svg {
    width: 20px;
    height: 20px;
    stroke: #10b981;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-cta {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    text-align: center;
}

.service-cta.navy {
    background-color: var(--navy);
    color: var(--white);
}

.service-cta.navy:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

.service-cta.green {
    background-color: #10b981;
    color: var(--white);
}

.service-cta.green:hover {
    background-color: #059669;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-section {
    padding: 4rem 1.5rem;
    background-color: var(--gray);
}

.why-choose-container {
    max-width: 1280px;
    margin: 0 auto;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    text-align: center;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background-color: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-choose-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--navy);
}

.why-choose-item h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.why-choose-item p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-light);
}

.form-card h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--pink);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 43, 73, 0.3);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-top: 1rem;
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */

.locations-section {
    padding: 4rem 1.5rem;
    background-color: var(--gray);
}

.locations-container {
    max-width: 1280px;
    margin: 0 auto;
}

.locations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.locations-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    font-weight: 700;
}

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

.location-item {
    text-align: center;
}

.location-icon {
    width: 64px;
    height: 64px;
    background-color: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.location-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--navy);
}

.location-item h3 {
    font-size: 1.125rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.location-item p {
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.location-item a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.location-item a:hover {
    color: var(--pink-dark);
}

.locations-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--gray-dark);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 4rem 1.5rem;
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--white);
}

.final-cta-container p {
    font-size: 1.25rem;
    color: var(--pink-light);
    margin-bottom: 2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 767px) {
    .services-header h2,
    .why-choose-header h2,
    .locations-header h2,
    .final-cta-container h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 1.5rem;
    }

    .form-card h2 {
        font-size: 1.5rem;
    }

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