/* =================================================================
   Noble Freight Services — Stylesheet (Modern/Corporate)
   ================================================================= */

:root {
    /* Brand */
    --brand-primary: #0a2540;
    --brand-primary-dark: #061a30;
    --brand-primary-soft: #143659;

    /* Action colour — modern corporate blue (used for primary CTAs, links) */
    --brand-action: #1565c0;
    --brand-action-dark: #0d47a1;

    /* Restrained accent */
    --brand-accent: #1565c0;

    /* Neutrals */
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --bg-page: #ffffff;
    --bg-soft: #f8fafc;
    --bg-subtle: #f1f5f9;
    --border-light: #e2e8f0;
    --border-mid: #cbd5e1;
}

/* ===== Bootstrap palette overrides ===== */
.btn-primary {
    --bs-btn-bg: var(--brand-action);
    --bs-btn-border-color: var(--brand-action);
    --bs-btn-hover-bg: var(--brand-action-dark);
    --bs-btn-hover-border-color: var(--brand-action-dark);
    --bs-btn-active-bg: var(--brand-action-dark);
    --bs-btn-active-border-color: var(--brand-action-dark);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
}
.btn-secondary {
    --bs-btn-bg: var(--brand-primary);
    --bs-btn-border-color: var(--brand-primary);
    --bs-btn-hover-bg: var(--brand-primary-dark);
    --bs-btn-hover-border-color: var(--brand-primary-dark);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
}
.btn-outline-primary {
    --bs-btn-color: var(--brand-action);
    --bs-btn-border-color: var(--brand-action);
    --bs-btn-hover-bg: var(--brand-action);
    --bs-btn-hover-border-color: var(--brand-action);
    --bs-btn-active-bg: var(--brand-action);
    --bs-btn-active-border-color: var(--brand-action);
}
.text-primary { color: var(--brand-primary) !important; }
.bg-primary { background-color: var(--brand-primary) !important; }
.text-action { color: var(--brand-action) !important; }
.bg-soft { background-color: var(--bg-soft); }

/* ===== Base typography ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-body);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-page);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.25rem; font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-top: 2rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.005em; }
p { color: var(--text-body); }
.lead { font-weight: 400; color: var(--text-body); }

a {
    color: var(--brand-action);
    text-decoration: none;
    transition: color .15s ease;
}
a:hover {
    color: var(--brand-action-dark);
    text-decoration: underline;
}

section { padding: 5rem 0; }
@media (max-width: 768px) { section { padding: 3rem 0; } }

/* ===== Buttons ===== */
.btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
    transition: all .15s ease;
}
.btn-lg {
    padding: 0.85rem 1.85rem;
    font-size: 1rem;
}
.btn:hover {
    transform: translateY(-1px);
}

/* ===== Top utility bar ===== */
.topbar {
    background: var(--brand-primary);
    color: rgba(255,255,255,.85);
    font-size: 0.8125rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar a { color: rgba(255,255,255,.85); text-decoration: none; }
.topbar a:hover { color: #ffffff; text-decoration: none; }
.topbar i { color: rgba(255,255,255,.55); margin-right: 0.35rem; }
.topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    transition: all .15s ease;
}
.topbar-social i { color: rgba(255,255,255,.85); margin: 0; font-size: 0.95rem; }
.topbar-social:hover { background: rgba(255,255,255,.12); }
.topbar-social:hover i { color: #ffffff; }

/* ===== Main navigation ===== */
.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 0.25rem 0;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.main-nav .navbar-brand { padding: 0; margin: 0; display: flex; align-items: center; }
.main-nav .navbar-brand img,
.main-nav .brand-logo { height: 144px; width: auto; display: block; }
@media (max-width: 576px) {
    .main-nav .navbar-brand img,
    .main-nav .brand-logo { height: 96px; }
}
.main-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.6rem 1rem !important;
    position: relative;
    transition: color .15s ease;
}
.main-nav .nav-link:hover {
    color: var(--brand-action);
}
.main-nav .nav-link.active {
    color: var(--brand-primary);
    font-weight: 600;
}
.main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--brand-action);
    border-radius: 1px;
}
.main-nav .dropdown-menu {
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}
.main-nav .dropdown-item {
    padding: 0.55rem 0.85rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-radius: 6px;
    transition: all .12s ease;
}
.main-nav .dropdown-item:hover,
.main-nav .dropdown-item.active {
    background: var(--bg-subtle);
    color: var(--brand-action);
}
.btn-quote {
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
}
@media (max-width: 992px) {
    .btn-quote { display: inline-block; margin-top: 0.75rem; }
}

/* ===== Hero (home) ===== */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: white;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.88) 0%, rgba(10, 37, 64, 0.6) 60%, rgba(10, 37, 64, 0.4) 100%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.hero .lead {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin-bottom: 2rem;
    font-weight: 400;
}
.hero .eyebrow,
.hero .text-gold {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 0.8125rem !important;
    text-transform: uppercase;
}
.hero-small { min-height: 320px; }
.hero-small h1 { font-size: clamp(2rem, 4vw, 3rem); }

