/* css/static-page.css — shared styles for Privacy Policy, About, Contact, Terms pages */

/* ===== PAGE WRAPPER ===== */
.static-page {
    padding: 3rem 0 5rem;
    min-height: 60vh;
}

.static-container {
    max-width: 860px;
}

/* ===== PROSE CONTENT ===== */
.static-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 24px rgba(29, 53, 87, 0.07);
    border: 1px solid rgba(29, 53, 87, 0.07);
}

.static-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1d3557;
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.static-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1d3557;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #f0f2f5;
}

.static-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1d3557;
    margin-top: 1.4rem;
    margin-bottom: 0.35rem;
}

.static-content p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.static-content ul, .static-content ol {
    color: #374151;
    line-height: 1.8;
    padding-left: 1.4rem;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.static-content li { margin-bottom: 0.4rem; }

.static-content a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
}

.static-content a:hover { text-decoration: underline; }

.static-content strong { color: #1d3557; }

.last-updated {
    font-size: 0.82rem !important;
    color: #9ca3af !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600 !important;
}

.page-intro {
    font-size: 1.05rem !important;
    color: #5a6b7c !important;
    border-left: 3px solid #e63946;
    padding-left: 1rem;
    margin-bottom: 2rem !important;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    text-align: center;
    padding: 2.5rem 1rem 2rem;
    margin-bottom: 2rem;
}

.about-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #1d3557;
    margin-bottom: 0.75rem;
}

.about-hero h1 span {
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    font-size: 1.1rem;
    color: #5a6b7c;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.about-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.07);
    border: 1px solid rgba(29, 53, 87, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(230, 57, 70, 0.1);
}

.about-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.about-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1d3557;
    margin: 0 0 0.5rem;
}

.about-card p {
    font-size: 0.9rem;
    color: #5a6b7c;
    line-height: 1.7;
    margin: 0;
}

.about-text { margin-top: 0; }

.branch-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0 1rem;
}

.branch-tags span {
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem 1.4rem;
    transition: border-color 0.2s ease;
}

.contact-card:hover { border-color: rgba(230, 57, 70, 0.3); }

.contact-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }

.contact-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #1d3557;
    margin: 0 0 0.35rem;
}

.contact-card p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.contact-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: #e63946;
    text-decoration: none;
    word-break: break-all;
}

.contact-link:hover { text-decoration: underline; }

.contact-form-wrap {
    background: #ffffff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
    border: 1px solid rgba(29, 53, 87, 0.07);
}

.contact-form-wrap h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1d3557;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.93rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
    color: #1d3557;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

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

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: white;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.contact-note {
    margin-top: 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.contact-note p { margin: 0; }
.contact-note a { color: #e63946; font-weight: 600; text-decoration: none; }
.contact-note a:hover { text-decoration: underline; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .static-content {
        padding: 1.5rem 1.25rem;
    }

    .static-content h1 { font-size: 1.7rem; }
    .static-content h2 { font-size: 1.1rem; }

    .about-hero h1 { font-size: 1.9rem; }
    .about-hero p  { font-size: 0.95rem; }

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

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

@media (max-width: 480px) {
    .static-page { padding: 1.5rem 0 3rem; }
    .static-content { border-radius: 10px; padding: 1.25rem 1rem; }
    .contact-form-wrap { padding: 1.25rem 1rem; }
}
