.contact-page {
    --contact-blue: #1a5fa8;
    --contact-blue-light: #2472c8;
    --contact-blue-pale: #e8f1fb;
    --contact-blue-dark: #0f3d72;
    --contact-orange: #f5a020;
    --contact-orange-pale: #fef3e2;
    --contact-green: #1e6b45;
    --contact-green-pale: #e6f4ec;
    --contact-off: #f8f8f6;
    --contact-text: #1a1a1a;
    --contact-muted: #6b7280;
    --contact-border: #e2e8f0;
    width: 100%;
    color: var(--contact-text);
    background: #fff;
}

.contact-page .contact-stripe {
    height: 3px;
    background: linear-gradient(to right, var(--contact-blue), var(--contact-orange), var(--contact-blue));
}

.contact-page .hero {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: auto;
    display: block;
    background: var(--contact-blue);
    padding: 72px 5% 64px;
    position: relative;
    overflow: hidden;
}

.contact-page .hero::before,
.contact-page .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-page .hero::before {
    right: -80px;
    top: -80px;
    width: 420px;
    height: 420px;
    background: rgba(245, 160, 32, 0.09);
}

.contact-page .hero::after {
    left: 35%;
    bottom: -60px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.04);
}

.contact-page .hero-inner,
.contact-page .response-inner,
.contact-page .main,
.contact-page .faq-inner,
.contact-page .newsletter-inner,
.contact-page .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page .hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-page .eyebrow,
.contact-page .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contact-page .eyebrow {
    margin-bottom: 18px;
    background: rgba(245, 160, 32, 0.2);
    color: var(--contact-orange);
}

.contact-page .hero h1,
.contact-page .section-title,
.contact-page .cta-copy h2 {
    margin: 0;
    font-weight: 700;
    line-height: 1.08;
}

.contact-page .hero h1 {
    font-size: clamp(30px, 4vw, 48px);
    color: #fff;
    margin-bottom: 14px;
}

.contact-page .section-title {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 12px;
}

.contact-page .hero h1 span,
.contact-page .section-title span {
    color: var(--contact-orange);
}

.contact-page .hero-subtitle,
.contact-page .section-subtitle,
.contact-page .cta-copy p {
    font-size: 15px;
    line-height: 1.72;
}

.contact-page .hero-subtitle {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 28px;
}

.contact-page .section-subtitle {
    color: #666;
    margin-bottom: 36px;
}

.contact-page .faq-section-action {
    display: flex;
    justify-content: center;
    margin-top: -8px;
    margin-bottom: 10px;
}

.contact-page .faq-section-action .btn-map {
    background: #fff;
    color: var(--contact-blue);
    border: 1px solid var(--contact-blue);
}

.contact-page .faq-section-action .btn-map:hover {
    background: rgba(26, 95, 168, 0.08);
}

.contact-page .quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-page .quick-link,
.contact-page .info-card,
.contact-page .hours-card,
.contact-page .branch-card,
.contact-page .solo-card,
.contact-page .map-frame,
.contact-page .destination-card,
.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea,
.contact-page .address-card,
.contact-page .faq-item {
    background: #fff;
    border: 1.5px solid var(--contact-border);
    border-radius: 14px;
}

.contact-page .quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    transition: background 0.2s ease;
}

.contact-page .quick-link:hover {
    background: rgba(255, 255, 255, 0.16);
}

.contact-page .contact-collapse {
    overflow: hidden;
}

.contact-page .contact-collapse-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    cursor: pointer;
}

.contact-page .contact-collapse-body {
    padding: 0 22px 22px;
    display: none;
}

.contact-page .contact-collapse.is-open .contact-collapse-body {
    display: block;
}

.contact-page .contact-collapse-chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--contact-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-page .contact-collapse-chevron svg {
    width: 16px;
    height: 16px;
    stroke: var(--contact-blue);
    stroke-width: 1.9;
    fill: none;
}

.contact-page .contact-collapse.is-open .contact-collapse-chevron {
    transform: rotate(180deg);
    background: rgba(26, 95, 168, 0.06);
}

.contact-page .icon-box,
.contact-page .info-icon,
.contact-page .solo-icon,
.contact-page .faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .icon-box,
.contact-page .solo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(245, 160, 32, 0.2);
    flex-shrink: 0;
}

.contact-page .icon-box svg,
.contact-page .quick-link svg,
.contact-page .solo-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--contact-orange);
    fill: none;
    stroke-width: 2;
}

.contact-page .quick-link-label {
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-page .quick-link-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.contact-page .response-bar {
    background: var(--contact-off);
    border-bottom: 1px solid var(--contact-border);
}

.contact-page .response-inner {
    padding: 20px 5%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.contact-page .response-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: #666;
    background: #fff;
    border: 1px solid var(--contact-border);
    border-radius: 14px;
    padding: 16px 18px;
    min-height: 76px;
}

.contact-page .response-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-page .response-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #8a8a8a;
}

