:root {
    --ascent-blue: #29338f;
    --ascent-cyan: #00a4d8;
    --ascent-green: #118a3a;
    --cp-red: #e31b2f;
    --ink: #101624;
    --muted: #5d6878;
    --line: #dbe4ef;
    --soft: #f4f8fb;
    --white: #ffffff;
    --shadow: 0 18px 46px rgba(16, 22, 36, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Aptos, "Segoe UI", Candara, Calibri, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: var(--white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--ascent-blue);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 24px rgba(16, 22, 36, 0.07);
    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 82px;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    max-width: 62vw;
}

.navbar-brand img {
    width: 260px;
}

.navbar-toggler {
    border-color: var(--line);
    border-radius: 6px;
    padding: 0.45rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.16rem rgba(0, 164, 216, 0.25);
}

.nav-link {
    color: var(--ink);
    font-weight: 750;
    font-size: 0.95rem;
    line-height: 1.2;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ascent-cyan);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 1rem !important;
    color: var(--white) !important;
    background: var(--ascent-green);
    border-radius: 6px;
    margin-left: 0.35rem;
}

.site-main {
    min-height: 100vh;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(41, 51, 143, 0.96), rgba(0, 164, 216, 0.86)), url('/images/ascent-solutions-logo.png') right 8% center / min(520px, 75vw) no-repeat;
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 7px;
    background: linear-gradient(90deg, var(--ascent-cyan), var(--ascent-green), var(--cp-red));
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: center;
    min-height: 590px;
    padding: 5.5rem 0 4.5rem;
}

.eyebrow {
    color: #d9f7ff;
    font-size: 0.92rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
.section-title {
    letter-spacing: 0;
    line-height: 1.05;
    text-wrap: balance;
}

h1 {
    max-width: 850px;
    margin: 0.7rem 0 1rem;
    font-family: "Aptos Display", Aptos, "Segoe UI", Arial, sans-serif;
    font-size: 4.75rem;
    font-weight: 900;
}

.hero-copy {
    max-width: 720px;
    color: #eefbff;
    font-size: 1.24rem;
    line-height: 1.65;
}

.hero-actions,
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn-ascent,
.btn-outline-light,
.btn-whatsapp,
.btn-call,
.btn-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    max-width: 100%;
    padding: 0.78rem 1.1rem;
    border-radius: 6px;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
}

.btn-ascent {
    color: var(--white);
    background: var(--ascent-green);
}

.btn-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-whatsapp {
    color: var(--white);
    background: var(--ascent-green);
}

.btn-call {
    color: var(--white);
    background: var(--ascent-blue);
}

.btn-mail {
    color: var(--ascent-blue);
    background: var(--white);
    border: 1px solid var(--line);
}

.btn-ascent:hover,
.btn-whatsapp:hover,
.btn-call:hover,
.btn-outline-light:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.hero-panel {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    border-radius: 8px;
    padding: 1.35rem;
    box-shadow: 0 20px 50px rgba(16, 22, 36, 0.24);
}

.hero-panel h2 {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    font-weight: 900;
}

.quick-list,
.clean-list {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.quick-list li,
.clean-list li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    min-width: 0;
}

.quick-list li::before,
.clean-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 0.45rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--ascent-cyan);
}

.stats-band {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.stat-item {
    min-height: 112px;
    padding: 1.2rem;
    background: var(--white);
    overflow-wrap: anywhere;
}

.stat-number {
    display: block;
    color: var(--ascent-blue);
    font-size: 1.55rem;
    font-weight: 900;
}

.stat-label {
    color: var(--muted);
    font-weight: 750;
}

.section {
    padding: 4.5rem 0;
}

.section-soft {
    background: var(--soft);
}

.section-kicker {
    color: var(--ascent-green);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-title {
    max-width: 850px;
    margin: 0.35rem 0 0.85rem;
    color: var(--ink);
    font-family: "Aptos Display", Aptos, "Segoe UI", Arial, sans-serif;
    font-size: 3rem;
    font-weight: 900;
}

.section-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.info-card,
.product-card,
.contact-card,
.faq-item {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 1.2rem;
    box-shadow: 0 10px 26px rgba(16, 22, 36, 0.045);
}

.info-card h3,
.product-card h3,
.contact-card h3,
.faq-item h3 {
    margin: 0 0 0.55rem;
    color: var(--ascent-blue);
    font-size: 1.12rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.info-card p,
.product-card p,
.contact-card p,
.faq-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--cp-red);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 2rem;
    align-items: start;
}

.contact-panel {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.8rem;
}

.form-grid .full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 850;
}

