/*
====================================================
Insurance & Inspection Company Certificates Template
====================================================
*/

:root {
    --green: #003f32;
    --green-2: #075243;
    --green-3: #0a6a56;
    --navy: #10233a;
    --gold: #c89142;
    --gold-2: #dfaa56;
    --cream: #fbfaf6;
    --soft: #f7f8f5;
    --line: #e3e8e5;
    --text: #344052;
    --muted: #6f7b87;
    --white: #ffffff;
    --shadow: 0 14px 35px rgba(16, 35, 58, 0.08);
    --shadow-soft: 0 10px 26px rgba(17, 39, 54, 0.06);
    --teal: #0f6e7c;
    --teal-2: #159cae;
    --navy-2: #1f4468;
    --terracotta: #b1552f;
    --terracotta-2: #d97a49;
    --plum: #6d3f73;
    --plum-2: #9a5da3;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 14px;
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    transition: all .28s ease;
}

h1, h2 {
    font-family: "Playfair Display", serif;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.28;
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(28px, 3.2vw, 36px);
    letter-spacing: -.8px;
}

h2 {
    font-size: clamp(28px, 3vw, 38px);
}

h3, h4, h5, h6 {
    color: var(--navy);
    font-weight: 800;
}

.container-fluid {
    max-width: 1470px;
}

.section-padding {
    padding: 40px 0 46px;
}

.section-padding-sm {
    padding: 28px 0 18px;
}

/* ================= TOP BAR ================= */
.topbar {
    background: var(--green);
    color: #fff;
    min-height: 40px;
    font-size: 13px;
    font-weight: 700;
}

.topbar-inner {
    height: 40px;
    display: grid;
    grid-template-columns: 1.55fr 1.1fr 1.2fr 1fr;
    align-items: center;
    column-gap: 25px;
}

.topbar i {
    color: var(--gold-2);
    margin-right: 8px;
}

/* ================= NAVBAR ================= */
.main-navbar {
    background: #fff;
    border-bottom: 1px solid #eef1ef;
    min-height: 89px;
    box-shadow: 0 6px 24px rgba(20, 35, 48, 0.03);
    z-index: 99;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 270px;
}

.brand-shield {
    width: 54px;
    height: 58px;
    border: 3px solid #0d263c;
    border-radius: 24px 24px 18px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 26px;
    position: relative;
}

.brand-shield::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 2px solid var(--gold);
    border-radius: 16px 16px 12px 12px;
    opacity: .3;
}

.brand-text {
    color: #1c2e3f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: .2px;
}

.navbar-nav {
    gap: 12px;
}

.navbar-nav .nav-link {
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    padding: 32px 5px !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 27px;
    height: 2px;
    background: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.phone-btn {
    color: var(--navy);
    border: 1px solid #d9e0dd;
    border-radius: 6px;
    padding: 13px 17px;
    font-size: 13px;
    font-weight: 800;
    background: #fff;
    white-space: nowrap;
}

.phone-btn i {
    color: var(--green);
    margin-right: 8px;
}

.phone-btn:hover {
    color: #fff;
    background: var(--green);
    border-color: var(--green);
}

.btn {
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    padding: 13px 22px;
    border: 0;
    transition: .28s ease;
}

.btn i {
    margin-left: 7px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #fff;
    box-shadow: 0 10px 20px rgba(200, 145, 66, .18);
}

.btn-gold:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(200, 145, 66, .27);
}

.btn-darkgreen {
    background: var(--green);
    color: #fff;
    padding: 15px 28px;
}

.btn-darkgreen:hover {
    background: var(--green-2);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-green {
    background: #fff;
    color: var(--green);
    border: 1px solid #bed2cc;
    padding: 14px 27px;
}

.btn-outline-green:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--green);
    padding: 14px 30px;
}

.btn-white:hover {
    background: #f5f7f5;
    color: var(--green);
    transform: translateY(-2px);
}

