﻿/* About page */
.about-page-hero .container {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
}

.about-page-hero .about-hero-grid {
    margin-bottom: 0;
    align-items: center;
}

.about-hero-intro {
    max-width: 40rem;
}

.about-page-hero .page-hero-subtitle {
    font-size: 2.05rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
    max-width: 38rem;
    margin-bottom: 1.25rem;
}

.about-page-hero-highlight {
    color: var(--accent-blue);
}

.about-page-hero-lead {
    color: #374151;
    max-width: 34rem;
    line-height: 1.7;
    font-size: 1.02rem;
}

.about-main {
    padding: 1.9rem 0 3.2rem;
    background: #ffffff;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 2.25rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.about-hero-copy h2 {
    color: var(--text-dark);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.85rem;
    display: inline-block;
    position: relative;
    padding-bottom: 1.2rem;
}

.about-hero-copy h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent-blue);
}

.about-hero-copy p {
    max-width: 560px;
    margin-bottom: 1.25rem;
    color: var(--text-muted-strong);
    line-height: 1.82;
    font-size: 1.03rem;
}

.about-hero-copy p:last-child {
    margin-bottom: 2rem;
}

.about-hero-copy-single {
    max-width: none;
    width: 100%;
}

.about-hero-copy-single p {
    max-width: none;
}

.about-goal-line {
    padding-bottom: 0.9rem;
}

.about-hero-image-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(17, 24, 39, 0.2);
}

.about-hero-media {
    position: relative;
}

.about-hero-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 330px;
    max-height: 380px;
    object-fit: cover;
}

.about-hero-image-caption {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 2rem);
    margin: 0;
    font-size: 0.83rem;
    color: var(--text-muted-strong);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 0.48rem 0.7rem;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
    text-align: center;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid #e3e8f2;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 9px 22px rgba(15, 23, 42, 0.06);
}

.about-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.05rem;
}

.about-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #ffffff;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    border: 1px solid rgba(62, 108, 232, 0.32);
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.06);
}

.about-card h3 {
    color: var(--text-dark);
    font-size: 1.12rem;
    line-height: 1.3;
    margin: 0;
    text-decoration: none;
    border-bottom: none;
    display: inline-block;
    position: relative;
    padding-bottom: 0.92rem;
}

.about-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent-blue);
    opacity: 1;
}

.about-card p {
    color: var(--text-muted-strong);
    line-height: 1.72;
    font-size: 1.02rem;
    margin-top: 0.35rem;
}

.about-card p + p {
    margin-top: 0.85rem;
}

.about-card-list {
    margin: 0.85rem 0 0;
    padding-left: 1.15rem;
}

.about-card-list li {
    color: var(--text-muted-strong);
    line-height: 1.65;
    font-size: 0.96rem;
    margin-bottom: 0.5rem;
}

.about-card-list li:last-child {
    margin-bottom: 0;
}

.about-ready {
    padding-top: 1.2rem;
    padding-bottom: 0.2rem;
}

.about-ready-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.6rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.about-ready-copy h3 {
    margin: 0 0 0.3rem;
    color: var(--text-dark);
    font-size: 1.4rem;
    line-height: 1.2;
}

.about-ready-copy p {
    margin: 0;
    color: var(--text-muted-strong);
    max-width: 620px;
}

.about-ready-button-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.about-ready-button-wrap .btn-primary {
    min-width: 220px;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .about-page-hero .page-hero-subtitle {
        font-size: 1.7rem;
    }

    .about-hero-grid,
    .about-cards-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-image-frame img {
        min-height: 280px;
    }

    .about-ready-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-ready-button-wrap {
        width: 100%;
    }

    .about-ready-button-wrap .btn-primary {
        width: 100%;
    }

    .about-ready-copy h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .about-page-hero .page-hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Contact page */
.contact-page-hero .container,
.contact-main .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.contact-main {
    padding: 3rem 0 4rem;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form .contact-form-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.contact-form-section .features-subtitle {
    text-align: left;
    margin: 0 0 1.35rem;
    max-width: none;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem 2rem 1.85rem;
    border-radius: 12px;
    border: 1px solid #e3e8f2;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--wall-stone);
}

.contact-form .select-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.contact-form .select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem;
    background-color: #fff;
}

.contact-form .select-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(62, 108, 232, 0.15);
}

.contact-form .btn-primary {
    width: auto;
    min-width: 170px;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-form .btn-primary i {
    margin-right: 0.35rem;
}

.form-messages {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.form-messages.success {
    background-color: var(--success-bg);
    color: var(--success-color);
    border: 1px solid rgba(22, 163, 74, 0.25);
}

.form-messages.error {
    background-color: var(--error-bg);
    color: var(--error-color);
    border: 1px solid rgba(185, 28, 28, 0.25);
}

.form-messages p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-messages i {
    font-size: 1.2em;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid #e3e8f2;
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.05);
}

.contact-icon {
    background: var(--primary-gradient);
    color: #ffffff;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.contact-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-align: center;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

/* Keep body content aligned with header text, not under icon circle */
.contact-hours .hours-grid,
.contact-company .company-details-body {
    padding-left: calc(43px + 0.85rem);
}

.contact-details h3 {
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-details small {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.contact-hours,
.contact-company {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e3e8f2;
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.05);
    margin-top: 1.25rem;
}

.contact-hours h3,
.contact-company h3 {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-company h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-company p {
    margin: 0.35rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-company p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item strong {
    color: var(--text-dark);
    font-weight: 700;
}

.hours-item span {
    color: var(--text-muted);
}

/* Contact benefits row */
.contact-benefits {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 3.5rem 0;
}

.contact-benefits::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/page/background-lower-part.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.7;
    pointer-events: none;
}

.contact-benefits-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-benefit {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.contact-benefit:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1rem;
    top: 8%;
    width: 1px;
    height: 84%;
    background: linear-gradient(to bottom, rgba(62, 108, 232, 0), rgba(62, 108, 232, 0.42), rgba(62, 108, 232, 0));
}

.contact-benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #dfe8ff;
    color: #3666e4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    box-shadow: inset 0 0 0 1px rgba(62, 108, 232, 0.14);
}

.contact-benefit h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-benefit p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-hours .hours-grid,
    .contact-company .company-details-body {
        padding-left: 0;
    }

    .contact-benefit:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
}

/* FAQ helpers (company bundle) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(17, 24, 39, 0.06);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-item p {
    line-height: 1.6;
    color: var(--text-muted);
}

.faq-item ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.faq-item li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
