/* About page - extends site_theme.css */

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.section-heading h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-heading p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.hero--about {
    padding: 3rem 0 2rem;
}

.hero--about h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin-bottom: 1rem;
}

.hero--about .hero-description {
    margin-bottom: 2rem;
}

.page-nav {
    position: sticky;
    top: 72px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    margin-bottom: 2rem;
}

.page-nav-inner {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
}

.page-nav-inner::-webkit-scrollbar { display: none; }

.page-nav a {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--light-secondary);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.page-nav a:hover,
.page-nav a.active {
    color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
}

.about-section {
    padding: 3.5rem 0;
    scroll-margin-top: 140px;
}

.about-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.55);
}

.content-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
}

.content-card p,
.content-card li {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-card p:last-child,
.content-card li:last-child {
    margin-bottom: 0;
}

.content-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.content-card h3:first-child {
    margin-top: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(124, 58, 237, 0.2);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.service-list {
    list-style: none;
    margin-top: 1.25rem;
}

.service-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.service-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.team-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.tip-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tip-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    position: relative;
}

.testimonial-card blockquote {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0 0 1rem;
    border: none;
    padding: 0;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.testimonial-card .agent {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.cta-section {
    padding: 4rem 0 5rem;
    text-align: center;
}

.cta-box {
    background: var(--gradient);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin: 0 auto 1.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-box .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.cta-box .btn-primary:hover {
    color: var(--primary-dark);
}

.timeline {
    margin-top: 1.5rem;
    border-left: 3px solid rgba(124, 58, 237, 0.25);
    padding-left: 1.5rem;
}

.timeline-item {
    margin-bottom: 1.25rem;
}

.timeline-item strong {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.timeline-item p {
    margin: 0;
    font-size: 0.98rem;
}

@media (max-width: 768px) {
    .page-nav { top: 64px; }
    .about-section { scroll-margin-top: 120px; padding: 2.5rem 0; }
    .content-card { padding: 1.5rem; }
}