/* ================= HERO ================= */
.hero-section {
    background:
        radial-gradient(circle at 70% 22%, rgba(200, 145, 66, .08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fcfcfa 58%, #ffffff 100%);
    padding: 70px 0 24px;
}

.hero-row {
    min-height: 520px;
}

.hero-content {
    padding-left: 45px;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .7px;
    margin-bottom: 18px;
}

.eyebrow.small {
    margin-bottom: 9px;
}

.hero-content p {
    max-width: 535px;
    color: #40505f;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 29px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 33px;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-stack {
    display: flex;
    padding-left: 0;
}

.avatar-stack span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
    border: 3px solid #fff;
    margin-left: -8px;
    background: linear-gradient(135deg, #f1d0b2, #7f4f31);
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #eec59d, #214e47); }
.avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #f5b587, #b15e46); }
.avatar-stack span:nth-child(4) { background: linear-gradient(135deg, #d4b58f, #263f59); }

.stars {
    color: #f2af27;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 1;
}

.rating-box small {
    color: #607080;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 505px;
}

.hero-image {
    width: min(650px, 88%);
    display: block;
    margin: 5px auto 0;
    filter: drop-shadow(0 24px 28px rgba(21, 43, 61, .13));
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 430px;
    border-radius: 50%;
    left: 50%;
    top: 27px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle, rgba(9, 106, 86, .16) 1px, transparent 2px) 0 0 / 28px 28px,
        linear-gradient(180deg, rgba(243, 250, 248, .74), rgba(255, 255, 255, 0));
    z-index: 0;
}

.hero-visual > * {
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: #fff;
    border: 1px solid #e8eeeb;
    box-shadow: var(--shadow-soft);
    border-radius: 11px;
    padding: 19px 20px 17px 58px;
    width: 185px;
    min-height: 81px;
}

.floating-card span {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.floating-card strong {
    display: block;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 4px;
}

.floating-card small {
    color: #657383;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
}

.card-one { left: 38px; top: 18px; }
.card-two { right: 19px; top: 36px; }
.card-three { left: 34px; top: 265px; }
.card-four { right: 35px; top: 346px; }

.trust-strip {
    background: #fff;
    border: 1px solid #dfe6e3;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    min-height: 100px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    padding: 0 50px;
    margin: 6px 45px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.trust-item i {
    color: var(--green);
    font-size: 29px;
}

.divider {
    width: 1px;
    height: 44px;
    background: #dfe5e2;
}

/* ================= SECTION TITLES ================= */
.section-title {
    margin-bottom: 31px;
}

.section-title span {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .55px;
}

.section-title h2 {
    margin: 4px 0 10px;
    font-size: clamp(27px, 2.8vw, 34px);
}

.title-line {
    width: 24px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

.no-margin {
    margin-bottom: 24px;
}

/* ================= SERVICES ================= */
.services-section {
    background:
        radial-gradient(circle at 6% 10%, rgba(0, 63, 50, .07), transparent 32%),
        radial-gradient(circle at 94% 18%, rgba(200, 145, 66, .09), transparent 30%),
        radial-gradient(circle at 88% 92%, rgba(15, 110, 124, .07), transparent 34%),
        radial-gradient(circle at 10% 88%, rgba(109, 63, 115, .06), transparent 30%),
        #fff;
}

.service-grid {
    max-width: 1240px;
    margin: 0 auto;
}

.service-card {
    --accent: var(--green);
    --accent-2: var(--green-3);
    position: relative;
    min-height: 155px;
    background: #fff;
    border: 1px solid #dde6e2;
    border-top: 3px solid var(--accent);
    border-radius: 9px;
    display: flex;
    gap: 24px;
    padding: 28px 62px 24px 24px;
    overflow: hidden;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
    opacity: .12;
    transition: transform .45s ease, opacity .45s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 34px -14px var(--accent);
    border-color: rgba(16, 35, 58, .12);
}

.service-card:hover::after {
    transform: scale(1.35);
    opacity: .2;
}

.service-icon {
    position: relative;
    z-index: 1;
    min-width: 63px;
    height: 63px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 20px -8px var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform .32s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-4deg);
}

.service-card > div {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 9px;
}

.service-card p {
    color: #586978;
    font-size: 13px;
    margin: 0;
}

.circle-link {
    position: absolute;
    z-index: 1;
    right: 22px;
    bottom: 24px;
    width: 25px;
    height: 25px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: .32s ease;
}

.service-card:hover .circle-link {
    background: var(--accent);
    color: #fff;
}

.service-grid > div:nth-child(6n+2) .service-card { --accent: var(--gold); --accent-2: var(--gold-2); }
.service-grid > div:nth-child(6n+3) .service-card { --accent: var(--teal); --accent-2: var(--teal-2); }
.service-grid > div:nth-child(6n+4) .service-card { --accent: var(--navy); --accent-2: var(--navy-2); }
.service-grid > div:nth-child(6n+5) .service-card { --accent: var(--terracotta); --accent-2: var(--terracotta-2); }
.service-grid > div:nth-child(6n+6) .service-card { --accent: var(--plum); --accent-2: var(--plum-2); }

/* ================= WHY + PROCESS ================= */
.why-process-section {
    padding: 8px 0 45px;
    background: linear-gradient(180deg, #fff, #fcfcfa);
}

.rounded-image {
    border-radius: 5px;
    box-shadow: var(--shadow-soft);
    width: 100%;
    min-height: 315px;
    object-fit: cover;
}

.split-border {
    border-right: 1px solid #dce5e1;
    padding-right: 45px;
}

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

.check-list li {
    color: #4d5a67;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    content: "\f26a";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-size: 17px;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    margin-top: 30px;
}

.process-line::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 40px;
    height: 1px;
    border-top: 1px dashed #c79750;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 19px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 7px solid #f4f7f5;
    font-size: 30px;
    box-shadow: 0 11px 22px rgba(0, 63, 50, .12);
}

.process-step > span {
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 13px;
    margin-bottom: 9px;
    line-height: 1.35;
}

.process-step p {
    color: #667482;
    font-size: 11.5px;
    margin: 0;
    font-weight: 500;
}

/* ================= VERIFY + INDUSTRIES ================= */
.verify-industries-section {
    background: #fbfbf8;
    border-top: 1px solid #edf1ee;
}

.verify-card {
    background: linear-gradient(145deg, var(--green), #002d25);
    border-radius: 12px;
    padding: 42px 45px 41px;
    color: #fff;
    min-height: 445px;
    box-shadow: 0 16px 35px rgba(0, 63, 50, .18);
}

.verify-head {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
}

.verify-head i {
    font-size: 48px;
    color: var(--gold-2);
    line-height: 1;
}

.verify-head h2 {
    color: #fff;
    font-size: 29px;
    margin-bottom: 8px;
}

.verify-head p {
    color: #deeee9;
    font-size: 13px;
    margin: 0;
}

.verify-card .form-control {
    height: 52px;
    border-radius: 5px;
    border: 0;
    margin-bottom: 14px;
    padding: 0 20px;
    font-size: 13px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}

.verify-card textarea.form-control {
    height: auto;
    padding-top: 16px;
    resize: none;
}

.verify-card .btn {
    height: 56px;
    margin-top: 5px;
}

.verify-card .btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

.verify-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 6px;
    padding: 13px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.5;
}

.verify-alert i {
    margin-top: 2px;
}

.verify-alert-success {
    background: rgba(223, 170, 86, .16);
    color: #fff;
    border: 1px solid rgba(223, 170, 86, .45);
}

.verify-alert-success i {
    color: var(--gold-2);
}

.verify-alert-error {
    background: rgba(214, 88, 88, .16);
    color: #fff;
    border: 1px solid rgba(214, 88, 88, .45);
}

.verify-alert-error i {
    color: #f28d8d;
}

/* ================= CONTACT MODAL ================= */
.contact-modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.contact-modal-content .modal-header {
    background: linear-gradient(135deg, var(--green), #002d25);
    border-bottom: none;
    padding: 22px 28px;
}

.contact-modal-content .modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.contact-modal-content .modal-title i {
    color: var(--gold-2);
}

.contact-modal-content .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.contact-modal-content .modal-body {
    padding: 28px;
}

.contact-modal-intro {
    color: #63717d;
    font-size: 13px;
    margin-bottom: 18px;
}

.contact-modal-content .form-control {
    height: 50px;
    border-radius: 6px;
    border: 1px solid #d9e0dd;
    margin-bottom: 14px;
    padding: 0 16px;
    font-size: 13px;
}

.contact-modal-content textarea.form-control {
    height: auto;
    padding-top: 14px;
    resize: none;
}

.contact-modal-content .form-control:focus {
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 63, 50, .1);
}

.contact-modal-content .btn {
    height: 52px;
    margin-top: 4px;
}

.contact-modal-content .verify-alert-success {
    background: rgba(200, 145, 66, .12);
    color: #6b4b1f;
    border: 1px solid rgba(200, 145, 66, .35);
}

.contact-modal-content .verify-alert-success i {
    color: var(--gold);
}

.contact-modal-content .verify-alert-error {
    background: rgba(214, 88, 88, .1);
    color: #8a2f2f;
    border: 1px solid rgba(214, 88, 88, .3);
}

.contact-modal-content .verify-alert-error i {
    color: #c94f4f;
}

.client-grid {
    padding-right: 22px;
}

.client-card {
    background: #fff;
    border: 1px solid #dde6e2;
    border-radius: 8px;
    text-align: center;
    min-height: 145px;
    padding: 26px 18px 20px;
    transition: .32s ease;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(200,145,66,.35);
}

.client-card i {
    color: var(--gold);
    font-size: 39px;
    margin-bottom: 13px;
    display: inline-block;
}

.client-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.client-card p {
    color: #63717d;
    font-size: 12px;
    margin: 0 auto;
    max-width: 170px;
    line-height: 1.5;
}

/* ================= ABOUT ================= */
.about-section {
    padding: 32px 0 22px;
    background: #fff;
}

.about-img {
    width: 100%;
    border-radius: 7px;
    box-shadow: var(--shadow-soft);
}

.about-text {
    color: #556270;
    max-width: 760px;
    font-weight: 500;
    margin-bottom: 28px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    background: #fff;
    border: 1px solid #dde6e2;
    border-radius: 8px;
    text-align: center;
    min-height: 112px;
    padding: 19px 12px;
}

.stat-card i {
    color: var(--green);
    font-size: 25px;
    display: block;
    margin-bottom: 7px;
}

.stat-card strong {
    display: block;
    color: var(--green);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 4px;
}

.stat-card span {
    color: #5d6c78;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
    background: #fff;
}

.section-title.compact {
    margin-bottom: 18px;
}

.testimonial-card {
    border: 1px solid #dde6e2;
    border-radius: 8px;
    background: #fff;
    min-height: 145px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(16, 35, 58, .03);
    transition: .32s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.testimonial-card p {
    color: #53616d;
    font-size: 12px;
    font-weight: 600;
    margin: 8px 0 14px;
}

.client {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 9px;
    align-items: center;
}

.client span {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--green));
}

.client strong {
    color: var(--navy);
    font-size: 12px;
    line-height: 1.1;
}

.client small {
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
}

.gold {
    color: #f2af27;
}

/* ================= CTA ================= */
.cta-section {
    padding: 0 0 9px;
    background: #fff;
}

.cta-box {
    margin: 0 45px;
    background: linear-gradient(135deg, var(--green), #064b3e 58%, #00362d);
    border-radius: 9px;
    color: #fff;
    min-height: 111px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 44px;
    box-shadow: 0 14px 30px rgba(0,63,50,.18);
}

.cta-icon {
    color: var(--gold-2);
    font-size: 55px;
    line-height: 1;
}

.cta-box h2 {
    color: #fff;
    font-size: 30px;
    margin: 0 0 4px;
}

.cta-box p {
    margin: 0;
    color: #dceee9;
    font-size: 14px;
    font-weight: 600;
}

.cta-actions {
    margin-left: auto;
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

/* ================= FOOTER ================= */
.footer {
    position: relative;
    background: linear-gradient(165deg, #00473a 0%, var(--green) 45%, #00241d 100%);
    color: #c9ddd8;
    padding-top: 40px;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-3), var(--gold-2), var(--teal));
}

.footer-main {
    padding: 12px 45px 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.small-shield {
    width: 36px;
    height: 39px;
    font-size: 18px;
    border-color: #fff;
}

.footer p,
.footer li {
    font-size: 14px;
    line-height: 1.75;
    color: #cddcd8;
}

.footer h4 {
    position: relative;
    color: var(--gold-2);
    font-size: 15.5px;
    letter-spacing: .3px;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-2);
}

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

.footer ul li {
    margin-bottom: 9px;
}

.footer a {
    color: #cddcd8;
    transition: color .25s ease, padding-left .25s ease;
}

.footer ul a {
    display: inline-block;
}

.footer ul a:hover {
    color: var(--gold-2);
    padding-left: 4px;
}

.footer-bottom a:hover {
    color: var(--gold-2);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list i {
    flex: none;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(223, 170, 86, .14);
    color: var(--gold-2);
    font-size: 12px;
    margin-top: 1px;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .28s ease;
}

.socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 18px -8px rgba(200, 145, 66, .6);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 18px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #dceee9;
}

.footer-bottom a {
    font-size: 13px;
    margin-left: 30px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1399px) {
    .navbar-nav { gap: 7px; }
    .navbar-nav .nav-link { font-size: 11px; }
    .phone-btn, .btn { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 1199px) {
    .hero-content { padding-left: 10px; }
    .topbar-inner { grid-template-columns: repeat(2, 1fr); row-gap: 0; }
    .main-navbar { min-height: auto; }
    .navbar-nav .nav-link { padding: 12px 0 !important; font-size: 13px; }
    .navbar-nav .nav-link.active::after { display: none; }
    .nav-actions { margin: 16px 0; }
    .navbar-brand { min-width: auto; }
    .trust-strip, .cta-box, .footer-main, .footer-bottom { margin-left: 0; margin-right: 0; padding-left: 24px; padding-right: 24px; }
    .process-line { gap: 16px; }
}

@media (max-width: 991px) {
    .hero-section { padding-top: 45px; }
    .hero-content { text-align: center; padding: 0 12px; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons, .rating-box { justify-content: center; }
    .hero-visual { margin-top: 30px; min-height: 440px; }
    .floating-card { position: absolute; transform: scale(.9); }
    .trust-strip { grid-template-columns: repeat(2, 1fr); row-gap: 24px; padding: 28px; }
    .trust-strip .divider { display: none; }
    .split-border { border-right: 0; padding-right: 0; }
    .process-line { grid-template-columns: repeat(2, 1fr); }
    .process-line::before { display: none; }
    .verify-card { min-height: auto; }
    .client-grid { padding-right: 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { align-items: flex-start; flex-direction: column; }
    .cta-actions { margin-left: 0; }
    .footer-bottom { flex-direction: column; }
    .footer-bottom a { margin-left: 0; margin-right: 20px; }
}

@media (max-width: 767px) {
    body { font-size: 13px; }
    h2 { font-size: 28px; }
    .section-padding { padding: 36px 0; }
    .brand-text { font-size: 12px; }
    .brand-shield { width: 42px; height: 46px; font-size: 21px; }
    .hero-visual { min-height: auto; padding-bottom: 160px; }
    .hero-image { width: 100%; }
    .floating-card { width: 178px; padding-left: 54px; }
    .card-one { left: 0; top: 0; }
    .card-two { right: 0; top: 20px; }
    .card-three { left: 0; bottom: 70px; top: auto; }
    .card-four { right: 0; bottom: 0; top: auto; }
    .trust-strip { grid-template-columns: 1fr; text-align: center; }
    .service-card { padding: 24px 50px 24px 18px; gap: 16px; }
    .service-icon { min-width: 54px; height: 54px; font-size: 24px; }
    .process-line { grid-template-columns: 1fr; }
    .verify-card { padding: 28px 22px; }
    .verify-head { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 25px 22px; }
    .cta-box h2 { font-size: 26px; }
    .cta-actions { gap: 12px; width: 100%; }
    .cta-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .nav-actions { flex-direction: column; align-items: stretch; }
    .phone-btn, .nav-actions .btn { text-align: center; }
    .hero-buttons .btn { width: 100%; }
    .floating-card { position: relative; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; width: 100%; transform: none; margin-bottom: 12px; }
    .hero-visual { padding-bottom: 0; display: flex; flex-direction: column; }
    .hero-image { order: -1; margin-bottom: 15px; }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

html.js .hero-content .eyebrow,
html.js .hero-content h1,
html.js .hero-content p,
html.js .hero-content .hero-buttons,
html.js .hero-content .rating-box,
html.js .hero-visual .hero-image,
html.js .hero-visual .floating-card {
    opacity: 0;
    animation: fadeInUp .8s ease forwards;
}

.hero-content .eyebrow { animation-delay: .05s; }
.hero-content h1 { animation-delay: .15s; }
.hero-content p { animation-delay: .3s; }
.hero-content .hero-buttons { animation-delay: .45s; }
.hero-content .rating-box { animation-delay: .6s; }
.hero-visual .hero-image { animation-delay: .2s; }
.hero-visual .card-one { animation-delay: .4s; }
.hero-visual .card-two { animation-delay: .5s; }
.hero-visual .card-three { animation-delay: .6s; }
.hero-visual .card-four { animation-delay: .7s; }

html.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

html.js .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.service-grid > div:nth-child(2) .reveal { transition-delay: .08s; }
.service-grid > div:nth-child(3) .reveal { transition-delay: .16s; }
.service-grid > div:nth-child(4) .reveal { transition-delay: .24s; }
.service-grid > div:nth-child(5) .reveal { transition-delay: .32s; }
.service-grid > div:nth-child(6) .reveal { transition-delay: .4s; }

.process-line .reveal:nth-child(2) { transition-delay: .1s; }
.process-line .reveal:nth-child(3) { transition-delay: .2s; }
.process-line .reveal:nth-child(4) { transition-delay: .3s; }

.client-grid > div:nth-child(2) .reveal { transition-delay: .08s; }
.client-grid > div:nth-child(3) .reveal { transition-delay: .16s; }
.client-grid > div:nth-child(4) .reveal { transition-delay: .24s; }
.client-grid > div:nth-child(5) .reveal { transition-delay: .32s; }
.client-grid > div:nth-child(6) .reveal { transition-delay: .4s; }

.stats-grid .reveal:nth-child(2) { transition-delay: .08s; }
.stats-grid .reveal:nth-child(3) { transition-delay: .16s; }
.stats-grid .reveal:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
    html.js .hero-content .eyebrow,
    html.js .hero-content h1,
    html.js .hero-content p,
    html.js .hero-content .hero-buttons,
    html.js .hero-content .rating-box,
    html.js .hero-visual .hero-image,
    html.js .hero-visual .floating-card,
    html.js .reveal {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
