:root {
    --primary: #0078d4;
    --secondary: #0f172a;
    --accent: #00a389;
    --muted: #475467;
    --border: #e4e7ec;
    --surface: #ffffff;
    --bg-alt: #f4f6fb;
}

.page-shell {
    background: #f5f5f5;
    min-height: 100vh;
}

.page-hero {
    background: linear-gradient(135deg, #0f172a, #0b4aa2);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 55%);
    pointer-events: none;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.page-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 600;
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 760px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    opacity: 0.6;
}

.content-section {
    padding: 60px 0;
}

.content-section.alt {
    background: var(--bg-alt);
}

.section-title {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-intro {
    color: var(--muted);
    max-width: 720px;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}

.info-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: rgba(0,120,212,0.12);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 16px;
}

.info-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: var(--secondary);
}

.info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.cta-panel {
    background: #0f172a;
    color: #fff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 20px 60px rgba(15,23,42,0.4);
}

.cta-panel h3 {
    margin: 0;
    font-size: 1.8rem;
}

.cta-panel a {
    align-self: flex-start;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 999px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-list details {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 20px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary);
}

.faq-list p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.location-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 28px rgba(15,23,42,0.08);
}

.location-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--secondary);
}

.location-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 24px;
}

.contact-card label {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
}

.contact-card textarea {
    min-height: 140px;
    resize: vertical;
}

.form-action {
    margin-top: 16px;
}

.form-action button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 640px) {
    .page-hero { padding: 100px 0 60px; }
    .cta-panel { padding: 32px; }
}