.form-control,
.form-select {
    min-height: 48px;
    border-color: var(--line);
    border-radius: 6px;
    font: inherit;
}

textarea.form-control {
    min-height: 120px;
}

.footer {
    background: var(--ink);
    color: var(--white);
    padding: 2rem 0 1.2rem;
}

.footer a {
    color: #d9f7ff;
    font-weight: 800;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 1.5rem;
}

.footer-logo {
    width: 220px;
    padding: 0.4rem;
    background: var(--white);
    border-radius: 6px;
}

.footer-credit {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
}

.floating-actions {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 80;
    display: flex;
    gap: 0.55rem;
}

.floating-actions a {
    min-width: 84px;
    padding: 0.68rem 0.8rem;
    border-radius: 6px;
    color: var(--white);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(16, 22, 36, 0.24);
}

.floating-call {
    background: var(--ascent-blue);
}

.floating-whatsapp {
    background: var(--ascent-green);
}

.page-hero {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
    padding: 4rem 0;
}

.page-hero h1 {
    color: var(--ink);
    font-size: 3.8rem;
}

.map-box {
    display: flex;
    min-height: 240px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, #eef8fd, #ffffff);
    color: var(--muted);
    text-align: center;
    padding: 1rem;
}

@media (max-width: 1199.98px) {
    h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.65rem;
    }

    .page-hero h1 {
        font-size: 3.35rem;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 74px;
    }

    .navbar-brand img {
        width: 230px;
    }

    .navbar-collapse {
        padding: 0.8rem 0 0.3rem;
    }

    .nav-link {
        padding: 0.65rem 0;
    }

    .nav-cta {
        width: 100%;
        margin: 0.5rem 0 0;
    }

    .hero {
        background-position: right -140px center;
        background-size: 520px auto;
    }

    .hero-inner,
    .split {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    h1 {
        font-size: 3.35rem;
    }

    .section-title,
    .page-hero h1 {
        font-size: 2.55rem;
    }

    .card-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 15px;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-brand {
        max-width: 70vw;
    }

    .navbar-brand img {
        width: 205px;
    }

    .hero {
        background-position: right -210px top 40px;
        background-size: 420px auto;
    }

    .hero-inner {
        padding: 3.3rem 0 2.7rem;
    }

    h1 {
        font-size: 2.55rem;
    }

    .hero-copy {
        font-size: 1.05rem;
    }

    .hero-actions,
    .cta-row {
        width: 100%;
    }

    .hero-actions a,
    .cta-row a,
    .cta-row button {
        width: 100%;
    }

    .section,
    .page-hero {
        padding: 3rem 0;
    }

    .section-title,
    .page-hero h1 {
        font-size: 2.05rem;
    }

    .card-grid,
    .stats-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel,
    .info-card,
    .product-card,
    .contact-card,
    .faq-item {
        padding: 1rem;
    }

    .footer {
        padding-bottom: 5.25rem;
    }

    .footer-credit {
        display: block;
    }

    .floating-actions {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .floating-actions a {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 360px) {
    .navbar-brand img {
        width: 178px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .section-title,
    .page-hero h1 {
        font-size: 1.82rem;
    }
}

h1:focus,
.section-title:focus {
    outline: none;
}


.lead-alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--line);
    font-weight: 800;
}

.lead-alert-success {
    color: #0f6a31;
    background: #eaf8ef;
    border-color: #bfe8cc;
}

.lead-alert-warning {
    color: #7a4b00;
    background: #fff6df;
    border-color: #f3d48a;
}

.trap-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lead-cta-section {
    padding-top: 0;
}

.lead-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: linear-gradient(120deg, var(--ascent-blue), #146e9a);
    color: var(--white);
    box-shadow: var(--shadow);
}

.lead-cta-panel h2 {
    margin: 0.25rem 0 0.55rem;
    font-family: "Aptos Display", Aptos, "Segoe UI", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
}

.lead-cta-panel p {
    max-width: 760px;
    margin: 0;
    color: #eefbff;
}

.lead-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-end;
}

@media (max-width: 991.98px) {
    .lead-cta-panel {
        grid-template-columns: 1fr;
    }

    .lead-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .lead-cta-panel {
        padding: 1rem;
    }

    .lead-cta-panel h2 {
        font-size: 1.55rem;
    }

    .lead-cta-actions a {
        width: 100%;
    }
}

