/* ==========================================================================
   ExoriQ Solution — Professional site styles
   ========================================================================== */

:root {
    --brand-900: #0a1628;
    --brand-800: #0f2744;
    --brand-700: #1a365d;
    --brand-600: #1e4976;
    --accent-500: #0ea5e9;
    --accent-600: #0284c7;
    --accent-700: #0369a1;
    --success: #059669;
    --surface: #ffffff;
    --surface-muted: #f1f5f9;
    --surface-elevated: #ffffff;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --radius: 14px;
    --radius-sm: 10px;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --nav-height: 76px;
    --transition: 0.22s ease;
}

/* ---- Reset & base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-600);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-700);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    color: var(--brand-800);
    line-height: 1.25;
    margin-top: 0;
}

p {
    margin-top: 0;
}

/* ---- Bootstrap button overrides ---- */
.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--accent-600);
    --bs-btn-border-color: var(--accent-600);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--accent-700);
    --bs-btn-hover-border-color: var(--accent-700);
    --bs-btn-focus-shadow-rgb: 2, 132, 199;
    --bs-btn-active-bg: var(--accent-700);
    --bs-btn-active-border-color: var(--accent-700);
    font-weight: 600;
    border-radius: 10px;
    padding: 0.55rem 1.35rem;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-brand:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
    color: #fff;
}

.btn-brand.btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
}

.btn-hero-outline {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.5);
    --bs-btn-hover-color: var(--brand-800);
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #fff;
    font-weight: 600;
    border-radius: 10px;
    border-width: 2px;
}

/* Kill legacy template colors */
.bg-primary:not(.btn) {
    background-color: var(--brand-800) !important;
}

.text-primary {
    color: var(--accent-600) !important;
}

/* ---- Top bar ---- */
.site-topbar {
    background: var(--brand-900);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8125rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-topbar__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-topbar__left {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.site-topbar__left i,
.site-topbar__right a {
    opacity: 0.9;
}

.site-topbar__left a,
.site-topbar a {
    color: rgba(255, 255, 255, 0.92);
}

.site-topbar__left a:hover {
    color: #fff;
}

.site-topbar__right {
    display: flex;
    gap: 0.5rem;
}

.site-topbar__right a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: background var(--transition);
}

.site-topbar__right a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ---- Navigation ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.site-nav {
    padding: 0.85rem 0;
    background: var(--surface) !important;
}

.site-nav.is-scrolled {
    box-shadow: var(--shadow-md);
}

.site-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.site-brand__logo {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.site-brand__text {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--brand-800);
}

.site-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--accent-600) !important;
    background: rgba(14, 165, 233, 0.08);
}

.site-nav .dropdown-menu {
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 240px;
}

.site-nav .dropdown-item {
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.site-nav .dropdown-item:hover {
    background: var(--surface-muted);
    color: var(--accent-700);
}

/* Custom hamburger */
.site-nav__toggle {
    border: none;
    background: var(--surface-muted);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.site-nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--brand-800);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    background: linear-gradient(145deg, var(--brand-900) 0%, var(--brand-800) 45%, #0c4a6e 100%);
    color: #fff;
    padding: 4rem 0 3.5rem;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(56, 189, 248, 0.15) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: auto, auto, 48px 48px, 48px 48px;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #e0f2fe;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    max-width: 16ch;
    line-height: 1.15;
}

.hero__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 54ch;
    margin-bottom: 1.75rem;
    line-height: 1.75;
}

.hero__text strong {
    color: #bae6fd;
    font-weight: 600;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hero__tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero__tags li {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.85rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #e2e8f0;
}

/* Hero card */
.hero-card {
    position: relative;
    z-index: 1;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    color: var(--text);
}

.hero-card__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.hero-card__head > i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-700));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hero-card__head h2 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--brand-800);
}

.hero-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.hero-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.hero-card__list li:last-child {
    border-bottom: none;
}

.hero-card__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #ecfdf5;
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-top: 2px;
}

.hero-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    background: var(--surface-muted);
    border-radius: 10px;
    font-weight: 700;
    color: var(--accent-700);
    transition: background var(--transition), color var(--transition);
}

.hero-card__cta:hover {
    background: var(--accent-600);
    color: #fff;
}

/* Trust bar */
.trust-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    margin-top: -1px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.trust-bar__grid > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.1rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar__grid > div:nth-child(2n) {
    border-right: none;
}

.trust-bar__grid > div:nth-last-child(-n+2) {
    border-bottom: none;
}

.trust-bar__grid i {
    color: var(--accent-600);
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .trust-bar__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-bar__grid > div {
        border-bottom: none;
    }

    .trust-bar__grid > div:not(:last-child) {
        border-right: 1px solid var(--border);
    }

    .trust-bar__grid > div:nth-child(2n) {
        border-right: 1px solid var(--border);
    }
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-700) 100%);
    padding: 3rem 0;
    color: #fff;
}