/* ===== Inner page header ===== */
.page-header {
    background: var(--brand-primary);
    color: white;
    padding: 4.5rem 0 2.75rem;
    position: relative;
}
.page-header.page-header-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5.5rem 0 4rem;
    overflow: hidden;
}
.page-header.page-header-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.88) 0%, rgba(10, 37, 64, 0.65) 100%);
    z-index: 1;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.page-header .lead {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    max-width: 720px;
}

.breadcrumbs {
    background: var(--bg-soft);
    padding: 0.85rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}
.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}
.breadcrumbs a:hover { color: var(--brand-action); }
.breadcrumbs .current { color: var(--text-dark); font-weight: 500; }

/* ===== Section headings ===== */
.section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-heading .eyebrow {
    display: inline-block;
    color: var(--brand-action);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
}
.section-heading h2 {
    margin-bottom: 0.75rem;
}
.section-heading p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* ===== Service cards ===== */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-action);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.service-card .service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.service-card .service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 37, 64, 0.45));
}
.service-card .service-icon {
    position: absolute;
    bottom: -22px;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--brand-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.35rem;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(10, 37, 64, 0.25);
}
.service-card .service-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.service-card p {
    color: var(--text-muted);
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}
.service-card .service-link {
    color: var(--brand-action);
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.9rem;
}
.service-card .service-link i {
    transition: transform .2s ease;
    display: inline-block;
    margin-left: 0.25rem;
}
.service-card:hover .service-link i { transform: translateX(4px); }

/* ===== Feature blocks ===== */
.feature-block {
    padding: 1.75rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    height: 100%;
    transition: all .2s ease;
}
.feature-block:hover {
    border-color: var(--brand-action);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.feature-block .feature-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-subtle);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-action);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all .2s ease;
}
.feature-block:hover .feature-icon {
    background: var(--brand-action);
    color: white;
}
.feature-block h3, .feature-block h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}
.feature-block p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== Stat cards ===== */
.stat-card {
    padding: 2rem 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
}
.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--brand-action);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}
.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8125rem;
}

/* ===== Split image (gold decoration removed) ===== */
.split-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-image-deco { display: none; }

/* ===== Compact service cards (multi-column layout, e.g. Domestic Services) ===== */
.service-card-row {
    margin: 2rem 0;
}
.service-card-col {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
}
.service-card-col:hover {
    border-color: var(--brand-action);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.service-card-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}
.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-card-col h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}
.service-card-col h3 a {
    color: inherit;
    text-decoration: none;
    transition: color .15s ease;
}
.service-card-col h3 a:hover {
    color: var(--brand-action);
}
.service-card-col ul {
    padding-left: 0 !important;
    margin: 0 !important;
    list-style: none;
}
.service-card-col ul li {
    position: relative;
    padding-left: 1.25rem !important;
    margin-bottom: 0.4rem !important;
    font-size: 0.95rem;
    line-height: 1.5;
}
.service-card-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--brand-action);
    border-radius: 2px;
    transform: rotate(45deg);
}

/* ===== Service page alternating image + list sections ===== */
.service-section {
    margin: 3.5rem 0;
}
.service-section h2 {
    margin-top: 0;
}
.service-section h2::after {
    /* keep the underline accent consistent with other h2s */
    bottom: -8px;
}
.service-section-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
    display: block;
}
@media (max-width: 991px) {
    .service-section { margin: 2.5rem 0; }
}

/* Abbreviations — card grid layout */
.abbr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
    margin: 2.5rem 0 0 !important;
    max-width: none !important;
}
.abbr-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.abbr-item:hover {
    border-color: var(--brand-action);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}
.abbr-key {
    font-weight: 700;
    color: var(--brand-primary);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.abbr-value {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.35;
}

/* ===== Page content area ===== */
.page-content {
    padding: 5rem 0;
}
.page-content > .container > .row > .col-lg-10 {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-body);
}
/* First paragraph styling - bigger and prominent */
.page-content .col-lg-10 > p:first-of-type {
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 2rem;
}
.page-content h2 {
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    position: relative;
    padding-bottom: 0.75rem;
}
.page-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--brand-action);
    border-radius: 2px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.page-content ul,