.home-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(120deg, rgba(16, 22, 36, 0.98), rgba(41, 51, 143, 0.94) 48%, rgba(0, 164, 216, 0.8));
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 7px;
    background: linear-gradient(90deg, var(--ascent-cyan), var(--ascent-green), var(--cp-red));
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
    gap: 2.5rem;
    align-items: center;
    min-height: 650px;
    padding: 5rem 0 4.2rem;
}

.home-hero-copy h1 {
    font-size: 4.45rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.4rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #edfaff;
    font-weight: 800;
    font-size: 0.9rem;
}

.hero-visual-panel {
    position: relative;
    min-width: 0;
}

.hero-visual-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.92;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-enquiry-card {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(16, 22, 36, 0.2);
}

.hero-enquiry-card strong {
    display: block;
    color: var(--ascent-blue);
    font-size: 1.1rem;
    font-weight: 900;
}

.hero-enquiry-card p {
    margin: 0.35rem 0 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.trust-grid div {
    min-height: 104px;
    padding: 1.15rem;
    background: var(--white);
}

.trust-grid strong {
    display: block;
    color: var(--ascent-blue);
    font-size: 1.45rem;
    font-weight: 900;
}

.trust-grid span {
    display: block;
    color: var(--muted);
    font-weight: 750;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.process-step {
    min-width: 0;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(16, 22, 36, 0.045);
}

.process-step span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    border-radius: 50%;
    background: var(--ascent-blue);
    color: var(--white);
    font-weight: 900;
}

.process-step h3,
.feature-card h3,
.package-card h3 {
    margin: 0 0 0.5rem;
    color: var(--ascent-blue);
    font-size: 1.08rem;
    font-weight: 900;
}

.process-step p,
.feature-card p,
.package-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    display: block;
    min-width: 0;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(16, 22, 36, 0.045);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: 2rem;
}

.project-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(16, 22, 36, 0.06);
}

.project-card picture,
.project-card img {
    display: block;
    width: 100%;
}

.project-card img {
    aspect-ratio: 16 / 11;
    height: auto;
    object-fit: cover;
}

.project-card-body {
    padding: 1.15rem;
}

.project-card-body span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--ascent-green);
    font-size: 0.88rem;
    font-weight: 900;
}

.project-card-body h3 {
    margin: 0 0 0.55rem;
    color: var(--ascent-blue);
    font-size: 1.1rem;
    font-weight: 900;
}

.project-card-body p {
    margin: 0 0 0.85rem;
    color: var(--muted);
    line-height: 1.62;
}

.home-product-split {
    align-items: center;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.package-card {
    display: block;
    min-width: 0;
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(16, 22, 36, 0.06);
}

.package-card span {
    display: inline-flex;
    margin-top: 0.85rem;
    padding: 0.35rem 0.55rem;
    border-radius: 6px;
    color: var(--ascent-green);
    background: #eaf8ef;
    font-weight: 900;
    font-size: 0.9rem;
}

.brand-strip,
.location-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.brand-strip a,
.location-cloud a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ascent-blue);
    background: var(--white);
    font-weight: 900;
    text-decoration: none;
}

.guide-list {
    display: grid;
    gap: 0.75rem;
}

.guide-list a {
    display: block;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(16, 22, 36, 0.045);
}

.guide-list strong,
.guide-list span {
    display: block;
}

.guide-list strong {
    color: var(--ascent-blue);
    font-weight: 900;
}

.guide-list span {
    margin-top: 0.25rem;
    color: var(--muted);
}

@media (max-width: 1199.98px) {
    .home-hero-copy h1 {
        font-size: 3.85rem;
    }
}

@media (max-width: 991.98px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 4rem 0 3.4rem;
    }

    .home-hero-copy h1 {
        font-size: 3.2rem;
    }

    .trust-grid,
    .process-grid,
    .feature-grid,
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .home-hero-grid {
        padding: 3rem 0 2.6rem;
    }

    .home-hero-copy h1 {
        font-size: 2.25rem;
    }

    .hero-badges span {
        flex: 1 1 calc(50% - 0.65rem);
        justify-content: center;
        text-align: center;
    }

    .hero-visual-panel img {
        aspect-ratio: 1 / 1;
    }

    .hero-enquiry-card {
        position: static;
        margin-top: 0.85rem;
    }

    .trust-grid,
    .process-grid,
    .feature-grid,
    .project-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .brand-strip a,
    .location-cloud a {
        flex: 1 1 calc(50% - 0.75rem);
        text-align: center;
    }
}

