/* Contact Page Specific Styles */
/* Follows Twisthand Design System - Does NOT redefine .container */

/* Hero Section */
.hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.hero-content-wrapper h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Options Grid */
.contact-options {
    padding: 3rem 0;
}

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

.contact-card {
    background: var(--bg-subtle);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 31, 51, 0.1);
    border-color: var(--blue);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-primary {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.contact-primary:hover {
    color: var(--navy);
    text-decoration: underline;
}

.contact-card p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem 0;
}

.contact-form-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1rem;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 31, 51, 0.08);
    box-shadow: 0 4px 12px rgba(15, 31, 51, 0.05);
}

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

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

.form-field.full-width {
    margin-bottom: 1.5rem;
}

.form-field label {
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(15, 31, 51, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

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

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

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
}

.form-checkbox label {
    color: var(--text);
    cursor: pointer;
    user-select: none;
}

.submit-button {
    background: var(--navy);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.submit-button:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.form-privacy a {
    color: var(--blue);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* Location Section */
.location-section {
    background: var(--bg-subtle);
    padding: 4rem 0;
    margin-top: 4rem;
}

.location-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
}

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

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.location-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.location-card strong {
    color: var(--navy);
    font-weight: 600;
    font-size: 1.125rem;
}

.location-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

/* Promise Section */
.promise-section {
    padding: 4rem 0;
}

.promise-box {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a3d 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.promise-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

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

.promise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promise-item p {
    color: white;
    line-height: 1.6;
}

.promise-item strong {
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
}

.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: var(--bg-subtle);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--blue);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--navy);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
    text-align: center;
}

.final-cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.cta-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.cta-primary:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.cta-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cta-note a {
    color: white;
    text-decoration: underline;
}

.cta-note a:hover {
    color: var(--gold);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content-wrapper h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-options {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}