.page-content ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1.75rem;
}
.page-content ul li,
.page-content ol li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.65rem;
    line-height: 1.6;
}
.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    background: var(--brand-action);
    border-radius: 2px;
    transform: rotate(45deg);
}
.page-content ol {
    counter-reset: list-counter;
}
.page-content ol li {
    counter-increment: list-counter;
}
.page-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--brand-action);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}
.page-content p {
    margin-bottom: 1.25rem;
    color: var(--text-body);
}
.page-content a:not(.btn) {
    font-weight: 500;
    color: var(--brand-action);
    border-bottom: 1px solid transparent;
    transition: border-color .15s ease;
}
.page-content a:not(.btn):hover {
    text-decoration: none;
    border-bottom-color: var(--brand-action);
}
.page-content strong {
    color: var(--text-dark);
    font-weight: 600;
}
.page-content blockquote {
    border-left: 3px solid var(--brand-action);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 2rem 0;
    color: var(--text-dark);
    font-style: italic;
    font-size: 1.1rem;
}
.page-content hr {
    border: 0;
    height: 1px;
    background: var(--border-light);
    margin: 2.5rem 0;
}
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.95rem;
}
.page-content table th,
.page-content table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}
.page-content table th {
    background: var(--bg-soft);
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-mid);
}
/* Feature grids inside page content keep their card layout */
.page-content .feature-block ul,
.page-content .feature-block ol { margin-top: 0.5rem; }
.page-content .feature-block ul li::before {
    top: 0.55em;
    width: 6px;
    height: 6px;
}

/* ===== Blog ===== */
.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-action);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.post-card .post-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.post-card .post-img-placeholder {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 3rem;
}
.post-card .post-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.post-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.post-card h3 a { color: inherit; text-decoration: none; }
.post-card h3 a:hover { color: var(--brand-action); }
.post-card .post-meta {
    color: var(--text-muted);
    font-size: 0.825rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.post-card .post-excerpt {
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.95rem;
}
.post-card .post-link {
    color: var(--brand-action);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Single post */
.post-hero {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
}
@media (max-width: 768px) {
    .post-hero { height: 240px; }
}
.single-post-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-body);
}
.single-post-content h2, .single-post-content h3 {
    color: var(--text-dark);
    margin-top: 2.5rem;
}
/* Tags on single post */
.post-single .tag {
    display: inline-block;
    background: var(--bg-subtle);
    color: var(--brand-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
}
.post-card .tag {
    display: inline-block;
    background: var(--bg-subtle);
    color: var(--brand-primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
}

/* ===== Contact ===== */
.contact-info-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
}
.contact-info-card .contact-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-action);
    color: white;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.contact-info-card h5 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.contact-info-card p {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: 0.95rem;
}
.contact-info-card p a { color: var(--text-dark); }
.contact-info-card p a:hover { color: var(--brand-action); }

.contact-form-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.contact-form-card label { font-weight: 500; color: var(--text-dark); font-size: 0.9rem; }
.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid var(--border-mid);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    transition: all .15s ease;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--brand-action);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

/* ===== CTA strip ===== */
.cta-strip {
    background: var(--brand-primary);
    background-image: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-soft) 100%);
    color: white;
}
.cta-strip h3 {
    color: white;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.cta-strip .btn-light {
    background: white;
    color: var(--brand-primary);
    border: none;
    font-weight: 600;
}
.cta-strip .btn-light:hover {
    background: var(--bg-soft);
    color: var(--brand-primary-dark);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--brand-primary-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 4rem;
    font-size: 0.9rem;
}
.site-footer .footer-title {
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}
.site-footer .footer-list { margin-bottom: 0; }
.site-footer .footer-list li { margin-bottom: 0.55rem; }
.site-footer .footer-list a,
.site-footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color .15s ease;
}
.site-footer .footer-list a:hover,
.site-footer a:hover { color: white; }
.site-footer .footer-list i { color: rgba(255,255,255,0.4); }
.site-footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 2.5rem 0 1.25rem;
}
.site-footer .footer-bottom {
    padding-bottom: 1.5rem;
    font-size: 0.825rem;
    color: rgba(255,255,255,0.5);
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    margin-right: 0.5rem;
    transition: all .15s ease;
}
.social-icons a:hover {
    background: var(--brand-action);
    color: white;
}

/* ===== Back to top ===== */
#backToTop {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    transition: all .15s ease;
    z-index: 1000;
}
#backToTop:hover { background: var(--brand-action); transform: translateY(-2px); }
#backToTop.visible { display: inline-flex; }

/* ===== Utility ===== */
.text-gold,
.text-secondary { color: var(--brand-action) !important; }
.eyebrow {
    display: inline-block;
    color: var(--brand-action);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
}
.shadow-soft { box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06); }
.rounded-3 { border-radius: 12px !important; }

/* ===== Admin styles ===== */
.admin-body { background: var(--bg-soft); }
.admin-nav {
    background: var(--brand-primary);
    color: white;
    padding: 0.75rem 0;
}
.admin-nav a { color: rgba(255,255,255,0.85); }
.admin-nav a:hover, .admin-nav a.active { color: white; }
.admin-nav .nav-link.active { background: rgba(255,255,255,0.1); border-radius: 6px; }
.admin-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    margin-bottom: 1.5rem;
}
.admin-login-bg {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-soft) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 768px) {
    .hero { min-height: 500px; }
    .page-header { padding: 3rem 0 2rem; }
    .section-heading { margin-bottom: 2.5rem; }
}