.hero-visual-panel {
    display: grid;
    gap: 0.85rem;
}

.hero-visual-panel img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    padding: 0.75rem;
    background: #f6f8fb;
}

.hero-enquiry-card {
    position: static;
    margin: 0;
}

.hero-enquiry-card .btn-whatsapp {
    width: auto;
}

@media (min-width: 992px) {
    .home-hero-grid {
        grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.9fr);
    }

    .hero-visual-panel {
        align-self: center;
    }
}

@media (max-width: 575.98px) {
    .hero-visual-panel img {
        padding: 0.5rem;
    }
}

/* Premium homepage polish overrides */
.site-header {
    background: rgba(255, 255, 255, 0.985);
}

.navbar {
    min-height: 72px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.navbar-brand img {
    width: 225px;
}

.nav-link {
    font-size: 0.92rem;
}

.nav-cta {
    min-height: 40px;
    padding: 0.5rem 0.9rem !important;
}

.home-hero {
    background:
        linear-gradient(120deg, rgba(13, 20, 42, 0.98), rgba(37, 47, 132, 0.95) 50%, rgba(0, 152, 205, 0.86));
}

.home-hero-grid {
    min-height: calc(100vh - 72px);
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.82fr);
    gap: 3rem;
}

.home-hero-copy h1 {
    max-width: 760px;
    margin-top: 0.6rem;
    margin-bottom: 1rem;
    font-size: 4rem;
    line-height: 1.02;
}

.home-hero .hero-copy {
    max-width: 780px;
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-badges {
    max-width: 760px;
}

.hero-visual-panel {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.hero-visual-panel img {
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: #f5f7fa;
    box-shadow: none;
}

.hero-enquiry-card {
    border: 1px solid rgba(219, 228, 239, 0.85);
    background: rgba(255, 255, 255, 0.98);
}

@media (max-width: 1199.98px) {
    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
        gap: 2rem;
    }

    .home-hero-copy h1 {
        font-size: 3.35rem;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 68px;
    }

    .navbar-brand img {
        width: 205px;
    }

    .home-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }

    .home-hero-copy h1 {
        font-size: 3rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        width: 185px;
    }

    .home-hero-grid {
        padding-top: 2rem;
        padding-bottom: 2.2rem;
    }

    .home-hero-copy h1 {
        font-size: 2.28rem;
    }

    .hero-visual-panel {
        padding: 0.5rem;
    }
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #f5f7fa;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    border-radius: 6px;
}

.hero-carousel .carousel-item img,
.hero-visual-panel .hero-carousel img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: #f5f7fa;
    box-shadow: none;
}

.hero-carousel-control {
    top: 50%;
    bottom: auto;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(16, 22, 36, 0.58);
    color: var(--white);
    opacity: 1;
    backdrop-filter: blur(10px);
}

.hero-carousel-control:hover,
.hero-carousel-control:focus {
    background: var(--ascent-blue);
    color: var(--white);
    opacity: 1;
}

.hero-carousel-control span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
}

.hero-carousel .carousel-control-prev {
    left: 0.85rem;
}

.hero-carousel .carousel-control-next {
    right: 0.85rem;
}

@media (max-width: 575.98px) {
    .hero-carousel-control {
        width: 40px;
        height: 40px;
    }

    .hero-carousel-control span {
        font-size: 1.35rem;
    }
}

/* Premium carousel controls */
.hero-carousel-control {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.74);
    color: var(--ascent-blue);
    box-shadow: 0 14px 34px rgba(16, 22, 36, 0.22);
}

.hero-carousel-control::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid rgba(41, 51, 143, 0.12);
}

.hero-carousel-control span {
    position: relative;
    width: 14px;
    height: 14px;
    font-size: 0;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
}

.hero-carousel .carousel-control-prev span {
    transform: translateX(3px) rotate(-45deg);
}

.hero-carousel .carousel-control-next span {
    transform: translateX(-3px) rotate(135deg);
}

.hero-carousel-control:hover,
.hero-carousel-control:focus {
    background: var(--white);
    color: var(--ascent-cyan);
    border-color: rgba(0, 164, 216, 0.42);
    box-shadow: 0 18px 42px rgba(0, 164, 216, 0.26);
}