.page-hero__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7dd3fc;
    margin-bottom: 0.5rem;
}

.page-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.page-hero__crumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    flex-wrap: wrap;
}

.page-hero__crumb a {
    color: #fff;
    font-weight: 500;
}

.page-hero__crumb a:hover {
    color: #bae6fd;
}

.page-hero__crumb i {
    font-size: 0.6rem;
    opacity: 0.6;
}

/* ---- Sections ---- */
.section {
    padding: 5rem 0;
}

.section--alt {
    background: var(--surface-muted);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-600);
    margin-bottom: 0.65rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    color: var(--brand-800);
}

.section-lead {
    color: var(--text-muted);
    font-size: 1.0625rem;
    margin: 0;
    line-height: 1.75;
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 576px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: var(--accent-700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
}

.feature-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* Service grid */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-500), var(--accent-700));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    background: var(--surface-muted);
    color: var(--accent-600);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.65rem;
}

.service-card p {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.15rem;
}

.service-card__link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-600);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.service-card__link:hover {
    color: var(--accent-700);
}

.service-card__link i {
    transition: transform var(--transition);
}

.service-card:hover .service-card__link i {
    transform: translateX(4px);
}

/* Steps */
.steps-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .steps-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .steps-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
}

.section--alt .step-card {
    background: var(--surface-elevated);
}

.step-card__num {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Industry pills */
.industry-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.industry-pills span {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.section--alt .industry-pills span {
    background: var(--surface-elevated);
}

/* FAQ */
.faq-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.section--alt .faq-item,
.faq-item {
    background: var(--surface-elevated);
}

.faq-item summary {
    padding: 1.1rem 1.35rem;
    font-weight: 700;
    font-size: 0.975rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--brand-800);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--accent-600);
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.35rem 1.15rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* CTA section */
.cta-section {
    padding: 4rem 0;
    background: var(--surface-muted);
}

.cta-section__box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--brand-800), #0c4a6e);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .cta-section__box {
        padding: 2.75rem 3rem;
    }
}

.cta-section__text h2 {
    color: #fff;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 0.5rem;
}

.cta-section__text p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 48ch;
}

/* Content & lists */
.content-block p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-secondary);
    font-size: 0.975rem;
}

.check-list li i {
    position: absolute;
    left: 0;
    top: 0.65rem;
    color: var(--success);
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: linear-gradient(145deg, var(--brand-800), var(--brand-700));
    color: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-card span {
    font-size: 0.875rem;
    opacity: 0.85;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-card h3 i {
    color: var(--accent-600);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Sidebar (service pages) */
.sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.section--alt .sidebar-card {
    background: var(--surface-elevated);
}

.sidebar-card h3 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-500);
    display: inline-block;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list span {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--accent-600);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 0.5rem 0 0.5rem 1rem;
    border-left: 3px solid var(--accent-500);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Contact */
.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.35rem;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 100%;
}

.contact-info-card__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-700));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.contact-info-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    margin: 0;
    font-weight: 600;
    color: var(--brand-800);
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.contact-form .form-control {
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.975rem;
}

.contact-form .form-control:focus {
    border-color: var(--accent-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 100%;
    box-shadow: var(--shadow-sm);
}

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

.alert-success-custom {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-danger-custom {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Footer */
.site-footer {
    background: var(--brand-900);
    color: rgba(255, 255, 255, 0.8);
}

.site-footer__logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.site-footer__name {
    color: #fff;
    font-size: 1.25rem;
}

.site-footer__about {
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 36ch;
    margin: 0;
}

.site-footer__title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-footer__contact,
.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__contact li,
.site-footer__links li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.site-footer__contact a,
.site-footer__links a {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer__contact a:hover,
.site-footer__links a:hover {
    color: #7dd3fc;
}

.site-footer__contact i {
    width: 1.25rem;
    margin-right: 0.4rem;
    color: var(--accent-500);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
}

.site-footer__bottom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.site-footer__bottom-row p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__bottom-nav {
    display: flex;
    gap: 1.25rem;
}

.site-footer__bottom-nav a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.site-footer__bottom-nav a:hover {
    color: #fff;
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    background: var(--accent-600);
    color: #fff;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1020;
    box-shadow: var(--shadow-md);
    transition: background var(--transition), transform var(--transition);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--accent-700);
    color: #fff;
    transform: translateY(-2px);
}

/* Utilities — align old markup */
.text-center.mb-5 {
    margin-bottom: 3rem !important;
}

/* Responsive hero */
@media (max-width: 991.98px) {
    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero__title {
        max-width: none;
    }

    .hero-card {
        margin-top: 0.5rem;
    }

    .section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .cta-section__box {
        text-align: center;
    }

    .cta-section__box .btn {
        width: 100%;
    }
}