.contact-page .response-item strong {
    color: var(--contact-text);
    font-size: 14px;
    line-height: 1.45;
}

.contact-page .response-dot,
.contact-page .branch-dot,
.contact-page .office-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-page .response-dot {
    margin-top: 7px;
}

.contact-page .main {
    padding: 72px 5% 88px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 56px;
    align-items: start;
}

.contact-page .section-tag {
    color: var(--contact-orange);
    letter-spacing: 2px;
    padding: 0;
    border-radius: 0;
    background: none;
    margin-bottom: 10px;
}

.contact-page .destination-label,
.contact-page .contact-form label {
    font-size: 12.5px;
    font-weight: 700;
    color: #555;
}

.contact-page .required {
    color: var(--contact-orange);
}

.contact-page .destination-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 28px;
}

.contact-page .destination-card {
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.contact-page .destination-card.is-selected {
    background: var(--contact-blue-pale);
    border-color: var(--contact-blue);
}

.contact-page .destination-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-page .destination-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.contact-page .radio-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--contact-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-page .destination-card.is-selected .radio-circle {
    background: var(--contact-blue);
    border-color: var(--contact-blue);
}

.contact-page .radio-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
}

.contact-page .destination-card.is-selected .radio-dot {
    opacity: 1;
}

.contact-page .destination-name {
    font-size: 13.5px;
    font-weight: 700;
}

.contact-page .destination-email {
    font-size: 11.5px;
    color: #999;
}

.contact-page .contact-form .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-page .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea,
.contact-page .newsletter-form input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    font: inherit;
    color: var(--contact-text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus,
.contact-page .newsletter-form input:focus {
    border-color: var(--contact-blue);
    box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.1);
}

.contact-page .char-count,
.contact-page .privacy-note,
.contact-page .newsletter-note {
    font-size: 12px;
    color: #999;
}

.contact-page .char-count {
    text-align: right;
    margin: -10px 0 16px;
}

.contact-page .submit-row,
.contact-page .cta-buttons,
.contact-page .map-buttons,
.contact-page .newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-page .btn-primary,
.contact-page .btn-secondary,
.contact-page .btn-outline,
.contact-page .btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
}

.contact-page .btn-primary,
.contact-page .btn-secondary,
.contact-page .btn-outline,
.contact-page .btn-accent,
.contact-page .newsletter-button {
    padding: 13px 24px;
    font-size: 14px;
    border: none;
}

.contact-page .btn-primary,
.contact-page .newsletter-button {
    background: var(--contact-blue);
    color: #fff;
}

.contact-page .btn-primary:hover,
.contact-page .newsletter-button:hover {
    background: var(--contact-blue-light);
    transform: translateY(-2px);
}

.contact-page .btn-secondary {
    background: var(--contact-orange);
    color: #fff;
}

.contact-page .btn-secondary:hover,
.contact-page .btn-accent:hover {
    background: #ffb84d;
}

.contact-page .btn-outline {
    background: none;
    color: #888;
    border: 1.5px solid var(--contact-border);
}

.contact-page .btn-outline:hover {
    color: #555;
    border-color: #ccc;
}

.contact-page .btn-accent {
    background: var(--contact-orange);
    color: #fff;
}

.contact-page .privacy-note a,
.contact-page .info-value a,
.contact-page .branch-phone,
.contact-page .office-phone {
    color: var(--contact-blue);
    text-decoration: none;
}

.contact-page .success-message {
    display: none;
    margin-top: 20px;
    padding: 28px 24px;
    text-align: center;
    border-radius: 12px;
    background: var(--contact-green-pale);
    border: 1.5px solid #a7d7ba;
}

.contact-page .success-message.is-visible {
    display: block;
}

.contact-page .sidebar {
    position: sticky;
    top: 82px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-page .info-header {
    padding: 0;
    background: transparent;
    color: var(--contact-text);
    flex: 1;
}

.contact-page .info-header-title {
    font-size: 14px;
    font-weight: 700;
}

.contact-page .info-header-subtitle {
    font-size: 11.5px;
    color: #7a8aa0;
    margin-top: 2px;
}

.contact-page .solo-card {
    padding: 22px;
}

.contact-page .info-row,
.contact-page .office-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--contact-border);
}

.contact-page .info-row:last-child,
.contact-page .office-item:last-child {
    border-bottom: none;
}

.contact-page .info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 7px;
    background: var(--contact-blue-pale);
}

.contact-page .info-icon svg,
.contact-page .hours-title svg {
    width: 14px;
    height: 14px;
    stroke: var(--contact-blue);
    fill: none;
    stroke-width: 2;
}

.contact-page .info-label,
.contact-page .offices-title {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #b3b3b3;
}

.contact-page .info-value,
.contact-page .branch-info,
.contact-page .office-address {
    font-size: 13.5px;
    line-height: 1.5;
}

.contact-page .hours-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
}

.contact-page .hours-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.contact-page .hours-status.is-open {
    background: var(--contact-green-pale);
    color: var(--contact-green);
}