@media (max-width: 575.98px) {
    .hero-carousel-control {
        width: 44px;
        height: 44px;
    }

    .hero-carousel-control span {
        width: 12px;
        height: 12px;
        border-width: 2.5px;
    }
}

/* Designed square banner carousel assets */
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    background: #ffffff;
}

.hero-carousel .carousel-item img,
.hero-visual-panel .hero-carousel img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    background: #ffffff;
}

/* Mobile polish: spacing, menu alignment, footer link treatment */
.footer a,
.footer-credit a {
    text-decoration: none;
}

.footer a:hover,
.footer-credit a:hover {
    text-decoration: none;
    color: var(--white);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        align-items: stretch !important;
        padding: 0.65rem 0 0.2rem;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 42px;
        text-align: center;
    }

    .nav-cta {
        justify-content: center;
        margin-top: 0.45rem;
    }
}

@media (max-width: 575.98px) {
    .home-hero .container,
    .section .container,
    .trust-strip .container,
    .footer .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .home-hero-grid {
        padding-top: 1.75rem;
    }

    .home-hero-copy h1 {
        max-width: 100%;
        font-size: 2.08rem;
        line-height: 1.08;
    }

    .home-hero .hero-copy {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.72;
    }

    .eyebrow {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .hero-actions a,
    .cta-row a,
    .cta-row button {
        min-height: 46px;
    }

    .hero-badges {
        gap: 0.5rem;
    }

    .hero-badges span {
        min-height: 38px;
        padding: 0.4rem 0.45rem;
        font-size: 0.82rem;
    }

    .footer,
    .footer-grid,
    .footer-credit {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-credit {
        justify-content: center;
    }
}

.map-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.map-direction {
    width: calc(100% - 1.6rem);
    margin: 0.8rem;
}

@media (max-width: 575.98px) {
    .map-card iframe {
        min-height: 260px;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-top: 1.35rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-links a {
    color: #d9f7ff;
    font-weight: 800;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 575.98px) {
    .footer-links {
        justify-content: center;
    }
}


/* Internal SEO links */
.internal-link-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.internal-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.internal-link-card {
    display: flex;
    min-height: 118px;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    padding: 20px;
    border: 1px solid rgba(41, 51, 143, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(16, 22, 36, 0.07);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.internal-link-card strong {
    color: var(--ascent-blue);
    font-size: 1.05rem;
    line-height: 1.25;
}

.internal-link-card span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.internal-link-card:hover,
.internal-link-card:focus {
    transform: translateY(-3px);
    border-color: rgba(0, 164, 216, 0.45);
    box-shadow: 0 18px 42px rgba(16, 22, 36, 0.11);
    color: var(--ink);
}

@media (max-width: 991.98px) {
    .internal-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .internal-link-grid {
        grid-template-columns: 1fr;
    }

    .internal-link-card {
        min-height: auto;
        padding: 18px;
        text-align: center;
    }
}

/* Optimized banner picture support */
.hero-carousel .carousel-item picture,
.hero-visual-panel .hero-carousel picture {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

/* Reliable active menu highlight */
.site-header .nav-link.active {
    color: var(--ascent-blue) !important;
    background: rgba(0, 164, 216, 0.1);
    border-radius: 6px;
    box-shadow: inset 0 -3px 0 var(--ascent-cyan);
}

.site-header .nav-link.nav-cta.active {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--ascent-green), #0aa34b);
    box-shadow: 0 10px 24px rgba(17, 138, 58, 0.24), inset 0 -3px 0 rgba(255, 255, 255, 0.28);
}

@media (max-width: 991.98px) {
    .site-header .nav-link.active {
        box-shadow: inset 4px 0 0 var(--ascent-cyan);
    }
}

/* Price guide SEO sections */
.price-factor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.price-factor-card {
    display: flex;
    min-height: 132px;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(41, 51, 143, 0.13);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 22, 36, 0.07);
}

.price-factor-card strong {
    color: var(--ascent-blue);
    font-size: 1.02rem;
    line-height: 1.25;
}

.price-factor-card span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

@media (max-width: 991.98px) {
    .price-factor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .price-factor-grid {
        grid-template-columns: 1fr;
    }

    .price-factor-card {
        min-height: auto;
        text-align: center;
    }
}

/* Header alignment */
@media (min-width: 992px) {
    .site-header .main-navigation {
        display: flex !important;
        justify-content: center;
    }

    .site-header .main-nav-links {
        width: 100%;
        justify-content: center;
        gap: 0.15rem;
    }
}