.contact-page .hours-status.is-closed {
    background: #fee2e2;
    color: #991b1b;
}

.contact-page .status-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.contact-page .hours-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid var(--contact-border);
    font-size: 13px;
}

.contact-page .hours-row:last-child {
    border-bottom: none;
}

.contact-page .hours-row.is-today .hours-day,
.contact-page .hours-row.is-today .hours-time {
    color: var(--contact-blue);
    font-weight: 700;
}

.contact-page .hours-day {
    color: #666;
}

.contact-page .hours-time {
    font-weight: 700;
}

.contact-page .hours-time.is-closed {
    color: #bbb;
}

.contact-page .branch-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--contact-border);
}

.contact-page .branch-item:last-child {
    border-bottom: none;
}

.contact-page .branch-name,
.contact-page .office-name {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-page .branch-info,
.contact-page .office-address {
    color: #999;
}

.contact-page .branch-phone,
.contact-page .office-phone {
    display: inline-block;
    margin-top: 3px;
    font-size: 12.5px;
    font-weight: 700;
}

.contact-page .solo-card {
    text-align: center;
    background: var(--contact-orange-pale);
    border-color: #f9d9a0;
}

.contact-page .solo-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--contact-orange);
    border-radius: 12px;
}

.contact-page .solo-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.contact-page .solo-card h4 {
    margin: 0 0 6px;
    font-size: 14.5px;
}

.contact-page .solo-card p {
    margin: 0 0 14px;
    font-size: 12.5px;
    color: #666;
    line-height: 1.55;
}

.contact-page .map-section,
.contact-page .newsletter-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
}

.contact-page .faq-section {
    padding: 80px 5%;
    background: var(--contact-off);
    border-top: 1px solid var(--contact-border);
}

.contact-page .section-center {
    text-align: center;
}

.contact-page .section-center .section-subtitle {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .map-layout,
.contact-page .newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-page .map-frame {
    overflow: hidden;
}

.contact-page .map-frame iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

.contact-page .address-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    margin-bottom: 18px;
    background: var(--contact-blue);
    color: #fff;
    border-color: transparent;
}

.contact-page .address-card::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(245, 160, 32, 0.12);
}

.contact-page .address-tag {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-page .address-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 4px;
    font-size: 20px;
}

.contact-page .address-copy {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

.contact-page .btn-map {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-page .btn-map:hover {
    background: rgba(255, 255, 255, 0.25);
}

.contact-page .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    margin-top: 48px;
}

.contact-page .faq-item {
    padding: 22px 24px;
    cursor: pointer;
}

.contact-page .faq-question {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.45;
}

.contact-page .faq-toggle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--contact-blue-pale);
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-page .faq-toggle svg {
    width: 11px;
    height: 11px;
    stroke: var(--contact-blue);
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.2s ease;
}

.contact-page .faq-answer {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--contact-border);
    font-size: 13.5px;
    color: #666;
    line-height: 1.7;
}

.contact-page .faq-item.is-open .faq-answer {
    display: block;
}

.contact-page .faq-item.is-open .faq-toggle {
    background: var(--contact-blue);
}

.contact-page .faq-item.is-open .faq-toggle svg {
    stroke: #fff;
    transform: rotate(180deg);
}

.contact-page .newsletter-form {
    margin-top: 20px;
}

.contact-page .newsletter-button {
    border-radius: 8px;
    white-space: nowrap;
}

.contact-page .newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-page .newsletter-benefit {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: #555;
}

.contact-page .benefit-dot {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--contact-blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .benefit-dot svg {
    width: 10px;
    height: 10px;
    stroke: var(--contact-blue);
    fill: none;
    stroke-width: 3;
}

.contact-page .cta-band {
    background: var(--contact-blue);
    padding: 64px 5%;
}

.contact-page .cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-page .cta-copy h2 {
    font-size: clamp(22px, 3vw, 34px);
    color: #fff;
    margin-bottom: 10px;
}

.contact-page .cta-copy p {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.68);
}

.contact-page .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-page .reveal.visible {
    opacity: 1;
    transform: none;
}

.contact-page .delay-1 {
    transition-delay: 0.08s;
}

.contact-page .delay-2 {
    transition-delay: 0.16s;
}

.contact-page .delay-3 {
    transition-delay: 0.24s;
}

@media (max-width: 1024px) {
    .contact-page .response-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page .hero-inner,
    .contact-page .main,
    .contact-page .map-layout,
    .contact-page .newsletter-inner,
    .contact-page .faq-grid,
    .contact-page .cta-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .contact-page .sidebar {
        position: static;
    }

    .contact-page .cta-inner {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-page .hero,
    .contact-page .main,
    .contact-page .map-section,
    .contact-page .faq-section,
    .contact-page .newsletter-section,
    .contact-page .cta-band {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-page .hero {
        padding-top: 48px;
        padding-bottom: 44px;
    }

    .contact-page .destination-grid,
    .contact-page .contact-form .row {
        grid-template-columns: 1fr;
    }

    .contact-page .response-inner {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }
}
